In [1]:
import requests
from bs4 import BeautifulSoup as BSoup
import pandas as pd
In [2]:
import pandas as pd
from sqlalchemy import create_engine
engine = create_engine('sqlite:///edgar_idx.db')
conn = engine.connect()
conn.begin()
Out[2]:
<sqlalchemy.engine.base.RootTransaction at 0x1a7ccad27f0>
In [3]:
import sqlite3
conn3 = sqlite3.connect('edgar_idx.db')
cursor=conn3.cursor()
In [4]:
ticker = "NRP"
#cursor.execute('''SELECT * FROM idx WHERE Symbol=?;''', ("ABBV",))
cursor.execute('''SELECT * FROM cik_ticker_name WHERE ticker=?;''',(ticker,))
res=cursor.fetchall()
print(res)
cursor.execute('''SELECT * FROM idx WHERE cik=?;''', (res[0][0],))
recs = cursor.fetchall()
names = list(map(lambda x: x[0], cursor.description))
print(names)
df = pd.DataFrame(data=recs, columns=names)
df['date'] = pd.to_datetime(df['date'])
df.columns
df.size
df.dtypes
#print(type(recs))
print(recs)
#conn3.close()
df[df.type == "10-Q"].to_csv("TestData\\"+ticker.lower()+"_all_10qs.csv", index=None)
df[df.type == "10-K"].to_csv("TestData\\"+ticker.lower()+"_all_10ks.csv", index=None)
#df[df.type == "20-F"].to_csv("TestData\\"+ticker.lower()+"_all_20fs.csv", index=None)
[('1171486', 'NRP', 'Natural Resource Partners LP')]
['cik', 'conm', 'type', 'date', 'path']
[('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-K', '2014-02-28', 'edgar/data/1171486/0001193125-14-077852.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006818.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006828.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006830.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006831.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006836.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006838.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006841.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006845.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006846.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006849.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006852.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006857.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006860.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006862.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006864.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006867.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006870.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006871.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006873.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006876.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-02-13', 'edgar/data/1171486/0001140361-14-006880.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-03-04', 'edgar/data/1171486/0001140361-14-010950.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-03-13', 'edgar/data/1171486/0001140361-14-012568.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-01-09', 'edgar/data/1171486/0001193125-14-006792.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-02-12', 'edgar/data/1171486/0001193125-14-048381.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13G/A', '2014-01-15', 'edgar/data/1171486/0001193125-14-011637.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2014-05-07', 'edgar/data/1171486/0001193125-14-187771.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '424B3', '2014-05-27', 'edgar/data/1171486/0001193125-14-213079.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '424B7', '2014-04-11', 'edgar/data/1171486/0001193125-14-140693.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '424B7', '2014-04-11', 'edgar/data/1171486/0001193125-14-140716.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-06-06', 'edgar/data/1171486/0001140361-14-024746.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-06-06', 'edgar/data/1171486/0001140361-14-024748.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-05-07', 'edgar/data/1171486/0001193125-14-187727.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-06-02', 'edgar/data/1171486/0001193125-14-222480.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'EFFECT', '2014-05-27', 'edgar/data/1171486/9999999995-14-001591.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-4/A', '2014-05-20', 'edgar/data/1171486/0001193125-14-206662.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-4', '2014-05-12', 'edgar/data/1171486/0001193125-14-195064.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2014-08-08', 'edgar/data/1171486/0001193125-14-303279.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-09-02', 'edgar/data/1171486/0001140361-14-034595.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-07-03', 'edgar/data/1171486/0001193125-14-260897.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-08-06', 'edgar/data/1171486/0001193125-14-298481.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-08-08', 'edgar/data/1171486/0001193125-14-303290.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-08-19', 'edgar/data/1171486/0001193125-14-314075.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-08-20', 'edgar/data/1171486/0001193125-14-315897.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-K/A', '2014-11-13', 'edgar/data/1171486/0001193125-14-411321.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2014-11-07', 'edgar/data/1171486/0001193125-14-402194.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '424B5', '2014-10-06', 'edgar/data/1171486/0001193125-14-363967.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '424B5', '2014-10-07', 'edgar/data/1171486/0001193125-14-365673.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-10-10', 'edgar/data/1171486/0001140361-14-037866.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-10-10', 'edgar/data/1171486/0001140361-14-037868.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-10-15', 'edgar/data/1171486/0001140361-14-038112.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-10-15', 'edgar/data/1171486/0001140361-14-038114.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-10-15', 'edgar/data/1171486/0001140361-14-038116.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-10-15', 'edgar/data/1171486/0001140361-14-038118.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-12-08', 'edgar/data/1171486/0001140361-14-044460.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-12-09', 'edgar/data/1171486/0001140361-14-044610.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-12-10', 'edgar/data/1171486/0001140361-14-044746.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-12-18', 'edgar/data/1171486/0001140361-14-045800.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2014-12-22', 'edgar/data/1171486/0001140361-14-046145.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-10-02', 'edgar/data/1171486/0001193125-14-361535.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-10-06', 'edgar/data/1171486/0001193125-14-363980.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-10-08', 'edgar/data/1171486/0001193125-14-366757.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-10-10', 'edgar/data/1171486/0001193125-14-369261.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-10-20', 'edgar/data/1171486/0001193125-14-376404.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-11-04', 'edgar/data/1171486/0001193125-14-396542.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-11-14', 'edgar/data/1171486/0001193125-14-413440.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2014-12-23', 'edgar/data/1171486/0001193125-14-451641.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'CORRESP', '2014-10-27', 'edgar/data/1171486/0001193125-14-382841.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'CORRESP', '2014-10-31', 'edgar/data/1171486/0001193125-14-391939.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'FWP', '2014-10-07', 'edgar/data/1171486/0001193125-14-364963.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'UPLOAD', '2014-10-16', 'edgar/data/1171486/0000000000-14-051720.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'UPLOAD', '2014-11-28', 'edgar/data/1171486/0000000000-14-060817.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-K', '2015-02-27', 'edgar/data/1171486/0001193125-15-070173.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2015-01-06', 'edgar/data/1171486/0001140361-15-000661.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2015-03-09', 'edgar/data/1171486/0001140361-15-011006.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006021.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006029.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006034.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006035.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006036.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006037.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006038.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006040.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006042.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006043.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006044.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006046.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006048.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006050.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006051.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006053.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006054.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006055.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006057.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-02-12', 'edgar/data/1171486/0001140361-15-006058.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-03-09', 'edgar/data/1171486/0001140361-15-011008.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K/A', '2015-01-26', 'edgar/data/1171486/0001193125-15-020493.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2015-01-20', 'edgar/data/1171486/0001193125-15-015021.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2015-02-12', 'edgar/data/1171486/0001193125-15-045534.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2015-02-27', 'edgar/data/1171486/0001193125-15-070189.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13G/A', '2015-01-15', 'edgar/data/1171486/0001193125-15-011323.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2015-05-08', 'edgar/data/1171486/0001193125-15-177691.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '424B3', '2015-04-13', 'edgar/data/1171486/0001193125-15-127658.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-05-13', 'edgar/data/1171486/0001140361-15-019414.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2015-05-07', 'edgar/data/1171486/0001193125-15-176085.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2015-06-18', 'edgar/data/1171486/0001193125-15-227425.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'EFFECT', '2015-04-13', 'edgar/data/1171486/9999999995-15-000855.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-3ASR', '2015-04-02', 'edgar/data/1171486/0001193125-15-118052.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-4', '2015-04-02', 'edgar/data/1171486/0001193125-15-118070.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2015-08-07', 'edgar/data/1171486/0001193125-15-281900.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2015-07-28', 'edgar/data/1171486/0001193125-15-264921.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2015-08-06', 'edgar/data/1171486/0001193125-15-280025.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'CORRESP', '2015-09-30', 'edgar/data/1171486/0001171486-15-000011.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-3', '2015-09-18', 'edgar/data/1171486/0001171486-15-000009.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'UPLOAD', '2015-09-25', 'edgar/data/1171486/0000000000-15-047199.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2015-11-05', 'edgar/data/1171486/0001171486-15-000016.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2015-12-18', 'edgar/data/1171486/0001140361-15-045108.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2015-11-05', 'edgar/data/1171486/0001171486-15-000017.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'EFFECT', '2015-10-05', 'edgar/data/1171486/9999999995-15-002663.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-K/A', '2016-03-14', 'edgar/data/1171486/0001171486-16-000031.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-K', '2016-03-11', 'edgar/data/1171486/0001171486-16-000028.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053746.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053749.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053752.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053754.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053757.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053759.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053761.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053763.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053764.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053765.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053767.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053769.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053773.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053775.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053778.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053780.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053782.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-02-17', 'edgar/data/1171486/0001140361-16-053783.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-01-27', 'edgar/data/1171486/0001171486-16-000020.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-02-26', 'edgar/data/1171486/0001171486-16-000023.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-03-11', 'edgar/data/1171486/0001171486-16-000029.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-03-22', 'edgar/data/1171486/0001171486-16-000033.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2016-05-06', 'edgar/data/1171486/0001171486-16-000041.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2016-04-20', 'edgar/data/1171486/0001140361-16-061682.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-04-18', 'edgar/data/1171486/0001171486-16-000036.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-05-06', 'edgar/data/1171486/0001171486-16-000042.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-06-07', 'edgar/data/1171486/0001171486-16-000046.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-06-15', 'edgar/data/1171486/0001171486-16-000050.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2016-08-04', 'edgar/data/1171486/0001171486-16-000059.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2016-09-09', 'edgar/data/1171486/0001140361-16-079377.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-08-31', 'edgar/data/1171486/0001140361-16-078398.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2016-09-02', 'edgar/data/1171486/0001140361-16-078774.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-08-03', 'edgar/data/1171486/0001171486-16-000054.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-08-04', 'edgar/data/1171486/0001171486-16-000060.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-09-12', 'edgar/data/1171486/0001171486-16-000062.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13D/A', '2016-09-09', 'edgar/data/1171486/0001628280-16-019479.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13G/A', '2016-09-21', 'edgar/data/1171486/0001193125-16-715394.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2016-11-07', 'edgar/data/1171486/0001171486-16-000066.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2016-11-07', 'edgar/data/1171486/0001171486-16-000067.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-K', '2017-03-06', 'edgar/data/1171486/0001171486-17-000010.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2017-03-06', 'edgar/data/1171486/0001140361-17-010728.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007814.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007818.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007821.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007826.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007830.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007836.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007838.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007840.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007842.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007844.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007846.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007848.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007850.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007852.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-15', 'edgar/data/1171486/0001140361-17-007854.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-02-16', 'edgar/data/1171486/0001140361-17-007917.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2017-02-23', 'edgar/data/1171486/0001171486-17-000006.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2017-03-06', 'edgar/data/1171486/0001171486-17-000009.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13D', '2017-03-14', 'edgar/data/1171486/0001193125-17-080794.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2017-05-10', 'edgar/data/1171486/0001171486-17-000048.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '424B3', '2017-04-20', 'edgar/data/1171486/0001171486-17-000043.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2017-05-10', 'edgar/data/1171486/0001171486-17-000045.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'CORRESP', '2017-04-13', 'edgar/data/1171486/0001171486-17-000027.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'CORRESP', '2017-04-18', 'edgar/data/1171486/0001171486-17-000039.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'CORRESP', '2017-04-18', 'edgar/data/1171486/0001171486-17-000040.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'EFFECT', '2017-04-20', 'edgar/data/1171486/9999999995-17-000890.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'EFFECT', '2017-04-20', 'edgar/data/1171486/9999999995-17-000891.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-3/A', '2017-04-14', 'edgar/data/1171486/0001171486-17-000029.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-3', '2017-04-07', 'edgar/data/1171486/0001171486-17-000014.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-4/A', '2017-04-17', 'edgar/data/1171486/0001171486-17-000036.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-4', '2017-04-07', 'edgar/data/1171486/0001171486-17-000016.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13G', '2017-06-06', 'edgar/data/1171486/0000019617-17-000423.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'UPLOAD', '2017-04-12', 'edgar/data/1171486/0000000000-17-012595.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2017-08-08', 'edgar/data/1171486/0001171486-17-000055.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2017-09-15', 'edgar/data/1171486/0001140361-17-035678.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2017-08-08', 'edgar/data/1171486/0001171486-17-000052.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2017-09-05', 'edgar/data/1171486/0001171486-17-000057.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2017-09-28', 'edgar/data/1171486/0001171486-17-000059.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2017-11-08', 'edgar/data/1171486/0001171486-17-000064.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2017-10-02', 'edgar/data/1171486/0001140361-17-037144.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2017-11-08', 'edgar/data/1171486/0001171486-17-000062.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2017-12-21', 'edgar/data/1171486/0001171486-17-000067.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'DEF 14C', '2017-12-27', 'edgar/data/1171486/0001171486-17-000070.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-K', '2018-03-01', 'edgar/data/1171486/0001171486-18-000014.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2018-02-14', 'edgar/data/1171486/0001140361-18-008233.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2018-03-05', 'edgar/data/1171486/0001140361-18-011984.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2018-03-05', 'edgar/data/1171486/0001140361-18-011987.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008244.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008268.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008276.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008280.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008289.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008293.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008297.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008299.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008308.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008314.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008322.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008333.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008344.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008347.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-02-14', 'edgar/data/1171486/0001140361-18-008353.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-03-05', 'edgar/data/1171486/0001140361-18-011992.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-03-05', 'edgar/data/1171486/0001140361-18-011994.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2018-01-17', 'edgar/data/1171486/0001171486-18-000003.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2018-03-01', 'edgar/data/1171486/0001171486-18-000012.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2018-03-02', 'edgar/data/1171486/0001171486-18-000017.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'S-8', '2018-02-09', 'edgar/data/1171486/0001171486-18-000006.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13G/A', '2018-01-05', 'edgar/data/1171486/0001140361-18-000998.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13G', '2018-02-14', 'edgar/data/1171486/0001164691-18-000033.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2018-05-09', 'edgar/data/1171486/0001171486-18-000025.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-06-11', 'edgar/data/1171486/0001140361-18-028049.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2018-05-09', 'edgar/data/1171486/0001171486-18-000022.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2018-08-09', 'edgar/data/1171486/0001171486-18-000032.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2018-08-09', 'edgar/data/1171486/0001171486-18-000030.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2018-11-09', 'edgar/data/1171486/0001171486-18-000041.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2018-12-13', 'edgar/data/1171486/0001567619-18-007929.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2018-10-25', 'edgar/data/1171486/0001171486-18-000034.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2018-11-09', 'edgar/data/1171486/0001171486-18-000039.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2018-11-20', 'edgar/data/1171486/0001171486-18-000045.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2018-12-14', 'edgar/data/1171486/0001171486-18-000048.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-K', '2019-03-07', 'edgar/data/1171486/0001171486-19-000011.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2019-03-11', 'edgar/data/1171486/0001567619-19-006575.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003271.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003272.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003274.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003276.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003280.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003289.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003294.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003296.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003301.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003307.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003314.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-12', 'edgar/data/1171486/0001567619-19-003321.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004817.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004818.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004819.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004820.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004823.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004829.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004832.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004836.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004838.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004843.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004846.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004850.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004851.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004852.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-02-19', 'edgar/data/1171486/0001567619-19-004853.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2019-03-05', 'edgar/data/1171486/0001171486-19-000003.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2019-03-07', 'edgar/data/1171486/0001171486-19-000009.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13G/A', '2019-01-29', 'edgar/data/1171486/0001567619-19-001827.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13G/A', '2019-02-14', 'edgar/data/1171486/0001164691-19-000010.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', 'SC 13G', '2019-02-07', 'edgar/data/1171486/0000769993-19-000132.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q/A', '2019-06-28', 'edgar/data/1171486/0001171486-19-000032.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '10-Q', '2019-05-08', 'edgar/data/1171486/0001171486-19-000026.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2019-04-05', 'edgar/data/1171486/0001171486-19-000013.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2019-04-09', 'edgar/data/1171486/0001171486-19-000015.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2019-04-22', 'edgar/data/1171486/0001171486-19-000017.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2019-05-02', 'edgar/data/1171486/0001171486-19-000019.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '8-K', '2019-05-08', 'edgar/data/1171486/0001171486-19-000022.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2019-07-01', 'edgar/data/1171486/0001567619-19-014173.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '3', '2019-07-01', 'edgar/data/1171486/0001567619-19-014174.txt'), ('1171486', 'NATURAL RESOURCE PARTNERS LP', '4', '2019-07-01', 'edgar/data/1171486/0001567619-19-014172.txt')]
In [10]:
ticker = "APTV"
req = requests.get("https://www.sec.gov/cgi-bin/browse-edgar?CIK={:s}&owner=exclude&action=getcompany&Find=Search".format(ticker.lower()))
soup = BSoup(req.content, "lxml")
conmTag = soup.find("span", {"class": "companyName"})
if conmTag:
print(conmTag.text)
atags = soup.findAll("a")
for t in atags:
if "see all company filings" in t.text:
print(t.text)
In [5]:
n=-3
df[df.type == "10-Q"].iloc[n]
Out[5]:
cik 769397
conm AUTODESK INC
type 10-Q
date 2018-06-08 00:00:00
path edgar/data/769397/0000769397-18-000024.txt
Name: 464, dtype: object
In [6]:
from SecFiling10Q import SecFiling10Q
filing=SecFiling10Q("ADSK")
fname=filing.download(df[df.type == "10-Q"].iloc[n].cik,
df[df.type == "10-Q"].iloc[n].conm,
df[df.type == "10-Q"].iloc[n].type,
df[df.type == "10-Q"].iloc[n].date.strftime("%Y-%m-%f"),
df[df.type == "10-Q"].iloc[n].path)
filing.load(fname)
print(filing.getEps())
print(filing.errorLog)
-0.38
['Report date: 2018-04-30 00:00:00, industrial class: SERVICES-PREPACKAGED SOFTWARE [7372]', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n', 'Trying to fall back on extracted instance document.\n']
In [12]:
f = open (fname, "r")
## TODO: Do I need to have the whole file in memory?
wholeFile = f.read ()
f.close ()
soup = BSoup (wholeFile, "lxml")
In [14]:
soup.find("document")
Out[14]:
<document>
<type>10-Q
<sequence>1
<filename>adsk-4302018x10q.htm
<description>10-Q
<text>
<xbrl>
<?xml version="1.0" encoding="UTF-8"?>
<!--XBRL Document Created with Wdesk from Workiva-->
<!--p:F2C709D8C20655868E620D9A76382ABE,x:21605759409e4478b0d4cc41fba378f4-->
<!-- Document created using Wdesk -->
<!-- Copyright 2018 Workiva -->
<meta content="text/html" http-equiv="Content-Type"/>
<title>Document</title>
<div style="display:none"><ix:header><ix:hidden><ix:nonfraction contextref="FI2018Q4" decimals="0" id="Fact-4C3A846668575C0EB167E195C6C76100-wk-Fact-4C3A846668575C0EB167E195C6C76100" name="adsk:DebtSecuritiesAvailableforsaleContinuousUnrealizedLossPosition12MonthsorLongerAccumulatedLoss" unitref="usd">0</ix:nonfraction><ix:nonnumeric contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" id="Fact-86BD6957E6F05E2E9EFE873F5A390D1C-wk-Fact-86BD6957E6F05E2E9EFE873F5A390D1C" name="adsk:EmployeeStockPurchasePlanTermofExercisePeriod">P6M</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD" format="ixt:booleanfalse" id="Fact-4BDD86325F615ACB8B75441673D654BA-wk-Fact-4BDD86325F615ACB8B75441673D654BA" name="dei:AmendmentFlag">false</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD" id="Fact-FB3F1866487C5C78B9CCBA4189771717-wk-Fact-FB3F1866487C5C78B9CCBA4189771717" name="dei:CurrentFiscalYearEndDate">--01-31</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD" id="Fact-9AA7E0AFD55E5745871A9174E3C10144-wk-Fact-9AA7E0AFD55E5745871A9174E3C10144" name="dei:DocumentFiscalPeriodFocus">Q1</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD" id="Fact-B08E7B312BD15ECB94024F8212680081-wk-Fact-B08E7B312BD15ECB94024F8212680081" name="dei:DocumentFiscalYearFocus">2019</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD" id="Fact-A3FC178801A3553C80967E93C393FAB7-wk-Fact-A3FC178801A3553C80967E93C393FAB7" name="dei:EntityCentralIndexKey">0000769397</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD" id="Fact-45709C3F920E5CDE92124459A3554151-wk-Fact-45709C3F920E5CDE92124459A3554151" name="dei:EntityFilerCategory">Large Accelerated Filer</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD" id="Fact-18EB49FD6DAF5963BB1936375FCB431E-wk-Fact-18EB49FD6DAF5963BB1936375FCB431E" name="dei:EntityRegistrantName">AUTODESK INC</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD" id="Fact-BCB2243EE1D153A5AA5EEF2AEB5A5995-wk-Fact-BCB2243EE1D153A5AA5EEF2AEB5A5995" name="dei:TradingSymbol">ADSK</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_RangeAxis_us-gaap_MaximumMember" id="Fact-59A0B4F498D951D18B01B5ADDC512F76-wk-Fact-59A0B4F498D951D18B01B5ADDC512F76" name="us-gaap:DerivativeTermOfContract">P12M</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_RangeAxis_us-gaap_MinimumMember" id="Fact-6809342D466A57AD9B123FA39F3359EB-wk-Fact-6809342D466A57AD9B123FA39F3359EB" name="us-gaap:DerivativeTermOfContract">P1M</ix:nonnumeric><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" id="Fact-E36AACFA2D98581983CB3DECB0EB4CCF-wk-Fact-E36AACFA2D98581983CB3DECB0EB4CCF" name="us-gaap:OtherComprehensiveIncomeForeignCurrencyTranslationGainLossArisingDuringPeriodTax" unitref="usd">300000</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" id="Fact-279EB4599D765F53A28EAC7EA5DE18A4-wk-Fact-279EB4599D765F53A28EAC7EA5DE18A4" name="us-gaap:OtherComprehensiveIncomeForeignCurrencyTranslationGainLossArisingDuringPeriodTax" sign="-" unitref="usd">300000</ix:nonfraction><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" id="Fact-3BE233BD5A875FF09C1CFD9B1FD923AE-wk-Fact-3BE233BD5A875FF09C1CFD9B1FD923AE" name="us-gaap:OtherComprehensiveIncomeLossAvailableForSaleSecuritiesTax" unitref="usd">300000</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" id="Fact-7A659F1C64E45877BB775538F0AACCD8-wk-Fact-7A659F1C64E45877BB775538F0AACCD8" name="us-gaap:OtherComprehensiveIncomeLossAvailableForSaleSecuritiesTax" sign="-" unitref="usd">100000</ix:nonfraction><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" id="Fact-CD415C5BDB6D5E4FB73B2868D53C2E3A-wk-Fact-CD415C5BDB6D5E4FB73B2868D53C2E3A" name="us-gaap:OtherComprehensiveIncomeLossDerivativesQualifyingAsHedgesTax" sign="-" unitref="usd">500000</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" id="Fact-8893220324435B489C07BCF1FD9ACAA2-wk-Fact-8893220324435B489C07BCF1FD9ACAA2" name="us-gaap:OtherComprehensiveIncomeLossDerivativesQualifyingAsHedgesTax" unitref="usd">700000</ix:nonfraction><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" id="Fact-CAE79ED2C36B59A58116BB4B48A1B9D2-wk-Fact-CAE79ED2C36B59A58116BB4B48A1B9D2" name="us-gaap:OtherComprehensiveIncomeLossPensionAndOtherPostretirementBenefitPlansTax" unitref="usd">0</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" id="Fact-48C7F5F323B15F4F961D9A8FB84B67E1-wk-Fact-48C7F5F323B15F4F961D9A8FB84B67E1" name="us-gaap:OtherComprehensiveIncomeLossPensionAndOtherPostretirementBenefitPlansTax" sign="-" unitref="usd">1400000</ix:nonfraction><ix:nonnumeric contextref="FD2019Q1YTD_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2018-01-05" id="Fact-C4CFA74DE01DCE55B1BFBC30AE1B18C9-wk-Fact-C4CFA74DE01DCE55B1BFBC30AE1B18C9" name="us-gaap:RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionPeriod">P1Y</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2019-01-05" format="ixt:nocontent" id="Fact-F0EA1CB30AAA76E2746ADC708AA4C333-wk-Fact-F0EA1CB30AAA76E2746ADC708AA4C333" name="us-gaap:RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionPeriod" xsi:nil="true"></ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" id="Fact-806C24467F3F5398A95F51E94BA3AC7D-wk-Fact-806C24467F3F5398A95F51E94BA3AC7D" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardAwardVestingPeriod1">P3Y</ix:nonnumeric><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MaximumMember" decimals="3" id="Fact-FF47326490D354D3A15E3AEA01295DC9-wk-Fact-FF47326490D354D3A15E3AEA01295DC9" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedVolatilityRate" unitref="number">0.337</ix:nonfraction><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MinimumMember" decimals="3" id="Fact-BF14B8779E5E53E0944AAD3102E1E735-wk-Fact-BF14B8779E5E53E0944AAD3102E1E735" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedVolatilityRate" unitref="number">0.314</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MaximumMember" decimals="3" id="Fact-9BDC450AB97C5F83B2AFE7BFE9588CE8-wk-Fact-9BDC450AB97C5F83B2AFE7BFE9588CE8" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedVolatilityRate" unitref="number">0.375</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MinimumMember" decimals="3" id="Fact-40F3DD40270F557EB0AFDEB613075AC4-wk-Fact-40F3DD40270F557EB0AFDEB613075AC4" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedVolatilityRate" unitref="number">0.335</ix:nonfraction><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MaximumMember" decimals="3" id="Fact-9FABE5A6C6EB57F694B093E78F80B5D6-wk-Fact-9FABE5A6C6EB57F694B093E78F80B5D6" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsRiskFreeInterestRate" unitref="number">0.013</ix:nonfraction><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MinimumMember" decimals="3" id="Fact-DFE8B47FF9BD5667A7B9A93D0F4B3A0C-wk-Fact-DFE8B47FF9BD5667A7B9A93D0F4B3A0C" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsRiskFreeInterestRate" unitref="number">0.009</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MaximumMember" decimals="3" id="Fact-63935934D740508AB787DE06FBC7D1EB-wk-Fact-63935934D740508AB787DE06FBC7D1EB" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsRiskFreeInterestRate" unitref="number">0.023</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MinimumMember" decimals="3" id="Fact-E3D9C22446E45B81BFE79B5407084EFB-wk-Fact-E3D9C22446E45B81BFE79B5407084EFB" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsRiskFreeInterestRate" unitref="number">0.019</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember_us-gaap_VestingAxis_us-gaap_ShareBasedCompensationAwardTrancheOneMember" decimals="4" id="Fact-2F511959730C57A2916D27647E85521F-wk-Fact-2F511959730C57A2916D27647E85521F" name="us-gaap:SharebasedCompensationArrangementBySharebasedPaymentAwardAwardVestingRightsPercentage" unitref="number">0.3333</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember_us-gaap_VestingAxis_us-gaap_ShareBasedCompensationAwardTrancheThreeMember" decimals="4" id="Fact-D097E8A547C95D399BD5E97D1214D4BE-wk-Fact-D097E8A547C95D399BD5E97D1214D4BE" name="us-gaap:SharebasedCompensationArrangementBySharebasedPaymentAwardAwardVestingRightsPercentage" unitref="number">0.3333</ix:nonfraction><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember_us-gaap_VestingAxis_us-gaap_ShareBasedCompensationAwardTrancheTwoMember" decimals="4" id="Fact-3716C550BC985C478F21BE84C5C443FF-wk-Fact-3716C550BC985C478F21BE84C5C443FF" name="us-gaap:SharebasedCompensationArrangementBySharebasedPaymentAwardAwardVestingRightsPercentage" unitref="number">0.3333</ix:nonfraction><ix:nonnumeric contextref="FD2018Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MaximumMember" id="Fact-6E0DF8A861995B00B9902667FBE882E9-wk-Fact-6E0DF8A861995B00B9902667FBE882E9" name="us-gaap:SharebasedCompensationArrangementBySharebasedPaymentAwardFairValueAssumptionsExpectedTerm1">P2Y</ix:nonnumeric><ix:nonnumeric contextref="FD2018Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MinimumMember" id="Fact-0C48CA2D50865E63A51E6035F9900C0A-wk-Fact-0C48CA2D50865E63A51E6035F9900C0A" name="us-gaap:SharebasedCompensationArrangementBySharebasedPaymentAwardFairValueAssumptionsExpectedTerm1">P5M</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MaximumMember" id="Fact-157261C0B4705480926DA832439E4BDF-wk-Fact-157261C0B4705480926DA832439E4BDF" name="us-gaap:SharebasedCompensationArrangementBySharebasedPaymentAwardFairValueAssumptionsExpectedTerm1">P2Y</ix:nonnumeric><ix:nonnumeric contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MinimumMember" id="Fact-B16914F48C755D968E7E81004782008B-wk-Fact-B16914F48C755D968E7E81004782008B" name="us-gaap:SharebasedCompensationArrangementBySharebasedPaymentAwardFairValueAssumptionsExpectedTerm1">P5M</ix:nonnumeric></ix:hidden><ix:references><link:schemaref xlink:href="adsk-20180430.xsd" xlink:type="simple"></link:schemaref></ix:references><ix:resources><xbrli:context id="FD2019Q1YTD">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="I2018Q2june4">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-06-04</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:SubscriptionandMaintenanceMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:LicenseandOtherMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:LicenseandOtherMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:SubscriptionandMaintenanceMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_MaintenanceRevenueMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:MaintenanceRevenueMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionRevenueMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:SubscriptionRevenueMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionRevenueMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:SubscriptionRevenueMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_MaintenanceRevenueMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:MaintenanceRevenueMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2017Q4">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2017-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q1">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2017-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AdjustmentsForNewAccountingPronouncementsAxis">us-gaap:AccountingStandardsUpdate201409Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q4YTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AdjustmentsForNewAccountingPronouncementsAxis">us-gaap:AccountingStandardsUpdate201409Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2018-01-31</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201616Member_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AdjustmentsForNewAccountingPronouncementsAxis">us-gaap:AccountingStandardsUpdate201616Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:RetainedEarningsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AdjustmentsForNewAccountingPronouncementsAxis">us-gaap:AccountingStandardsUpdate201409Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AdjustmentsForNewAccountingPronouncementsAxis">us-gaap:AccountingStandardsUpdate201409Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:SubscriptionandMaintenanceMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AdjustmentsForNewAccountingPronouncementsAxis">us-gaap:AccountingStandardsUpdate201409Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:LicenseandOtherMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:LicenseandOtherMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member_us-gaap_ProductOrServiceAxis_adsk_SubscriptionRevenueMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AdjustmentsForNewAccountingPronouncementsAxis">us-gaap:AccountingStandardsUpdate201409Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:SubscriptionRevenueMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member_us-gaap_ProductOrServiceAxis_adsk_MaintenanceRevenueMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:MaintenanceRevenueMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AdjustmentsForNewAccountingPronouncementsAxis">us-gaap:AccountingStandardsUpdate201409Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:SubscriptionandMaintenanceMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member_us-gaap_ProductOrServiceAxis_adsk_MaintenanceRevenueMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AdjustmentsForNewAccountingPronouncementsAxis">us-gaap:AccountingStandardsUpdate201409Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:MaintenanceRevenueMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member_us-gaap_ProductOrServiceAxis_adsk_SubscriptionRevenueMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:InitialApplicationPeriodCumulativeEffectTransitionAxis">us-gaap:CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:SubscriptionRevenueMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_ManufacturingMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:ManufacturingMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_EMEAMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">us-gaap:EMEAMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_EMEAMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">us-gaap:EMEAMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_MediaAndEntertainmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:MediaAndEntertainmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_OtherMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:OtherMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_ArchitectureEngineeringAndConstructionMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:ArchitectureEngineeringAndConstructionMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_AutoCADandAutoCADLTFamilyMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:AutoCADandAutoCADLTFamilyMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_AmericasMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">us-gaap:AmericasMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_AsiaPacificMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">us-gaap:AsiaPacificMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_ArchitectureEngineeringAndConstructionMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:ArchitectureEngineeringAndConstructionMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ContractWithCustomerSalesChannelAxis_us-gaap_SalesChannelThroughIntermediaryMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ContractWithCustomerSalesChannelAxis">us-gaap:SalesChannelThroughIntermediaryMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_adsk_OtherAmericasMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">adsk:OtherAmericasMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_AmericasMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">us-gaap:AmericasMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ContractWithCustomerSalesChannelAxis_us-gaap_SalesChannelDirectlyToConsumerMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ContractWithCustomerSalesChannelAxis">us-gaap:SalesChannelDirectlyToConsumerMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_AutoCADandAutoCADLTFamilyMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:AutoCADandAutoCADLTFamilyMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_country_US">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">country:US</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_AsiaPacificMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">us-gaap:AsiaPacificMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ContractWithCustomerSalesChannelAxis_us-gaap_SalesChannelThroughIntermediaryMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ContractWithCustomerSalesChannelAxis">us-gaap:SalesChannelThroughIntermediaryMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ContractWithCustomerSalesChannelAxis_us-gaap_SalesChannelDirectlyToConsumerMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ContractWithCustomerSalesChannelAxis">us-gaap:SalesChannelDirectlyToConsumerMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_ManufacturingMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:ManufacturingMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_adsk_OtherAmericasMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">adsk:OtherAmericasMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_OtherMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:OtherMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_country_US">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementGeographicalAxis">country:US</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_MediaAndEntertainmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ProductOrServiceAxis">adsk:MediaAndEntertainmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2019-01-05">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:typedmember dimension="us-gaap:RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis">
<us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain>2019-01-05</us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain>
</xbrldi:typedmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_nil">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:typedmember dimension="us-gaap:RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis">
<us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain xsi:nil="true"></us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain>
</xbrldi:typedmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2018-01-05">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:typedmember dimension="us-gaap:RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis">
<us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain>2018-01-05</us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain>
</xbrldi:typedmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2019-01-05">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:typedmember dimension="us-gaap:RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis">
<us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain>2019-01-05</us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain>
</xbrldi:typedmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2018-01-05">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:typedmember dimension="us-gaap:RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis">
<us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain>2018-01-05</us-gaap:revenueremainingperformanceobligationexpectedtimingofsatisfactionstartdateaxis.domain>
</xbrldi:typedmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_ConcentrationRiskByBenchmarkAxis_us-gaap_SalesRevenueNetMember_us-gaap_MajorCustomersAxis_adsk_TechDataMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ConcentrationRiskByBenchmarkAxis">us-gaap:SalesRevenueNetMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:MajorCustomersAxis">adsk:TechDataMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q4YTD_us-gaap_ConcentrationRiskByBenchmarkAxis_us-gaap_AccountsReceivableMember_us-gaap_MajorCustomersAxis_adsk_TechDataMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ConcentrationRiskByBenchmarkAxis">us-gaap:AccountsReceivableMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:MajorCustomersAxis">adsk:TechDataMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2018-01-31</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_ConcentrationRiskByBenchmarkAxis_us-gaap_AccountsReceivableMember_us-gaap_MajorCustomersAxis_adsk_TechDataMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ConcentrationRiskByBenchmarkAxis">us-gaap:AccountsReceivableMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:MajorCustomersAxis">adsk:TechDataMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_ConcentrationRiskByBenchmarkAxis_us-gaap_SalesRevenueNetMember_us-gaap_MajorCustomersAxis_adsk_TechDataMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ConcentrationRiskByBenchmarkAxis">us-gaap:SalesRevenueNetMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:MajorCustomersAxis">adsk:TechDataMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:DepositsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:OtherAssetsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MoneyMarketFundsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:OtherAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MutualFundMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MoneyMarketFundsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MoneyMarketFundsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:OtherAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MoneyMarketFundsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MutualFundMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MutualFundMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:OtherAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:DepositsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:DepositsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:DepositsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MutualFundMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_us-gaap_OperatingExpenseMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:OperatingExpenseMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_us-gaap_OperatingExpenseMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:OperatingExpenseMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_us-gaap_SalesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:SalesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_us-gaap_SalesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:SalesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_adsk_InterestAndOtherIncomeExpenseNetMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">adsk:InterestAndOtherIncomeExpenseNetMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_adsk_InterestAndOtherIncomeExpenseNetMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">adsk:InterestAndOtherIncomeExpenseNetMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:NondesignatedMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:NondesignatedMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MoneyMarketFundsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MutualFundMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:OtherSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:DepositsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:DepositsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MoneyMarketFundsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:DepositsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:OtherAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:OtherAssetsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:OtherSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:OtherSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MoneyMarketFundsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MoneyMarketFundsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:DepositsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MutualFundMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MunicipalBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MutualFundMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:USGovernmentDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:OtherAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CommercialPaperMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:MutualFundMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:OtherSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:OtherAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel1Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CertificatesOfDepositMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:SovereignDebtMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:CorporateDebtSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesCurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel2Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">us-gaap:AssetBackedSecuritiesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:MarketableSecuritiesNoncurrentMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FinancialInstrumentAxis">adsk:AgencyBondsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember_us-gaap_IncomeStatementLocationAxis_adsk_InterestAndOtherIncomeExpenseNetMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:NondesignatedMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">adsk:InterestAndOtherIncomeExpenseNetMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember_us-gaap_IncomeStatementLocationAxis_adsk_InterestAndOtherIncomeExpenseNetMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:NondesignatedMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">adsk:InterestAndOtherIncomeExpenseNetMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_FairValueByAssetClassAxis_us-gaap_DerivativeMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByAssetClassAxis">us-gaap:DerivativeMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByAssetClassAxis_us-gaap_ConvertibleDebtSecuritiesMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByAssetClassAxis">us-gaap:ConvertibleDebtSecuritiesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByAssetClassAxis_us-gaap_ConvertibleDebtSecuritiesMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByAssetClassAxis">us-gaap:ConvertibleDebtSecuritiesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FairValueByAssetClassAxis_us-gaap_DerivativeMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByAssetClassAxis">us-gaap:DerivativeMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_FairValueByAssetClassAxis_us-gaap_ConvertibleDebtSecuritiesMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByAssetClassAxis">us-gaap:ConvertibleDebtSecuritiesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FairValueByAssetClassAxis_us-gaap_DerivativeMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FairValueByAssetClassAxis">us-gaap:DerivativeMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:FairValueByFairValueHierarchyLevelAxis">us-gaap:FairValueInputsLevel3Member</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_OtherAccruedLiabilitiesMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:OtherAccruedLiabilitiesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:NondesignatedMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_PrepaidExpensesAndOtherCurrentAssetsMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:PrepaidExpensesAndOtherCurrentAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:NondesignatedMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_OtherAccruedLiabilitiesMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:OtherAccruedLiabilitiesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:NondesignatedMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_OtherAccruedLiabilitiesMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:OtherAccruedLiabilitiesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_PrepaidExpensesAndOtherCurrentAssetsMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:PrepaidExpensesAndOtherCurrentAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_PrepaidExpensesAndOtherCurrentAssetsMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:PrepaidExpensesAndOtherCurrentAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_OtherAccruedLiabilitiesMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">adsk:OtherAccruedLiabilitiesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:DesignatedAsHedgingInstrumentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_PrepaidExpensesAndOtherCurrentAssetsMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:BalanceSheetLocationAxis">us-gaap:PrepaidExpensesAndOtherCurrentAssetsMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:HedgingDesignationAxis">us-gaap:NondesignatedMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_RangeAxis_us-gaap_MaximumMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RangeAxis">us-gaap:MaximumMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_RangeAxis_us-gaap_MinimumMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DerivativeInstrumentRiskAxis">us-gaap:ForeignExchangeContractMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RangeAxis">us-gaap:MinimumMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember_us-gaap_RangeAxis_us-gaap_MinimumMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">adsk:RestrictedStockUnitsRSUsandPerformanceSharesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RangeAxis">us-gaap:MinimumMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_AwardTypeAxis_us-gaap_RestrictedStockUnitsRSUMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">us-gaap:RestrictedStockUnitsRSUMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PlanNameAxis">adsk:EmployeeQualifiedStockPurchasePlan1998EspPlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">adsk:RestrictedStockUnitsRSUsandPerformanceSharesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember_us-gaap_RangeAxis_us-gaap_MaximumMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">adsk:RestrictedStockUnitsRSUsandPerformanceSharesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RangeAxis">us-gaap:MaximumMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">us-gaap:PerformanceSharesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">adsk:RestrictedStockUnitsRSUsandPerformanceSharesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">us-gaap:PerformanceSharesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_AwardTypeAxis_us-gaap_RestrictedStockUnitsRSUMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">us-gaap:RestrictedStockUnitsRSUMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PlanNameAxis">adsk:EmployeeQualifiedStockPurchasePlan1998EspPlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_EmployeeStockMember_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">us-gaap:EmployeeStockMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:PlanNameAxis">adsk:EmployeeQualifiedStockPurchasePlan1998EspPlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_AwardTypeAxis_us-gaap_EmployeeStockMember_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">us-gaap:EmployeeStockMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:PlanNameAxis">adsk:EmployeeQualifiedStockPurchasePlan1998EspPlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_ResearchAndDevelopmentExpenseMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:ResearchAndDevelopmentExpenseMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_adsk_CostofGoodsSoldSubscriptionMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">adsk:CostofGoodsSoldSubscriptionMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_GeneralAndAdministrativeExpenseMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:GeneralAndAdministrativeExpenseMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_SellingAndMarketingExpenseMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:SellingAndMarketingExpenseMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_adsk_CostofGoodsSoldSubscriptionMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">adsk:CostofGoodsSoldSubscriptionMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_adsk_LicenseCostsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">adsk:LicenseCostsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_SellingAndMarketingExpenseMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:SellingAndMarketingExpenseMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_ResearchAndDevelopmentExpenseMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:ResearchAndDevelopmentExpenseMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_adsk_LicenseCostsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">adsk:LicenseCostsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_GeneralAndAdministrativeExpenseMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:IncomeStatementLocationAxis">us-gaap:GeneralAndAdministrativeExpenseMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">adsk:RestrictedStockUnitsRSUsandPerformanceSharesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">adsk:RestrictedStockUnitsRSUsandPerformanceSharesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember_us-gaap_VestingAxis_us-gaap_ShareBasedCompensationAwardTrancheOneMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">us-gaap:PerformanceSharesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:VestingAxis">us-gaap:ShareBasedCompensationAwardTrancheOneMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember_us-gaap_VestingAxis_us-gaap_ShareBasedCompensationAwardTrancheThreeMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">us-gaap:PerformanceSharesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:VestingAxis">us-gaap:ShareBasedCompensationAwardTrancheThreeMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember_us-gaap_VestingAxis_us-gaap_ShareBasedCompensationAwardTrancheTwoMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AwardTypeAxis">us-gaap:PerformanceSharesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:VestingAxis">us-gaap:ShareBasedCompensationAwardTrancheTwoMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MaximumMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PlanNameAxis">adsk:EmployeeQualifiedStockPurchasePlan1998EspPlanMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RangeAxis">us-gaap:MaximumMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MinimumMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PlanNameAxis">adsk:EmployeeQualifiedStockPurchasePlan1998EspPlanMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RangeAxis">us-gaap:MinimumMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MinimumMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PlanNameAxis">adsk:EmployeeQualifiedStockPurchasePlan1998EspPlanMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RangeAxis">us-gaap:MinimumMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember_us-gaap_RangeAxis_us-gaap_MaximumMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PlanNameAxis">adsk:EmployeeQualifiedStockPurchasePlan1998EspPlanMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RangeAxis">us-gaap:MaximumMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_ValuationAllowancesAndReservesTypeAxis_us-gaap_ValuationAllowanceOfDeferredTaxAssetsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ValuationAllowancesAndReservesTypeAxis">us-gaap:ValuationAllowanceOfDeferredTaxAssetsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FiniteLivedIntangibleAssetsByMajorClassAxis_adsk_CustomerRelationshipsTradeNamesPatentsandUserListMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FiniteLivedIntangibleAssetsByMajorClassAxis">adsk:CustomerRelationshipsTradeNamesPatentsandUserListMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_FiniteLivedIntangibleAssetsByMajorClassAxis_us-gaap_DevelopedTechnologyRightsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FiniteLivedIntangibleAssetsByMajorClassAxis">us-gaap:DevelopedTechnologyRightsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FiniteLivedIntangibleAssetsByMajorClassAxis_us-gaap_DevelopedTechnologyRightsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FiniteLivedIntangibleAssetsByMajorClassAxis">us-gaap:DevelopedTechnologyRightsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_FiniteLivedIntangibleAssetsByMajorClassAxis_adsk_CustomerRelationshipsTradeNamesPatentsandUserListMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:FiniteLivedIntangibleAssetsByMajorClassAxis">adsk:CustomerRelationshipsTradeNamesPatentsandUserListMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_adsk_FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis_adsk_RabbiTrustMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="adsk:FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis">adsk:RabbiTrustMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_adsk_FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis_adsk_RabbiTrustMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="adsk:FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis">adsk:RabbiTrustMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_PropertyPlantAndEquipmentByTypeAxis_adsk_FurnitureandEquipmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PropertyPlantAndEquipmentByTypeAxis">adsk:FurnitureandEquipmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_LandBuildingsAndImprovementsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PropertyPlantAndEquipmentByTypeAxis">us-gaap:LandBuildingsAndImprovementsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_LandBuildingsAndImprovementsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PropertyPlantAndEquipmentByTypeAxis">us-gaap:LandBuildingsAndImprovementsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_ComputerEquipmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PropertyPlantAndEquipmentByTypeAxis">us-gaap:ComputerEquipmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_SoftwareDevelopmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PropertyPlantAndEquipmentByTypeAxis">us-gaap:SoftwareDevelopmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_SoftwareDevelopmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PropertyPlantAndEquipmentByTypeAxis">us-gaap:SoftwareDevelopmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_ComputerEquipmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PropertyPlantAndEquipmentByTypeAxis">us-gaap:ComputerEquipmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_PropertyPlantAndEquipmentByTypeAxis_adsk_FurnitureandEquipmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:PropertyPlantAndEquipmentByTypeAxis">adsk:FurnitureandEquipmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:SeniorNotesdue2017Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2012-12-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2022Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:SeniorNotesdue2022Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2012-12-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="D2013Q4Dec_us-gaap_DebtInstrumentAxis_adsk_A2012SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A2012SeniorNotesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2012-12-01</xbrli:startdate>
<xbrli:enddate>2012-12-31</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="I2017Q2JUL27_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:SeniorNotesdue2017Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2017-07-27</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="I2016Q2Debt_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2025Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:SeniorNotesdue2025Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2015-06-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="I2016Q2Debt_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2020Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:SeniorNotesdue2020Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2015-06-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_DebtInstrumentAxis_adsk_A2015SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A2015SeniorNotesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_A2012SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A2012SeniorNotesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2012-12-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="I2017Q2JUN2017_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A3.5NotesdueJune152027Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2017-06-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A3.5NotesdueJune152027Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="I2016Q2Debt_us-gaap_DebtInstrumentAxis_adsk_A2015SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A2015SeniorNotesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2015-06-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="D2017Q2JUL27_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:SeniorNotesdue2017Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-07-27</xbrli:startdate>
<xbrli:enddate>2017-07-27</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_DebtInstrumentAxis_adsk_A2012SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A2012SeniorNotesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A3.5NotesdueJune152027Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="D2016Q2_us-gaap_DebtInstrumentAxis_adsk_A2015SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A2015SeniorNotesMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2015-06-01</xbrli:startdate>
<xbrli:enddate>2015-06-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="D2017Q2JUN2017_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:DebtInstrumentAxis">adsk:A3.5NotesdueJune152027Member</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:LongtermDebtTypeAxis">us-gaap:SeniorNotesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-06-01</xbrli:startdate>
<xbrli:enddate>2017-06-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_RestructuringCostAndReserveAxis_us-gaap_EmployeeSeveranceMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:RestructuringCostAndReserveAxis">us-gaap:EmployeeSeveranceMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RestructuringPlanAxis">adsk:Fiscal2018PlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_RestructuringCostAndReserveAxis_us-gaap_FacilityClosingMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:RestructuringCostAndReserveAxis">us-gaap:FacilityClosingMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RestructuringPlanAxis">adsk:Fiscal2018PlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_RestructuringCostAndReserveAxis_us-gaap_EmployeeSeveranceMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:RestructuringCostAndReserveAxis">us-gaap:EmployeeSeveranceMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RestructuringPlanAxis">adsk:Fiscal2018PlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_RestructuringCostAndReserveAxis_us-gaap_EmployeeSeveranceMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:RestructuringCostAndReserveAxis">us-gaap:EmployeeSeveranceMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RestructuringPlanAxis">adsk:Fiscal2018PlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_RestructuringCostAndReserveAxis_us-gaap_FacilityClosingMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:RestructuringCostAndReserveAxis">us-gaap:FacilityClosingMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RestructuringPlanAxis">adsk:Fiscal2018PlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_RestructuringCostAndReserveAxis_us-gaap_FacilityClosingMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:RestructuringCostAndReserveAxis">us-gaap:FacilityClosingMember</xbrldi:explicitmember>
<xbrldi:explicitmember dimension="us-gaap:RestructuringPlanAxis">adsk:Fiscal2018PlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q4QTD_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:RestructuringPlanAxis">adsk:Fiscal2018PlanMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-11-01</xbrli:startdate>
<xbrli:enddate>2018-01-31</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_ShareRepurchaseProgramAxis_adsk_CommonStockRepurchaseProgramMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ShareRepurchaseProgramAxis">adsk:CommonStockRepurchaseProgramMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:RetainedEarningsMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1QTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:CommonStockMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_ShareRepurchaseProgramAxis_adsk_CommonStockRepurchaseProgramMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:ShareRepurchaseProgramAxis">adsk:CommonStockRepurchaseProgramMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetUnrealizedInvestmentGainLossMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedDefinedBenefitPlansAdjustmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedDefinedBenefitPlansAdjustmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedTranslationAdjustmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedTranslationAdjustmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedOtherComprehensiveIncomeMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetUnrealizedInvestmentGainLossMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedDefinedBenefitPlansAdjustmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedDefinedBenefitPlansAdjustmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedDefinedBenefitPlansAdjustmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedDefinedBenefitPlansAdjustmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedTranslationAdjustmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedTranslationAdjustmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedOtherComprehensiveIncomeMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetUnrealizedInvestmentGainLossMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedNetUnrealizedInvestmentGainLossMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-04-30</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedTranslationAdjustmentMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:StatementEquityComponentsAxis">us-gaap:AccumulatedTranslationAdjustmentMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2018-01-31</xbrli:instant>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2018Q1YTD_us-gaap_AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareByAntidilutiveSecuritiesAxis_us-gaap_TreasuryStockMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareByAntidilutiveSecuritiesAxis">us-gaap:TreasuryStockMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2017-02-01</xbrli:startdate>
<xbrli:enddate>2017-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:context id="FD2019Q1YTD_us-gaap_AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareByAntidilutiveSecuritiesAxis_us-gaap_TreasuryStockMember">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0000769397</xbrli:identifier>
<xbrli:segment>
<xbrldi:explicitmember dimension="us-gaap:AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareByAntidilutiveSecuritiesAxis">us-gaap:TreasuryStockMember</xbrldi:explicitmember>
</xbrli:segment>
</xbrli:entity>
<xbrli:period>
<xbrli:startdate>2018-02-01</xbrli:startdate>
<xbrli:enddate>2018-04-30</xbrli:enddate>
</xbrli:period>
</xbrli:context><xbrli:unit id="usd">
<xbrli:measure>iso4217:USD</xbrli:measure>
</xbrli:unit><xbrli:unit id="usdPerShare">
<xbrli:divide>
<xbrli:unitnumerator>
<xbrli:measure>iso4217:USD</xbrli:measure>
</xbrli:unitnumerator>
<xbrli:unitdenominator>
<xbrli:measure>xbrli:shares</xbrli:measure>
</xbrli:unitdenominator>
</xbrli:divide>
</xbrli:unit><xbrli:unit id="period">
<xbrli:measure>adsk:period</xbrli:measure>
</xbrli:unit><xbrli:unit id="shares">
<xbrli:measure>xbrli:shares</xbrli:measure>
</xbrli:unit><xbrli:unit id="number">
<xbrli:measure>xbrli:pure</xbrli:measure>
</xbrli:unit><xbrli:unit id="manager">
<xbrli:measure>adsk:manager</xbrli:measure>
</xbrli:unit><xbrli:unit id="segment">
<xbrli:measure>adsk:segment</xbrli:measure>
</xbrli:unit><xbrli:unit id="Position">
<xbrli:measure>adsk:Position</xbrli:measure>
</xbrli:unit><ix:relationship arcrole="http://www.xbrl.org/2003/arcrole/fact-footnote" fromrefs="d9826191e926-wk-Fact-26E8D92002065035AD98E9C1666E3053 d9830228e1134-wk-Fact-26E8D92002065035AD98E9C1666E3053" linkrole="http://www.xbrl.org/2003/role/link" order="1" torefs="TextSelection-3145B52E7FCA2F3362A684AA4DCC6F43-0-wk-Footnote-3145B52E7FCA2F3362A684AA4DCC6F43_lbl"></ix:relationship><ix:relationship arcrole="http://www.xbrl.org/2003/arcrole/fact-footnote" fromrefs="d9826191e945-wk-Fact-813D72726A9497A63BA17437E4C78AEF" linkrole="http://www.xbrl.org/2003/role/link" order="1" torefs="TextSelection-3145B52E7FCA2F3362A684AA4DCC6F43-0-wk-Footnote-3145B52E7FCA2F3362A684AA4DCC6F43_lbl"></ix:relationship><ix:relationship arcrole="http://www.xbrl.org/2003/arcrole/fact-footnote" fromrefs="d9826191e770-wk-Fact-EE045107A9E25C709E839D3B4CB38298 d9830228e953-wk-Fact-EE045107A9E25C709E839D3B4CB38298" linkrole="http://www.xbrl.org/2003/role/link" order="1" torefs="TextSelection-0BCD5B8F0F5AC070C6C884A9F7D7FB1C-0-wk-Footnote-0BCD5B8F0F5AC070C6C884A9F7D7FB1C_lbl"></ix:relationship></ix:resources></ix:header></div><div><a id="s0158C6C2037055329651C453DF746776"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="1"></td></tr><tr><td style="width:100%;"></td></tr><tr><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table></div></div><div style="line-height:120%;text-align:center;font-size:18pt;"><span style="font-family:inherit;font-size:18pt;font-weight:bold;">UNITED STATES</span></div><div style="line-height:120%;text-align:center;font-size:18pt;"><span style="font-family:inherit;font-size:18pt;font-weight:bold;">SECURITIES AND EXCHANGE COMMISSION</span></div><div style="line-height:120%;text-align:center;font-size:12pt;"><span style="font-family:inherit;font-size:12pt;font-weight:bold;">Washington, D.C. 20549</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:39.0625%;border-collapse:collapse;text-align:left;"><tr><td colspan="1"></td></tr><tr><td style="width:100%;"></td></tr><tr><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table></div></div><div style="line-height:120%;text-align:center;font-size:18pt;"><span style="font-family:inherit;font-size:18pt;font-weight:bold;">FORM </span><span><ix:nonnumeric contextref="FD2019Q1YTD" id="d9820573e532-wk-Fact-57F8ACA36288586FB674D2DC41601A90" name="dei:DocumentType"><span style="font-size:18pt;font-weight:bold;">10-Q</span></ix:nonnumeric></span><span style="font-family:inherit;font-size:18pt;font-weight:bold;"> </span></div><div style="line-height:120%;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;">(Mark One)</span></div><div style="line-height:120%;font-size:12pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="2"></td></tr><tr><td style="width:6%;"></td><td style="width:94%;"></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:12pt;"><span style="font-family:Wingdings;font-size:12pt;">x</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:12pt;"><span style="font-family:inherit;font-size:12pt;font-weight:bold;">QUARTERLY REPORT PURSUANT TO SECTION 13 OR 15(D) OF THE SECURITIES EXCHANGE ACT OF 1934</span></div></td></tr></table></div></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">For the quarterly period ended </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span><span style="white-space:nowrap"><ix:nonnumeric contextref="FD2019Q1YTD" format="ixt:datemonthdayyearen" id="d9820573e563-wk-Fact-E2AF8CE947F95C76B617E7647534B257" name="dei:DocumentPeriodEndDate">April 30, 2018</ix:nonnumeric></span></span></span><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">or</span></div><div style="line-height:120%;font-size:12pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="2"></td></tr><tr><td style="width:6%;"></td><td style="width:94%;"></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:12pt;"><span style="font-family:Wingdings;font-size:12pt;">¨</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:12pt;"><span style="font-family:inherit;font-size:12pt;font-weight:bold;">TRANSITION REPORT PURSUANT TO SECTION 13 OR 15(D) OF THE SECURITIES EXCHANGE ACT OF 1934</span></div></td></tr></table></div></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">For the transition period from to </span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Commission File Number: 0-14338</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:39.0625%;border-collapse:collapse;text-align:left;"><tr><td colspan="1"></td></tr><tr><td style="width:100%;"></td></tr><tr><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table></div></div><div style="line-height:120%;text-align:center;font-size:24pt;"><span style="font-size:24pt;font-weight:bold;">AUTODESK, INC.</span><span style="font-family:inherit;font-size:24pt;font-weight:bold;"> </span></div><div style="line-height:120%;text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(Exact name of registrant as specified in its charter)</span></div><div style="line-height:120%;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="3"></td></tr><tr><td style="width:49%;"></td><td style="width:1%;"></td><td style="width:50%;"></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Delaware</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">94-2819853</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(State or other jurisdiction of</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">incorporation or organization)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(I.R.S. employer</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Identification No.)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">111 McInnis Parkway,</span></div><div style="text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">San Rafael, California</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">94903</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(Address of principal executive offices)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(Zip Code)</span></div></td></tr></table></div></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">(415) 507-5000</span></div><div style="line-height:120%;text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(Registrant’s telephone number, including area code)</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:39.0625%;border-collapse:collapse;text-align:left;"><tr><td colspan="1"></td></tr><tr><td style="width:100%;"></td></tr><tr><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table></div></div><div style="line-height:120%;text-indent:32px;font-size:12pt;"><span style="font-family:inherit;font-size:10pt;">Indicate by check mark whether the registrant (1) has filed all reports required to be filed by Section 13 or 15(d) of the Exchange Act during the preceding 12 months (or for such shorter period that the registrant was required to file such reports), and (2) has been subject to such filing requirements for the past 90 days. Yes </span><span style="font-family:Wingdings;font-size:12pt;">x</span><span style="font-family:inherit;font-size:10pt;"> No </span><span style="font-family:Wingdings;font-size:10pt;">¨</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:12pt;"><span style="font-family:inherit;font-size:10pt;">Indicate by check mark whether the registrant has submitted electronically and posted on its corporate Web site, if any, every Interactive Data File required to be submitted and posted pursuant to Rule 405 of Regulation S-T during the preceding 12 months (or for such shorter period that the registrant was required to submit and post such files). Yes </span><span style="font-family:Wingdings;font-size:12pt;">x</span><span style="font-family:inherit;font-size:10pt;"> No </span><span style="font-family:Wingdings;font-size:10pt;">¨</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Indicate by check mark whether the registrant is a large accelerated filer, an accelerated filer, a non-accelerated filer, a smaller reporting company or an emerging growth company. See the definitions of “large accelerated filer,” “accelerated filer,” “smaller reporting company,” and "emerging growth company" in Rule 12b-2 of the Exchange Act.</span></div><div style="line-height:120%;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="7"></td></tr><tr><td style="width:19%;"></td><td style="width:1%;"></td><td style="width:4%;"></td><td style="width:46%;"></td><td style="width:26%;"></td><td style="width:1%;"></td><td style="width:3%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Large accelerated filer</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:Wingdings;font-size:10pt;">x</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Accelerated filer</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:Wingdings;font-size:10pt;">¨</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Non-accelerated filer</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:Wingdings;font-size:10pt;">¨</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Smaller reporting company</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:Wingdings;font-size:10pt;">¨</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Emerging growth company</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:Wingdings;font-size:10pt;">¨</span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">If an emerging growth company, indicate by check mark if the registrant has elected not to use the extended transition period for complying with any new or revised financial accounting standards provided pursuant to Section 13(a) of the Exchange Act. </span><span style="font-family:Wingdings;font-size:10pt;">¨</span></div><div style="line-height:120%;text-indent:32px;font-size:12pt;"><span style="font-family:inherit;font-size:10pt;">Indicate by check mark whether the registrant is a shell company (as defined by Rule 12b-2 of the Exchange Act). Yes </span><span style="font-family:Wingdings;font-size:10pt;">¨</span><span style="font-family:inherit;font-size:10pt;"> No </span><span style="font-family:Wingdings;font-size:12pt;">x</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As of </span><span style="font-family:inherit;font-size:10pt;">June 4, 2018</span><span style="font-family:inherit;font-size:10pt;">, registrant had outstanding </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2018Q2june4" decimals="INF" format="ixt:numdotdecimal" id="d9820573e948-wk-Fact-F504FF1B26F750A2879BBE658A4174B4" name="dei:EntityCommonStockSharesOutstanding" scale="0" unitref="shares">219,145,087</ix:nonfraction></span></span><span style="font-family:inherit;font-size:10pt;"> shares of common stock. </span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="1"></td></tr><tr><td style="width:100%;"></td></tr><tr><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table></div></div><div><br/></div><hr style="page-break-after:always"/><div><a id="sC74BC33F2509523CB45EB85DA0284C1E"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">AUTODESK, INC. FORM 10-Q</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">TABLE OF CONTENTS</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="3"></td></tr><tr><td style="width:8%;"></td><td style="width:79%;"></td><td style="width:13%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Page No.</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:10pt;"><a href="#s4BB011B7863250F3A23ABD5083E3E20B" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;">PART I. FINANCIAL INFORMATION</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 1.</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;">Unaudited </span><a href="#sCB60037122AA5349B216E9B5AD8EA83A" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;">Financial Statements:</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#sF53BFE14D665509B8B15AA9FFD4AA5DA" style="font-family:inherit;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Condensed Consolidated Statements of Operations for the Three Months Ended April 30, 2018 and 2017</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#sF53BFE14D665509B8B15AA9FFD4AA5DA" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">3</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#sE0AA21522A935FD98E3983125F2EF6F0" style="font-family:inherit;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Condensed Consolidated Statements of Comprehensive Loss for the Three Months Ended April 30, 2018 and 2017</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#sE0AA21522A935FD98E3983125F2EF6F0" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">4</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#s2E14112B0BFD5E9DBEDC3B4B7E9F3FFF" style="font-family:inherit;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Condensed Consolidated Balance Sheets as of April 30, 2018 and January 31, 2018</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#s2E14112B0BFD5E9DBEDC3B4B7E9F3FFF" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">5</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#s386D6B47A42B5D3494CAA9C0126A86F4" style="font-family:inherit;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Condensed Consolidated Statements of Cash Flows for the Three Months Ended April 30, 2018 and 2017</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#s386D6B47A42B5D3494CAA9C0126A86F4" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">6</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#s31EFD3D2708F5DDCA91E8182D7CFE990" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">Notes to Condensed Consolidated Financial Statements</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#s31EFD3D2708F5DDCA91E8182D7CFE990" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">7</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 2.</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#sA1638DFDF4A0515884EE2C89F162C03F" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;">Management’s Discussion and Analysis of Financial Condition and Results of Operations</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#sA1638DFDF4A0515884EE2C89F162C03F" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">29</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 3.</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#s837CA737FE91585FBFB3D015CCE76395" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;">Quantitative and Qualitative Disclosures About Market Risk</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#s837CA737FE91585FBFB3D015CCE76395" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">49</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 4.</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#sBF7AF9F86CAD554799AAA401B7D0604A" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;">Controls and Procedures</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#sBF7AF9F86CAD554799AAA401B7D0604A" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">49</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:10pt;"><a href="#sB9813823433A5351B5A8261CA7A66150" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;">PART II. OTHER INFORMATION</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 1.</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#s58546DD7D00F51C4AD14ADE6D4543607" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;">Legal Proceedings</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#s58546DD7D00F51C4AD14ADE6D4543607" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">51</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 1A.</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="vertical-align:top;font-size:10pt;"><a href="#s8D7F47F3E16554068FD188D56D4C41C1" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;">Risk Factors</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#s8D7F47F3E16554068FD188D56D4C41C1" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">51</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 2.</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="vertical-align:top;font-size:10pt;"><a href="#s3F8986F4D7D45004ADFF8C362E092062" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;">Unregistered Sales of Equity Securities and Use of Proceeds</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#s3F8986F4D7D45004ADFF8C362E092062" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">67</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 3.</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="vertical-align:top;font-size:10pt;"><a href="#sF8412544FF345B0D918E8D4990AB8F0C" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;">Defaults Upon Senior Securities</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#sF8412544FF345B0D918E8D4990AB8F0C" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">67</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 4.</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="vertical-align:top;font-size:10pt;"><a href="#s446D171943C5516DB3BCB97B39248037" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;">Mine Safety Disclosures</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#s446D171943C5516DB3BCB97B39248037" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">67</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 5.</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="vertical-align:top;font-size:10pt;"><a href="#sDF6A169DDAE55595B0D13EBC1B77A946" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;">Other Information</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#sDF6A169DDAE55595B0D13EBC1B77A946" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">67</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Item 6.</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><a href="#s60AEF7C64191561F9BC1899747EBA515" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;">Exhibits</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#s60AEF7C64191561F9BC1899747EBA515" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">68</a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="vertical-align:top;font-size:10pt;"><a href="#sD2D7539567F456C2BE18750E00586E18" style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;"><span style="font-family:inherit;font-size:10pt;color:#0000ff;font-weight:bold;text-decoration:underline;vertical-align:top;">Signatures</span></a></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:10pt;"><a href="#sD2D7539567F456C2BE18750E00586E18" style="font-family:inherit;font-size:10pt;color:#0000ff;text-decoration:underline;">69</a></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><hr style="page-break-after:always"/><div><a id="s4BB011B7863250F3A23ABD5083E3E20B"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">PART I. FINANCIAL INFORMATION</span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div><a id="sCB60037122AA5349B216E9B5AD8EA83A"></a></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 1.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">FINANCIAL STATEMENTS</span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sF53BFE14D665509B8B15AA9FFD4AA5DA"></a></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">AUTODESK, INC.</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">CONDENSED CONSOLIDATED STATEMENTS OF OPERATIONS</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(In millions, except per share data)</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(Unaudited)</span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:77%;"></td><td style="width:1%;"></td><td style="width:9%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:9%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net revenue:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Subscription</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e658-wk-Fact-A0CEEA13AC6953DE97A8DB6285F15DF8" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">350.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e677-wk-Fact-91C707AE7B83C0144981DB438B03B298" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">173.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_MaintenanceRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e692-wk-Fact-3E22424CA7B75C34A760C04F5340C923" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">181.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_MaintenanceRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e711-wk-Fact-63CC8B3EDE337FD58BEFDB438B1E359A" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">263.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total maintenance and subscription revenue</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e731-wk-Fact-E07DB97A17CD58D1B60D2A892022FD94" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">531.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e750-wk-Fact-0164D2C2C84B31027E01DB438AFE12A7" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">437.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other (1)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e770-wk-Fact-EE045107A9E25C709E839D3B4CB38298" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">28.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e789-wk-Fact-EFD9DDB3D6DF71D2B006DB438B73CAE3" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">48.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total net revenue</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e809-wk-Fact-B4537E6389D65947ACBD5D7971DA5A99" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">559.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e828-wk-Fact-AB652C68F4CD53D58DA4F241C9EA0B5B" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">485.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of revenue:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of maintenance and subscription revenue</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e887-wk-Fact-02F0CD0AC87C5BD68D12B112F9ECA7E0" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">50.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e906-wk-Fact-5FC8969A1D6259A48BC527CD7AC289BB" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">54.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of other revenue (2)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e926-wk-Fact-26E8D92002065035AD98E9C1666E3053" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">12.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9826191e945-wk-Fact-813D72726A9497A63BA17437E4C78AEF" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">18.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of developed technology </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e966-wk-Fact-BDB4EB9C7D35541AB09E80095AC503C8" name="us-gaap:CostOfGoodsSoldAmortization" scale="6" unitref="usd">3.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e985-wk-Fact-6484A59E7B2D5168B2ECFA58452CC50F" name="us-gaap:CostOfGoodsSoldAmortization" scale="6" unitref="usd">4.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total cost of revenue</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1005-wk-Fact-30094B8822AC51A28112D00FF72FE0E3" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">66.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1024-wk-Fact-72F748F29A9156CBBB94C251253FCCFB" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">78.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gross profit</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1044-wk-Fact-85A8AECC364250B19C25C4D8F410FA7D" name="us-gaap:GrossProfit" scale="6" unitref="usd">493.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1063-wk-Fact-7DCEA80EBD165C6CA362141F4A037C20" name="us-gaap:GrossProfit" scale="6" unitref="usd">407.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Operating expenses:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Marketing and sales</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1123-wk-Fact-317B730EF9425392A4A78890B72103BC" name="us-gaap:SellingAndMarketingExpense" scale="6" unitref="usd">276.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1142-wk-Fact-7EB4BD7576E65DCAAB7C4909DB45045D" name="us-gaap:SellingAndMarketingExpense" scale="6" unitref="usd">255.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Research and development</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1162-wk-Fact-70BA651A5510506596743F6691ED6F67" name="us-gaap:ResearchAndDevelopmentExpense" scale="6" unitref="usd">172.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1181-wk-Fact-B1933B7C27595A3B99DDDDF114DE52C9" name="us-gaap:ResearchAndDevelopmentExpense" scale="6" unitref="usd">187.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">General and administrative</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1201-wk-Fact-F57EE967DA845361BB9F7A30ADDB9C73" name="us-gaap:GeneralAndAdministrativeExpense" scale="6" unitref="usd">72.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1220-wk-Fact-5A87702E16DB5BF4978FC427DC773A47" name="us-gaap:GeneralAndAdministrativeExpense" scale="6" unitref="usd">78.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of purchased intangibles </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1240-wk-Fact-475FBB008E905191ADEA98C6706A097F" name="us-gaap:AmortizationOfIntangibleAssets" scale="6" unitref="usd">3.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1259-wk-Fact-A36D84FBB6E15F06991E72F86C938072" name="us-gaap:AmortizationOfIntangibleAssets" scale="6" unitref="usd">5.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Restructuring and other facility exit costs, net</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1279-wk-Fact-B1587E97A5935964B48A135D9A6D9D8C" name="adsk:RestructuringChargesNetofAdjustments" scale="6" unitref="usd">22.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1298-wk-Fact-2D3883BD22555EA2842DA708C9CF63F4" name="adsk:RestructuringChargesNetofAdjustments" scale="6" sign="-" unitref="usd">0.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total operating expenses</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1319-wk-Fact-39872CE717FB5F47B820B709B1E5E6EB" name="us-gaap:OperatingExpenses" scale="6" unitref="usd">548.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1338-wk-Fact-563F59EE189A581C94A1E73AF101200D" name="us-gaap:OperatingExpenses" scale="6" unitref="usd">527.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Loss from operations</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1358-wk-Fact-717FCE4338D35AADB35E523FD36FA218" name="us-gaap:OperatingIncomeLoss" scale="6" sign="-" unitref="usd">55.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1378-wk-Fact-B639599B1FF15838BE843741337ED30D" name="us-gaap:OperatingIncomeLoss" scale="6" sign="-" unitref="usd">119.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Interest and other expense, net</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1400-wk-Fact-AF43D79917265208B0FA367966590FEF" name="us-gaap:InterestIncomeExpenseNet" scale="6" sign="-" unitref="usd">8.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1420-wk-Fact-BD73546047E456F38EB458D18DCD09E3" name="us-gaap:InterestIncomeExpenseNet" scale="6" sign="-" unitref="usd">1.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Loss before income taxes</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1441-wk-Fact-CC160F00705A582AB78F5AF417E644B8" name="us-gaap:IncomeLossFromContinuingOperationsBeforeIncomeTaxesMinorityInterestAndIncomeLossFromEquityMethodInvestments" scale="6" sign="-" unitref="usd">63.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1461-wk-Fact-44F01A11C96C5BEC9171F56C698F1CF2" name="us-gaap:IncomeLossFromContinuingOperationsBeforeIncomeTaxesMinorityInterestAndIncomeLossFromEquityMethodInvestments" scale="6" sign="-" unitref="usd">121.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Provision for income taxes</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1482-wk-Fact-B3E7B4EA4D735B2299F70D54BFA5BC76" name="us-gaap:IncomeTaxExpenseBenefit" scale="6" unitref="usd">18.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1502-wk-Fact-0BFB3622F67351D48A47A445295794AA" name="us-gaap:IncomeTaxExpenseBenefit" scale="6" unitref="usd">8.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net loss</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1528-wk-Fact-7DB57A633404584E8398CE6B5AE802E6" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">82.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1548-wk-Fact-64893E8F878E5879AEE7A1B8A1E82A37" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">129.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Basic net loss per share</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9826191e1569-wk-Fact-09E006D6ABDC54B98FF59E0588DBA1C9" name="us-gaap:EarningsPerShareBasic" scale="0" sign="-" unitref="usdPerShare">0.38</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9826191e1589-wk-Fact-F8EDF3238C1A5D74A64D5E475002FF8C" name="us-gaap:EarningsPerShareBasic" scale="0" sign="-" unitref="usdPerShare">0.59</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Diluted net loss per share</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9826191e1610-wk-Fact-C45F58502C2D503594ED047F32F32B89" name="us-gaap:EarningsPerShareDiluted" scale="0" sign="-" unitref="usdPerShare">0.38</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9826191e1630-wk-Fact-E7B48DF284ED5DB986620E469F7C9569" name="us-gaap:EarningsPerShareDiluted" scale="0" sign="-" unitref="usdPerShare">0.59</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Weighted average shares used in computing basic net loss per share</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1646-wk-Fact-A6017E53C1195782A85BF8A4EBE7AED0" name="us-gaap:WeightedAverageNumberOfSharesOutstandingBasic" scale="6" unitref="shares">218.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1665-wk-Fact-14E4599D070D59FC85C56E656B5AF179" name="us-gaap:WeightedAverageNumberOfSharesOutstandingBasic" scale="6" unitref="shares">219.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Weighted average shares used in computing diluted net loss per share</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1685-wk-Fact-A118A5CD42A356E29FEE76DB85B8210C" name="us-gaap:WeightedAverageNumberOfDilutedSharesOutstanding" scale="6" unitref="shares">218.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826191e1704-wk-Fact-8523F40DA4CD56DA9F227461300583C7" name="us-gaap:WeightedAverageNumberOfDilutedSharesOutstanding" scale="6" unitref="shares">219.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><ix:footnote footnoterole="http://www.xbrl.org/2003/role/footnote" id="TextSelection-0BCD5B8F0F5AC070C6C884A9F7D7FB1C-0-wk-Footnote-0BCD5B8F0F5AC070C6C884A9F7D7FB1C_lbl" xml:lang="en-US">Previously labeled as "License and other" in prior periods.</ix:footnote></span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><ix:footnote continuedat="TextSelection-3145B52E7FCA2F3362A684AA4DCC6F43-1" footnoterole="http://www.xbrl.org/2003/role/footnote" id="TextSelection-3145B52E7FCA2F3362A684AA4DCC6F43-0-wk-Footnote-3145B52E7FCA2F3362A684AA4DCC6F43_lbl" xml:lang="en-US">Previously labeled as "Cost of license and other revenue" in prior periods.</ix:footnote></span></div></td></tr></table><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-3145B52E7FCA2F3362A684AA4DCC6F43-1"><br/></ix:continuation></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">See accompanying Notes to Condensed Consolidated Financial Statements.</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">3</span></div></div><hr style="page-break-after:always"/><div><a id="sE0AA21522A935FD98E3983125F2EF6F0"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">AUTODESK, INC.</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">CONDENSED CONSOLIDATED STATEMENTS OF COMPREHENSIVE LOSS</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(In millions)</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(Unaudited)</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:77%;"></td><td style="width:1%;"></td><td style="width:9%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:9%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net loss</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e619-wk-Fact-7DB57A633404584E8398CE6B5AE802E6" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">82.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e639-wk-Fact-64893E8F878E5879AEE7A1B8A1E82A37" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">129.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other comprehensive loss (income), net of reclassifications:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:24px;text-indent:-24px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net gain (loss) on derivative instruments (net of tax effect of ($0.7) and $0.5, respectively)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e696-wk-Fact-BCF364A8740598F2DDE97439308D0E85" name="us-gaap:OtherComprehensiveIncomeDerivativesQualifyingAsHedgesNetOfTaxPortionAttributableToParent" scale="6" unitref="usd">6.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e715-wk-Fact-D93DA5F80322C745194B743930929864" name="us-gaap:OtherComprehensiveIncomeDerivativesQualifyingAsHedgesNetOfTaxPortionAttributableToParent" scale="6" sign="-" unitref="usd">1.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:24px;text-indent:-24px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Change in net unrealized gain on available-for-sale debt securities (net of tax effect of $0.1 and ($0.3), respectively)</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e736-wk-Fact-C4032D04C3A1E303189B74393096F046" name="us-gaap:OtherComprehensiveIncomeAvailableforsaleSecuritiesAdjustmentNetOfTaxPortionAttributableToParent" scale="6" unitref="usd">0.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e755-wk-Fact-0150E51B32297455042C743930883DA9" name="us-gaap:OtherComprehensiveIncomeAvailableforsaleSecuritiesAdjustmentNetOfTaxPortionAttributableToParent" scale="6" unitref="usd">0.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:24px;text-indent:-24px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Change in defined benefit pension items (net of tax effect of ($1.4) and $0.0, respectively)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e775-wk-Fact-E0D65B1631E5C9641E897439308F9DFD" name="us-gaap:OtherComprehensiveIncomeLossPensionAndOtherPostretirementBenefitPlansAdjustmentNetOfTax" scale="6" sign="-" unitref="usd">7.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e794-wk-Fact-44D9D8F431E38536851E74393090F407" name="us-gaap:OtherComprehensiveIncomeLossPensionAndOtherPostretirementBenefitPlansAdjustmentNetOfTax" scale="6" unitref="usd">0.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:24px;text-indent:-24px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net change in cumulative foreign currency translation (loss) gain (net of tax effect of $0.3 and ($0.3), respectively)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e815-wk-Fact-34930795906D7371EBD6743930958A82" name="us-gaap:OtherComprehensiveIncomeForeignCurrencyTransactionAndTranslationAdjustmentNetOfTaxPortionAttributableToParent" scale="6" sign="-" unitref="usd">24.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e835-wk-Fact-8F53986B2562F38EF92474393093FADE" name="us-gaap:OtherComprehensiveIncomeForeignCurrencyTransactionAndTranslationAdjustmentNetOfTaxPortionAttributableToParent" scale="6" unitref="usd">13.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total other comprehensive (loss) income</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e855-wk-Fact-A793E3ADAAAA505CAB324DF238E2EC26" name="us-gaap:OtherComprehensiveIncomeLossNetOfTaxPortionAttributableToParent" scale="6" sign="-" unitref="usd">10.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e875-wk-Fact-0705DAC91CF55B929BD421B97403F279" name="us-gaap:OtherComprehensiveIncomeLossNetOfTaxPortionAttributableToParent" scale="6" unitref="usd">12.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total comprehensive loss </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e900-wk-Fact-CDB65AD9A6295B2E9483BD34FD5925EF" name="us-gaap:ComprehensiveIncomeNetOfTax" scale="6" sign="-" unitref="usd">92.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9821808e920-wk-Fact-0FC3E7FD06B35E4DBCD64259B9F9E71B" name="us-gaap:ComprehensiveIncomeNetOfTax" scale="6" sign="-" unitref="usd">117.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">See accompanying Notes to Condensed Consolidated Financial Statements.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">4</span></div></div><hr style="page-break-after:always"/><div><a id="s2E14112B0BFD5E9DBEDC3B4B7E9F3FFF"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">AUTODESK, INC.</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">CONDENSED CONSOLIDATED BALANCE SHEETS</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(In millions)</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(Unaudited)</span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:71%;"></td><td style="width:1%;"></td><td style="width:12%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:12%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">January 31, 2018</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-weight:bold;">ASSETS</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Current assets:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cash and cash equivalents</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e656-wk-Fact-F1EE4088B1EF59D2BFFCBFE535DEE4F4" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">1,093.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e674-wk-Fact-3CF877F003935445915C7EEF97806CBF" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">1,078.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Marketable securities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e689-wk-Fact-D92F6AE80EBE50F99AF9AE9F384C6A0C" name="us-gaap:MarketableSecuritiesCurrent" scale="6" unitref="usd">199.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e707-wk-Fact-B3F2BDA2947A5F1896D4DAC87B69C520" name="us-gaap:MarketableSecuritiesCurrent" scale="6" unitref="usd">245.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accounts receivable, net</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e727-wk-Fact-1C23AA231EF0551F88BB1BCA42BE1784" name="us-gaap:AccountsReceivableNetCurrent" scale="6" unitref="usd">206.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e745-wk-Fact-DA3301B35BF45AA58B9C033BBAC629C3" name="us-gaap:AccountsReceivableNetCurrent" scale="6" unitref="usd">438.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Prepaid expenses and other current assets</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e765-wk-Fact-BA48E9A13D75540A9FFEEE491D12169E" name="us-gaap:PrepaidExpenseAndOtherAssetsCurrent" scale="6" unitref="usd">198.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e783-wk-Fact-201CE2D4243856C498A79B89B6F1C31A" name="us-gaap:PrepaidExpenseAndOtherAssetsCurrent" scale="6" unitref="usd">116.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:44px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total current assets</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e803-wk-Fact-84E4AD0BD89850C2BF35E0BBF1008F3B" name="us-gaap:AssetsCurrent" scale="6" unitref="usd">1,698.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e821-wk-Fact-799551B9C9DE56F18968E9F331A4C6EA" name="us-gaap:AssetsCurrent" scale="6" unitref="usd">1,877.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Marketable securities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e841-wk-Fact-0F8F14A2FB985D51AFFB91395B411AB3" name="us-gaap:MarketableSecuritiesNoncurrent" scale="6" unitref="usd">171.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e859-wk-Fact-397E464FA09C50ECB34C207502A2433E" name="us-gaap:MarketableSecuritiesNoncurrent" scale="6" unitref="usd">190.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Computer equipment, software, furniture and leasehold improvements, net</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e879-wk-Fact-74941E25761E576D836F90AC2CDBA6A2" name="us-gaap:PropertyPlantAndEquipmentNet" scale="6" unitref="usd">158.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e897-wk-Fact-6A685B2F578851E6853E3B486E90B9C8" name="us-gaap:PropertyPlantAndEquipmentNet" scale="6" unitref="usd">145.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Developed technologies, net</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e917-wk-Fact-57757154021F5C14BA08A9B8BC66490C" name="us-gaap:IntangibleAssetsNetExcludingGoodwill" scale="6" unitref="usd">23.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e935-wk-Fact-B7544A5C71715F05B4B6BA7A3EA5FA95" name="us-gaap:IntangibleAssetsNetExcludingGoodwill" scale="6" unitref="usd">27.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Goodwill</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e956-wk-Fact-902A63E8D60250EF99923288E6AB42B7" name="us-gaap:Goodwill" scale="6" unitref="usd">1,604.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e974-wk-Fact-C57526A93D07556A849C047A6CD36DFC" name="us-gaap:Goodwill" scale="6" unitref="usd">1,620.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Deferred income taxes, net</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e994-wk-Fact-E02AAB5B37A25C0EA2E2C481C1753485" name="us-gaap:DeferredIncomeTaxAssetsNet" scale="6" unitref="usd">67.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1012-wk-Fact-24FE1AAF967A5EFDA5D6001DA1475D2B" name="us-gaap:DeferredIncomeTaxAssetsNet" scale="6" unitref="usd">81.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other assets</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1032-wk-Fact-3FFE9ABC3C845E47BF75EDC187ECA113" name="us-gaap:OtherAssetsNoncurrent" scale="6" unitref="usd">188.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1050-wk-Fact-2ADABD902DF551C1947BEFE12A2160B6" name="us-gaap:OtherAssetsNoncurrent" scale="6" unitref="usd">170.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total assets</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1075-wk-Fact-310D59864FA552A0A5A26D0A3F74657F" name="us-gaap:Assets" scale="6" unitref="usd">3,911.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1093-wk-Fact-95AA414393145D8AA3B2D751E877E9AD" name="us-gaap:Assets" scale="6" unitref="usd">4,113.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-weight:bold;">LIABILITIES AND STOCKHOLDERS’ DEFICIT</span></div></td><td colspan="3" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Current liabilities:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accounts payable</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1190-wk-Fact-1F59E5AF1E6E5029B1208E61A8645F1C" name="us-gaap:AccountsPayableCurrent" scale="6" unitref="usd">103.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1208-wk-Fact-F3F30D16CB265AE790618034B9E6753A" name="us-gaap:AccountsPayableCurrent" scale="6" unitref="usd">94.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accrued compensation</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1223-wk-Fact-D04E1488C17855FABCF190EF422B1257" name="us-gaap:EmployeeRelatedLiabilitiesCurrent" scale="6" unitref="usd">127.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1241-wk-Fact-6AD628FBB986514093E99F1E9504966D" name="us-gaap:EmployeeRelatedLiabilitiesCurrent" scale="6" unitref="usd">250.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accrued income taxes</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1261-wk-Fact-1F2D54FD564A514CA575296287D7BA20" name="us-gaap:AccruedIncomeTaxesCurrent" scale="6" unitref="usd">24.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1279-wk-Fact-E52A5FD06B805E4DA07BAE036316E170" name="us-gaap:AccruedIncomeTaxesCurrent" scale="6" unitref="usd">28.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Deferred revenue</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1299-wk-Fact-2948ED27CE1755DEA3E04DD9D8526FFC" name="us-gaap:ContractWithCustomerLiabilityCurrent" scale="6" unitref="usd">1,469.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1317-wk-Fact-1A116C60AEEA50C09BBE2670B5B3595F" name="us-gaap:ContractWithCustomerLiabilityCurrent" scale="6" unitref="usd">1,551.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other accrued liabilities</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1337-wk-Fact-3D5A874ACDD55F6683DD4F31783868E4" name="us-gaap:OtherAccruedLiabilitiesCurrent" scale="6" unitref="usd">127.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1355-wk-Fact-8F6965707C475235B3A08B1980A1A275" name="us-gaap:OtherAccruedLiabilitiesCurrent" scale="6" unitref="usd">198.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:44px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total current liabilities</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1376-wk-Fact-88E3B13436935456B12644436CC77A9C" name="us-gaap:LiabilitiesCurrent" scale="6" unitref="usd">1,852.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1394-wk-Fact-5525FE054F675617AD2CB208B0EF5D64" name="us-gaap:LiabilitiesCurrent" scale="6" unitref="usd">2,123.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Long-term deferred revenue</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1414-wk-Fact-768F30CB243654739259276ABF1DDA4C" name="us-gaap:ContractWithCustomerLiabilityNoncurrent" scale="6" unitref="usd">337.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1432-wk-Fact-817A9FF9C8785BE18B3D925B2B6AE0B2" name="us-gaap:ContractWithCustomerLiabilityNoncurrent" scale="6" unitref="usd">403.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Long-term income taxes payable</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1452-wk-Fact-EACEBCF369C55370BE60C14C5E7BD297" name="us-gaap:AccruedIncomeTaxesNoncurrent" scale="6" unitref="usd">41.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1470-wk-Fact-7D1925643C2C5425B7E2AC4480680A3E" name="us-gaap:AccruedIncomeTaxesNoncurrent" scale="6" unitref="usd">41.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Long-term deferred income taxes </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1490-wk-Fact-170D62A022E854F7835D33A24CD82B8B" name="us-gaap:DeferredIncomeTaxLiabilitiesNet" scale="6" unitref="usd">84.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1509-wk-Fact-3DB10FFFE5F05E299FCEA5CD76058003" name="us-gaap:DeferredIncomeTaxLiabilitiesNet" scale="6" unitref="usd">66.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Long-term notes payable, net</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1529-wk-Fact-88C580AE37C45D2CB117B112F3EAE53C" name="us-gaap:LongTermNotesPayable" scale="6" unitref="usd">1,586.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1548-wk-Fact-AD40492A0D415DB5BA9D25A9CC888405" name="us-gaap:LongTermNotesPayable" scale="6" unitref="usd">1,586.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other liabilities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1568-wk-Fact-D715082B8C5459619E5D1FFFA514EAC9" name="us-gaap:OtherLiabilitiesNoncurrent" scale="6" unitref="usd">137.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1586-wk-Fact-E0F5D16D61D55E5A86721B3BCD0584D2" name="us-gaap:OtherLiabilitiesNoncurrent" scale="6" unitref="usd">148.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stockholders’ deficit:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Common stock and additional paid-in capital</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1644-wk-Fact-A76DDC922AFF53C5833F911596857D7C" name="us-gaap:CommonStocksIncludingAdditionalPaidInCapital" scale="6" unitref="usd">2,001.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1662-wk-Fact-B8AF4468344A5B319BB647E4B61D088D" name="us-gaap:CommonStocksIncludingAdditionalPaidInCapital" scale="6" unitref="usd">1,952.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accumulated other comprehensive loss</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1682-wk-Fact-860156128A6952C49D7502BC4B95CE17" name="us-gaap:AccumulatedOtherComprehensiveIncomeLossNetOfTax" scale="6" sign="-" unitref="usd">133.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1701-wk-Fact-B48F6D899A57509191D8DCCCF8CA8CBE" name="us-gaap:AccumulatedOtherComprehensiveIncomeLossNetOfTax" scale="6" sign="-" unitref="usd">123.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accumulated deficit</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1722-wk-Fact-65FA95541A935F75B0C4ED32B535C58F" name="us-gaap:RetainedEarningsAccumulatedDeficit" scale="6" sign="-" unitref="usd">1,995.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1741-wk-Fact-4683977BA781518A8F757DB85C3EC752" name="us-gaap:RetainedEarningsAccumulatedDeficit" scale="6" sign="-" unitref="usd">2,084.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total stockholders’ deficit</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1762-wk-Fact-27DED32D809A51A682C1F964347D3A8B" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">128.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1781-wk-Fact-1561973661315E7EA8E174840B5EE3B1" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">256.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total liabilities and stockholders' deficit</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1808-wk-Fact-FD40CB58C42759FA8E00260983F06D4E" name="us-gaap:LiabilitiesAndStockholdersEquity" scale="6" unitref="usd">3,911.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9823391e1826-wk-Fact-5F695B994A1D54EE9CD2D87B4D0FF6B7" name="us-gaap:LiabilitiesAndStockholdersEquity" scale="6" unitref="usd">4,113.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">See accompanying Notes to Condensed Consolidated Financial Statements.</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">5</span></div></div><hr style="page-break-after:always"/><div><a id="s386D6B47A42B5D3494CAA9C0126A86F4"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">AUTODESK, INC.</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">CONDENSED CONSOLIDATED STATEMENTS OF CASH FLOWS</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(In millions)</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(Unaudited)</span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:99.8046875%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:71%;"></td><td style="width:1%;"></td><td style="width:12%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:12%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Operating activities:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net loss</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e655-wk-Fact-7DB57A633404584E8398CE6B5AE802E6" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">82.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e674-wk-Fact-64893E8F878E5879AEE7A1B8A1E82A37" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">129.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Adjustments to reconcile net loss to net cash (used in) provided by operating activities:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Depreciation, amortization and accretion</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e728-wk-Fact-592BBB8869085A16AC851899ED1EB5E0" name="us-gaap:DepreciationAndAmortization" scale="6" unitref="usd">24.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e746-wk-Fact-235143291DB55DAAB2E620690009F0B8" name="us-gaap:DepreciationAndAmortization" scale="6" unitref="usd">28.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stock-based compensation expense</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e766-wk-Fact-B61027D99E815AFBA93E779156A02211" name="us-gaap:ShareBasedCompensation" scale="6" unitref="usd">54.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e784-wk-Fact-8D99D0349FA75321888601A5BF86E6D2" name="us-gaap:ShareBasedCompensation" scale="6" unitref="usd">66.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Deferred income taxes</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e804-wk-Fact-D42CA86C6911595BBF013DF5D174D344" name="us-gaap:IncreaseDecreaseInDeferredIncomeTaxes" scale="6" sign="-" unitref="usd">13.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e823-wk-Fact-2F8F9F54BFB158A8B3D41542D78E0FB2" name="us-gaap:IncreaseDecreaseInDeferredIncomeTaxes" scale="6" unitref="usd">0.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Restructuring and other facility exit costs, net</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e844-wk-Fact-8F5F304B64275349ADB97654128A07A8" name="us-gaap:RestructuringCosts" scale="6" unitref="usd">22.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e862-wk-Fact-C29B97A788795B78B3D66C349BDF6553" name="us-gaap:RestructuringCosts" scale="6" sign="-" unitref="usd">0.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other operating activities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e883-wk-Fact-79F2E35F7DF9541DBF73D3AD4D1B43F1" name="us-gaap:OtherOperatingActivitiesCashFlowStatement" scale="6" unitref="usd">10.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e901-wk-Fact-8E76F34E97865E5DA1EC02191AA2338B" name="us-gaap:OtherOperatingActivitiesCashFlowStatement" scale="6" unitref="usd">7.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Changes in operating assets and liabilities</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accounts receivable</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e960-wk-Fact-4ECFBE810DAD5F62A9DBE36D5DFD02CF" name="us-gaap:IncreaseDecreaseInAccountsReceivable" scale="6" sign="-" unitref="usd">231.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e979-wk-Fact-3AD097264B305DD4A0EA611FC5D7C3B7" name="us-gaap:IncreaseDecreaseInAccountsReceivable" scale="6" sign="-" unitref="usd">220.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Prepaid expenses and other current assets</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e999-wk-Fact-E2BB1EE1DD225C99B8A8A5DC63FB95D4" name="us-gaap:IncreaseDecreaseInPrepaidDeferredExpenseAndOtherAssets" scale="6" unitref="usd">1.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1019-wk-Fact-351AFF7C383A59D6A41EC6BBD5172A29" name="us-gaap:IncreaseDecreaseInPrepaidDeferredExpenseAndOtherAssets" scale="6" sign="-" unitref="usd">6.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accounts payable and accrued liabilities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1039-wk-Fact-24745AA7E0E5556A9513731FAA861B16" name="us-gaap:IncreaseDecreaseInAccountsPayableAndAccruedLiabilities" scale="6" sign="-" unitref="usd">227.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1059-wk-Fact-152B22517E0C5BCEA2A2A3DA1F8E77A3" name="us-gaap:IncreaseDecreaseInAccountsPayableAndAccruedLiabilities" scale="6" sign="-" unitref="usd">133.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Deferred revenue</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1080-wk-Fact-2AEE084C0F825399BF3ED2F68D4444B5" name="us-gaap:IncreaseDecreaseInAccruedIncomeTaxesPayable" scale="6" sign="-" unitref="usd">58.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1100-wk-Fact-3872E1945B6E5D9F983D4AC2B1493780" name="us-gaap:IncreaseDecreaseInAccruedIncomeTaxesPayable" scale="6" unitref="usd">13.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accrued income taxes</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1120-wk-Fact-02841F6C597D5D6EB2E367557688BD87" name="us-gaap:IncreaseDecreaseInOperatingCapital" scale="6" unitref="usd">3.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1140-wk-Fact-8B6C41A62B67541AA000AB29D7E72152" name="us-gaap:IncreaseDecreaseInOperatingCapital" scale="6" unitref="usd">34.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-indent:54px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net cash (used in) provided by operating activities</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1161-wk-Fact-1FF67E85ADED521CA7F1109281DBACA8" name="us-gaap:NetCashProvidedByUsedInOperatingActivities" scale="6" sign="-" unitref="usd">16.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1180-wk-Fact-224FF4DEE3DD510288842E01B7FA01D6" name="us-gaap:NetCashProvidedByUsedInOperatingActivities" scale="6" unitref="usd">45.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Investing activities:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Purchases of marketable securities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1238-wk-Fact-1D6F51CF66495C95BFEB620F3C527DD9" name="us-gaap:PaymentsToAcquireMarketableSecurities" scale="6" unitref="usd">9.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1257-wk-Fact-8BBC05CA04F85A668A008052C77AAE48" name="us-gaap:PaymentsToAcquireMarketableSecurities" scale="6" unitref="usd">119.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Sales of marketable securities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1278-wk-Fact-AF9C33AC54C65DB9B09F9EE30C2A1E6D" name="us-gaap:ProceedsFromSaleOfAvailableForSaleSecurities" scale="6" unitref="usd">6.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1296-wk-Fact-0D1B334A8B105FF48E29B759009D21CB" name="us-gaap:ProceedsFromSaleOfAvailableForSaleSecurities" scale="6" unitref="usd">100.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maturities of marketable securities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1316-wk-Fact-450484083430520A9ED877236C7CE455" name="us-gaap:ProceedsFromMaturitiesPrepaymentsAndCallsOfAvailableForSaleSecurities" scale="6" unitref="usd">68.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1334-wk-Fact-09BA8AF032C555B8B3B194924C0DC84F" name="us-gaap:ProceedsFromMaturitiesPrepaymentsAndCallsOfAvailableForSaleSecurities" scale="6" unitref="usd">282.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Capital expenditures</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1354-wk-Fact-42A257B0C99F59D79AD99BEE440F5A0D" name="us-gaap:PaymentsToAcquirePropertyPlantAndEquipment" scale="6" unitref="usd">16.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1373-wk-Fact-67B93C83038B56268EABFC9CAE142DD6" name="us-gaap:PaymentsToAcquirePropertyPlantAndEquipment" scale="6" unitref="usd">8.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other investing activities</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1395-wk-Fact-7CE521C4A228511E99A32748FD16CED6" name="us-gaap:PaymentsForProceedsFromOtherInvestingActivities" scale="6" unitref="usd">0.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1414-wk-Fact-E05BF6A3BD6358AF8266A9EA924CCFDF" name="us-gaap:PaymentsForProceedsFromOtherInvestingActivities" scale="6" sign="-" unitref="usd">3.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-indent:54px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net cash provided by investing activities</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1434-wk-Fact-6EEC42A89E285B52A0B3CFED322F0833" name="us-gaap:NetCashProvidedByUsedInInvestingActivities" scale="6" unitref="usd">47.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1452-wk-Fact-104EFED92E115EC09BE0988D2FD03B94" name="us-gaap:NetCashProvidedByUsedInInvestingActivities" scale="6" unitref="usd">258.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Financing activities:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Proceeds from issuance of common stock, net of issuance costs</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1510-wk-Fact-03687738F1BF5CDCBE46826B0149A6D4" name="us-gaap:ProceedsFromIssuanceOfCommonStock" scale="6" unitref="usd">49.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1528-wk-Fact-FD45A5B4C60D51D3BF666B394BE3462C" name="us-gaap:ProceedsFromIssuanceOfCommonStock" scale="6" unitref="usd">50.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Taxes paid related to net share settlement of equity awards </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1548-wk-Fact-59F7E30685F551889E06DF66A19D64C9" name="us-gaap:PaymentsRelatedToTaxWithholdingForShareBasedCompensation" scale="6" unitref="usd">38.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1567-wk-Fact-B3DC2C89FEE256F5A261181FE61AD188" name="us-gaap:PaymentsRelatedToTaxWithholdingForShareBasedCompensation" scale="6" unitref="usd">33.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Repurchases of common stock</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1588-wk-Fact-AAEF90D41D7E5DE0A43F2A5EF40016E1" name="us-gaap:PaymentsForRepurchaseOfCommonStock" scale="6" unitref="usd">22.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1607-wk-Fact-E58052290DF95F5EA5652083381300A8" name="us-gaap:PaymentsForRepurchaseOfCommonStock" scale="6" unitref="usd">195.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-indent:54px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net cash used in financing activities</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1628-wk-Fact-F5D63E23911D5D3FB9DE6FEC5674B374" name="us-gaap:NetCashProvidedByUsedInFinancingActivities" scale="6" sign="-" unitref="usd">11.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1647-wk-Fact-80501A1DA6A05A6A8E12C9C5B433C73C" name="us-gaap:NetCashProvidedByUsedInFinancingActivities" scale="6" sign="-" unitref="usd">178.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Effect of exchange rate changes on cash and cash equivalents</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1668-wk-Fact-4AA9721DCECC5C6EA9A684390637A451" name="us-gaap:EffectOfExchangeRateOnCashAndCashEquivalents" scale="6" sign="-" unitref="usd">4.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1687-wk-Fact-E670D42655125ADA8F9142D7405D6594" name="us-gaap:EffectOfExchangeRateOnCashAndCashEquivalents" scale="6" unitref="usd">2.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net increase in cash and cash equivalents</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1707-wk-Fact-3A41474C672A5BCBB0F2D65CF216D8FB" name="us-gaap:CashAndCashEquivalentsPeriodIncreaseDecrease" scale="6" unitref="usd">15.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1725-wk-Fact-E53816B4B7495A49B4C40ED47B62E2DD" name="us-gaap:CashAndCashEquivalentsPeriodIncreaseDecrease" scale="6" unitref="usd">127.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cash and cash equivalents at beginning of period</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1745-wk-Fact-3CF877F003935445915C7EEF97806CBF" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">1,078.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2017Q4" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1763-wk-Fact-C348127257925E3CB0EF57467E42A6BE" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">1,213.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cash and cash equivalents at end of period</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1788-wk-Fact-F1EE4088B1EF59D2BFFCBFE535DEE4F4" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">1,093.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q1" decimals="-5" format="ixt:numdotdecimal" id="d9826354e1806-wk-Fact-97E6394BED9158B5B8F03E058F219233" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">1,340.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">See accompanying Notes to Condensed Consolidated Financial Statements.</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">6</span></div></div><hr style="page-break-after:always"/><div><a id="s31EFD3D2708F5DDCA91E8182D7CFE990"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">AUTODESK, INC.</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">NOTES TO CONDENSED CONSOLIDATED FINANCIAL STATEMENTS</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(Tables in millions, except share and per share data, or as otherwise noted)</span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div><a id="s1030CF6B33E75A36989CC0CEE3B61CDB"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">1</span><span style="font-family:inherit;font-size:10pt;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-700AAD774312554DB0CC7BF25460ECAF-1" escape="true" id="TextSelection-700AAD774312554DB0CC7BF25460ECAF-0-wk-Fact-3BE532B9F9EA5508B82DF6C51DE59B55" name="us-gaap:OrganizationConsolidationAndPresentationOfFinancialStatementsDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Basis of Presentation</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-700AAD774312554DB0CC7BF25460ECAF-2" id="TextSelection-700AAD774312554DB0CC7BF25460ECAF-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-indent:32px;font-size:10pt;"><ix:continuation continuedat="TextSelection-700AAD774312554DB0CC7BF25460ECAF-3" id="TextSelection-700AAD774312554DB0CC7BF25460ECAF-2"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-7DC5087DB64D556EBA3A45D3C1A43412-1" escape="true" id="TextSelection-7DC5087DB64D556EBA3A45D3C1A43412-0-wk-Fact-7019113B70C251238B09DD6C6E8CB749" name="us-gaap:BasisOfAccountingPolicyPolicyTextBlock">The accompanying unaudited Condensed Consolidated Financial Statements of Autodesk, Inc. (“Autodesk,” “we,” “us,” “our,” or the “Company”) as of </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-7DC5087DB64D556EBA3A45D3C1A43412-2" id="TextSelection-7DC5087DB64D556EBA3A45D3C1A43412-1"><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, and for the </span><span style="font-family:inherit;font-size:10pt;">three months</span><span style="font-family:inherit;font-size:10pt;"> ended </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, have been prepared in accordance with U.S. generally accepted accounting principles ("GAAP") for interim financial information along with the instructions to Form 10-Q and Article 10 of Securities and Exchange Commission (“SEC”) Regulation S-X. Accordingly, they do not include all of the information and notes required by GAAP for annual financial statements. In management’s opinion, Autodesk made all adjustments (consisting of normal, recurring and non-recurring adjustments) during the quarter that were considered necessary for the fair statement of the financial position and operating results of the Company. The preparation of financial statements in conformity with GAAP requires management to make estimates and assumptions that affect reported amounts in the financial statements and accompanying notes. Actual results could differ from those estimates. In addition, the results of operations for the three months ended </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> are not necessarily indicative of the results for the entire fiscal year ending </span><span style="font-family:inherit;font-size:10pt;">January 31, 2019</span><span style="font-family:inherit;font-size:10pt;">, or for any other period. Further, the balance sheet as of </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;"> has been derived from the audited balance sheet as of this date. There have been no material changes, other than what is discussed herein, to Autodesk's significant accounting policies as compared to the significant accounting policies disclosed in the Annual Report on Form 10-K for the fiscal year ended </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">. These unaudited Condensed Consolidated Financial Statements should be read in conjunction with the Consolidated Financial Statements and related notes, together with management’s discussion and analysis of financial position and results of operations contained in Autodesk’s Annual Report on Form 10-K for the fiscal year ended </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span></ix:continuation></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-700AAD774312554DB0CC7BF25460ECAF-3"><ix:continuation id="TextSelection-7DC5087DB64D556EBA3A45D3C1A43412-2">, filed on March 22, 2018.</ix:continuation></ix:continuation></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="s26AA2DC04131541FA68183E106688CD7"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">2</span><span style="font-family:inherit;font-size:10pt;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-EE38A9A0B8FB5FFEB7547E05BCAB865F-1" escape="true" id="TextSelection-EE38A9A0B8FB5FFEB7547E05BCAB865F-0-wk-Fact-7FF339F8FE7D55D19650C9D17E136219" name="us-gaap:NewAccountingPronouncementsPolicyPolicyTextBlock"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-B956A8CBECDA5A668086297D7D550FAC-1" escape="true" id="TextSelection-B956A8CBECDA5A668086297D7D550FAC-0-wk-Fact-80EF6A0DBA7055718E87A912D6A45316" name="us-gaap:NewAccountingPronouncementsAndChangesInAccountingPrinciplesTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Recently Issued Accounting Standards</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;"> </span></ix:nonnumeric></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-EE38A9A0B8FB5FFEB7547E05BCAB865F-2" id="TextSelection-EE38A9A0B8FB5FFEB7547E05BCAB865F-1"><ix:continuation continuedat="TextSelection-B956A8CBECDA5A668086297D7D550FAC-2" id="TextSelection-B956A8CBECDA5A668086297D7D550FAC-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">With the exception of those discussed below, there have been no recent changes in accounting pronouncements issued by the Financial Accounting Standards Board (“FASB”) or adopted by the Company during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, that are of significance, or potential significance, to the Company.</span></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;text-decoration:underline;">Accounting standards adopted </span></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Effective in the first quarter of fiscal 2019, Autodesk adopted FASB Accounting Standards Update No. 2017-05 ("ASU 2017-05"), "Other Income– Gains and Losses from the Derecognition of Nonfinancial Assets (Subtopic 610-20): Clarifying the Scope of Asset Derecognition Guidance and Accounting for Partial Sales of Nonfinancial Assets." The ASU, among other things, clarifies the scope of the derecognition of nonfinancial assets, the definition of in-substance financial assets, and impacts the accounting for partial sales of nonfinancial assets by requiring full gain recognition upon the sale. The new guidance was adopted prospectively as there was no impact on the Company's prior periods consolidated statements of financial position and results of operations which would be reflected in either the full or modified retrospective transition approach. The future effect of the adoption will depend upon the nature of the Company's future dispositions, if any. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Effective in the first quarter of fiscal 2019, Autodesk adopted FASB Accounting Standards Update No. 2017-01 ("ASU 2017-01"), "Business Combinations: Clarifying the Definition of a Business" which provides a more robust framework to use in determining when a set of assets and activities is considered a business. The new guidance was applied on a prospective basis and did not have an impact on Autodesk's consolidated financial statements during the three months ended April 30, 2018, as no acquisitions were completed. The future effect of the adoption will depend upon the nature of the Company's future acquisitions, if any. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Effective in the first quarter of fiscal 2019, Autodesk adopted FASB Accounting Standards Update No. 2016-16 ("ASU 2016-16"), “Income Taxes: Intra-Entity Transfers of Assets Other than Inventory” which requires that entities recognize the income tax consequences of an intra-entity transfer of an asset, other than inventory, when the transfer occurs. The new guidance was applied on a modified retrospective basis with a cumulative increase of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2018Q4_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201616Member_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e551-wk-Fact-F939E24C9EB4E68F8BF3B7406F1EF558" name="us-gaap:CumulativeEffectOfNewAccountingPrincipleInPeriodOfAdoption" scale="6" sign="-" unitref="usd">1.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> to the opening balance of "Accumulated deficit" at February 1, 2018. The ASU did not have any other material impacts on Autodesk's consolidated financial statements.</span></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Effective in the first quarter of fiscal 2019, Autodesk adopted FASB Accounting Standards Update No. 2016-01 ("ASU 2016-01") regarding Accounting Standards Codification ("ASC") Topic 825-10, "Financial Instruments - Overall." The amendments address certain aspects of recognition, measurement, presentation, and disclosure of financial instruments, and require equity securities to be measured at fair value, unless the measurement alternative method has been elected for equity </span></div></ix:continuation></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">7</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-B956A8CBECDA5A668086297D7D550FAC-3" id="TextSelection-B956A8CBECDA5A668086297D7D550FAC-2"><ix:continuation continuedat="TextSelection-EE38A9A0B8FB5FFEB7547E05BCAB865F-3" id="TextSelection-EE38A9A0B8FB5FFEB7547E05BCAB865F-2"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">investments without readily determinable fair values ("non-marketable equity securities"), with changes in fair value recognized through net income. The amendments also simplify the impairment assessment of equity investments without readily determinable fair values by requiring a qualitative assessment for impairment quarterly at each reporting period. Under the measurement alternative method, the non-marketable equity securities will be measured at cost, less any impairment, plus or minus adjustments resulting from observable price changes in orderly transactions for the identical or a similar investment of the same issuer, which will be recorded within the statement of operations. The determination of whether a transaction is for a similar investment will require significant management judgment including consideration of the rights and obligations between the investments and the extent to which those differences would affect the fair values of those investments with additional consideration for the stage of development of the investee company.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk prospectively adopted the amendments related to non-marketable equity securities existing as of the date of adoption. The new standard may add volatility to the Company's statements of operations in future periods, due to changes in market prices of the Company's investments in publicly held equity investments and the valuation and timing of observable price changes and impairments of its investments in non-marketable securities. See Note </span><span style="font-family:inherit;font-size:10pt;">5</span><span style="font-family:inherit;font-size:10pt;">, "</span><span style="font-family:inherit;font-size:10pt;">Financial Instruments</span><span style="font-family:inherit;font-size:10pt;">" for more information.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Revenue from contracts with customers</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Effective in the first quarter of fiscal 2019, Autodesk adopted Accounting Standards Update No. 2014-09, “Revenue from Contracts with Customers (Topic 606)” and the subsequent and related Accounting Standards Update No. 2015-14, Accounting Standards Update No. 2016-08, Accounting Standards Update No. 2016-10, Accounting Standards Update No. 2016-12, and Accounting Standard Update No. 2016-20. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Under Topic 606, the Company has concluded that the desktop software and related substantial cloud functionality that are included in the majority of its product subscription offerings and enterprise arrangements are not distinct in the context of the contract as they are considered highly interrelated and represent a single combined performance obligation that should be recognized over time. Therefore, the adoption of Topic 606 has not resulted in a material change in the timing and amount of the recognition of revenue for the majority of the Company's product subscription offerings and enterprise arrangements. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">One impact of the new standard relates to product subscriptions that do not incorporate substantial cloud functionality. A limited number of Autodesk's product subscriptions do not incorporate substantial cloud functionality, and therefore are not considered highly interrelated. Under ASU 2014-09, these limited number of product subscriptions are recognized as separate and distinct license and service performance obligations. Under ASC Topic 605, licenses sold with undelivered elements without VSOE are recognized ratably over the term of the undelivered elements. Under ASC Topic 606, Autodesk is no longer required to establish VSOE to recognize software license revenue separately from the other elements and recognizes software licenses once the customer obtains control of the license, which is generally upon delivery of the license. Therefore, revenue allocated to the licenses in these offerings under Topic 606 is recognized at a point in time instead of over the contract term. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk adopted ASC Topic 606 using the modified retrospective method, with a cumulative decrease of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q4YTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e603-wk-Fact-4B168A9668EB05F9FD62B73C22B1AF8D" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">87.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> to the opening balance of "Accumulated deficit" at February 1, 2018. Autodesk applied the standard only to contracts that are not completed as of the date of initial application. The comparative information has not been adjusted and continues to be reported under ASC Topic 605. The details of the quantitative impact of the adoption on the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, are shown below. See Note </span><span style="font-family:inherit;font-size:10pt;">3</span><span style="font-family:inherit;font-size:10pt;">, "</span><span style="font-family:inherit;font-size:10pt;">Revenue Recognition</span><span style="font-family:inherit;font-size:10pt;">" for disclosures under the new standard.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Costs to acquire a contract from a customer</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">With the adoption of Topic 606, Autodesk also adopted Topic 340-40, "Other Assets and Deferred Costs—Contracts with Customers." Prior to the adoption of Topic 340-40, Autodesk previously recognized compensation paid to sales employees and certain resellers related to obtaining customer contracts in marketing and sales expense in the consolidated statements of operations when incurred. Under Topic 340-40, Autodesk capitalizes this sales compensation as contract costs when they are incremental, directly incurred to obtain a contract with a customer and expected to be recoverable. The contract costs are amortized based on the transfer of goods or services to which the contract costs relate.</span></div></ix:continuation><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation continuedat="TextSelection-825092606C72867EE0A5DBD4FAA5A704-0" id="TextSelection-EE38A9A0B8FB5FFEB7547E05BCAB865F-3"><br/></ix:continuation></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Under the modified retrospective method, Autodesk booked a cumulative decrease of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2018Q4_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e639-wk-Fact-3FB86665052D1BF042C2B73697660955" name="us-gaap:CapitalizedContractCostNet" scale="6" unitref="usd">90.4</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> to the opening balance of "Accumulated deficit" at February 1, 2018. The comparative information has not been adjusted and continues to be reported as incurred. The details of the quantitative impact of the adoption on the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, are shown below. See Note </span><span style="font-family:inherit;font-size:10pt;">10</span><span style="font-family:inherit;font-size:10pt;">, "</span><span style="font-family:inherit;font-size:10pt;">Deferred Compensation</span><span style="font-family:inherit;font-size:10pt;">" for disclosures under the new standard.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">8</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-B956A8CBECDA5A668086297D7D550FAC-4" id="TextSelection-B956A8CBECDA5A668086297D7D550FAC-3"><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Quantitative effect of ASC Topic 606 and 340-40 adoption </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-355307D3ACB25980F85AB75D14A773EE-1" escape="true" id="TextSelection-355307D3ACB25980F85AB75D14A773EE-0-wk-Fact-D95B44686FDC47B23469B76149A10E11" name="us-gaap:ScheduleOfNewAccountingPronouncementsAndChangesInAccountingPrinciplesTextBlock">The following table shows select line items that were materially impacted by the adoption of ASC Topics 606 and 340-40 on Autodesk’s unaudited Condensed Consolidated Statements of Operations for the </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-355307D3ACB25980F85AB75D14A773EE-2" id="TextSelection-355307D3ACB25980F85AB75D14A773EE-1"><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">:</span></ix:continuation></div><ix:continuation continuedat="TextSelection-355307D3ACB25980F85AB75D14A773EE-3" id="TextSelection-355307D3ACB25980F85AB75D14A773EE-2"><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;text-indent:0px;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:99.90243902439025%;border-collapse:collapse;text-align:left;"><tr><td colspan="12"></td></tr><tr><td style="width:68%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">As Reported</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Impact from the adoption of ASC 606 and 340-40</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">As Adjusted</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net revenue (1)</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Subscription</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e840-wk-Fact-A0CEEA13AC6953DE97A8DB6285F15DF8" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">350.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member_us-gaap_ProductOrServiceAxis_adsk_SubscriptionRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e859-wk-Fact-18AFFD523BA07843329AD5FA206E2186" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" sign="-" unitref="usd">6.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member_us-gaap_ProductOrServiceAxis_adsk_SubscriptionRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e878-wk-Fact-5FD3F2C23DC3A1019C5283C0F5749E07" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">356.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_MaintenanceRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e894-wk-Fact-3E22424CA7B75C34A760C04F5340C923" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">181.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member_us-gaap_ProductOrServiceAxis_adsk_MaintenanceRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e913-wk-Fact-7FB2B1711123441AE19E83C0F010202A" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" sign="-" unitref="usd">5.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member_us-gaap_ProductOrServiceAxis_adsk_MaintenanceRevenueMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e932-wk-Fact-0C754BA1354FE3029D7783C0F28799F0" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">186.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e953-wk-Fact-EE045107A9E25C709E839D3B4CB38298" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">28.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e972-wk-Fact-7E7AE4895696A3E3A45B83C0F96D33A9" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" sign="-" unitref="usd">1.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e991-wk-Fact-44675AD2371893A2917D83C0FB4F881D" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">30.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of revenue (1)</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of maintenance and subscription revenue</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1074-wk-Fact-02F0CD0AC87C5BD68D12B112F9ECA7E0" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">50.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1093-wk-Fact-901FC5F1BFFEEBF2A6D083C102986D35" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">0.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member_us-gaap_ProductOrServiceAxis_adsk_SubscriptionandMaintenanceMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1113-wk-Fact-C86A54C43BF123F0011583C105A96097" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">50.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of other revenue</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1134-wk-Fact-26E8D92002065035AD98E9C1666E3053" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">12.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1153-wk-Fact-8FC0FCAA3A210770AC6983C1087BEF51" name="us-gaap:CostOfRevenue" scale="6" sign="-" unitref="usd">0.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member_us-gaap_ProductOrServiceAxis_adsk_LicenseandOtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1172-wk-Fact-23D9B5F6147265BF4B7583C10B65DA51" name="us-gaap:CostOfRevenue" scale="6" unitref="usd">13.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Operating expenses (1):</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Marketing and sales</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1255-wk-Fact-317B730EF9425392A4A78890B72103BC" name="us-gaap:SellingAndMarketingExpense" scale="6" unitref="usd">276.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1274-wk-Fact-98AC38D2F5EF708E014683C119EA18C5" name="us-gaap:SellingAndMarketingExpense" scale="6" unitref="usd">13.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1294-wk-Fact-6DD53CCE2FD552962C5383C11BDD2BF5" name="us-gaap:SellingAndMarketingExpense" scale="6" unitref="usd">262.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Provision for income taxes</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1315-wk-Fact-B3E7B4EA4D735B2299F70D54BFA5BC76" name="us-gaap:IncomeTaxExpenseBenefit" scale="6" unitref="usd">18.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1335-wk-Fact-907DF1C4D097B42386A983C13C30CF6F" name="us-gaap:IncomeTaxExpenseBenefit" scale="6" sign="-" unitref="usd">4.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1355-wk-Fact-360554976567D203204183C13F287238" name="us-gaap:IncomeTaxExpenseBenefit" scale="6" unitref="usd">23.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net loss (2)</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1383-wk-Fact-7DB57A633404584E8398CE6B5AE802E6" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">82.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1403-wk-Fact-8992C93B8B4058C5C1D283C14121EA74" name="us-gaap:NetIncomeLoss" scale="6" unitref="usd">22.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1422-wk-Fact-52C929058E827CEB93F983C142A40078" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">60.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Basic net loss per share</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9830228e1444-wk-Fact-09E006D6ABDC54B98FF59E0588DBA1C9" name="us-gaap:EarningsPerShareBasic" scale="0" sign="-" unitref="usdPerShare">0.38</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="2" format="ixt:numdotdecimal" id="d9830228e1464-wk-Fact-19358DBF9CD46480E2E683C14345E220" name="us-gaap:EarningsPerShareBasic" scale="0" unitref="usdPerShare">0.11</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="2" format="ixt:numdotdecimal" id="d9830228e1483-wk-Fact-AD312D9D8D4FC5E67A3583C1450C3920" name="us-gaap:EarningsPerShareBasic" scale="0" sign="-" unitref="usdPerShare">0.27</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Diluted net loss per share</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9830228e1505-wk-Fact-C45F58502C2D503594ED047F32F32B89" name="us-gaap:EarningsPerShareDiluted" scale="0" sign="-" unitref="usdPerShare">0.38</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="2" format="ixt:numdotdecimal" id="d9830228e1525-wk-Fact-40892FC3FAFDB7BDF35A83C1460D08D5" name="us-gaap:EarningsPerShareDiluted" scale="0" unitref="usdPerShare">0.11</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="2" format="ixt:numdotdecimal" id="d9830228e1544-wk-Fact-7652B566FDB2955DEFAE83C14A544B7A" name="us-gaap:EarningsPerShareDiluted" scale="0" sign="-" unitref="usdPerShare">0.27</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">____________________ </span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">While not shown here, gross margin, loss from operations, and loss before income taxes have consequently been effected as a result of the net effect of the adjustments noted above.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">The impact on the unaudited Condensed Consolidated Statements of Comprehensive Loss is limited to the net effects of the impacts noted above on the Condensed Consolidated Statements of Operations, specifically on the line item "Net loss." </span></div></td></tr></table><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The following table shows select line item that were materially impacted by the adoption of ASC Topic 606 and 340-40 on Autodesk’s unaudited Condensed Consolidated Balance Sheet as of April 30, 2018:</span></div><div style="line-height:120%;text-align:center;text-indent:0px;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="12"></td></tr><tr><td style="width:68%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">As reported</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Impact from the adoption of ASC 606 and 340-40</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">As Adjusted</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-weight:bold;">ASSETS</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Current assets:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> Accounts receivable, net</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1795-wk-Fact-1C23AA231EF0551F88BB1BCA42BE1784" name="us-gaap:AccountsReceivableNetCurrent" scale="6" unitref="usd">206.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1814-wk-Fact-189CCCB99D648A6927A783CD8AB8B911" name="us-gaap:AccountsReceivableNetCurrent" scale="6" sign="-" unitref="usd">67.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1833-wk-Fact-4B81D913B15B5AA4165883CD8CA57B87" name="us-gaap:AccountsReceivableNetCurrent" scale="6" unitref="usd">274.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> Prepaid expenses and other current assets (1)</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1849-wk-Fact-BA48E9A13D75540A9FFEEE491D12169E" name="us-gaap:PrepaidExpenseAndOtherAssetsCurrent" scale="6" unitref="usd">198.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1868-wk-Fact-CE86D473F5B403F9321E83CD90FF9ACC" name="us-gaap:PrepaidExpenseAndOtherAssetsCurrent" scale="6" unitref="usd">77.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1888-wk-Fact-FF3A948D5D263168326183CD92F3D3A0" name="us-gaap:PrepaidExpenseAndOtherAssetsCurrent" scale="6" unitref="usd">121.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Deferred income taxes, net</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1909-wk-Fact-E02AAB5B37A25C0EA2E2C481C1753485" name="us-gaap:DeferredIncomeTaxAssetsNet" scale="6" unitref="usd">67.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1928-wk-Fact-B66242C1409E5EAA969083CDA72765D6" name="us-gaap:DeferredIncomeTaxAssetsNet" scale="6" sign="-" unitref="usd">10.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1947-wk-Fact-A5B2989872E46C2033F283CDAAC88D00" name="us-gaap:DeferredIncomeTaxAssetsNet" scale="6" unitref="usd">77.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other assets (1)</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1968-wk-Fact-3FFE9ABC3C845E47BF75EDC187ECA113" name="us-gaap:OtherAssetsNoncurrent" scale="6" unitref="usd">188.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e1987-wk-Fact-76EA2DBEE049F3F5F56383CDAE9E9221" name="us-gaap:OtherAssetsNoncurrent" scale="6" unitref="usd">21.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2007-wk-Fact-ADDD489171E4B528C26983CDB13A086E" name="us-gaap:OtherAssetsNoncurrent" scale="6" unitref="usd">167.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-weight:bold;">LIABILITIES AND STOCKHOLDERS’ DEFICIT</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Current liabilities:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> Accrued income taxes</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2150-wk-Fact-1F2D54FD564A514CA575296287D7BA20" name="us-gaap:AccruedIncomeTaxesCurrent" scale="6" unitref="usd">24.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2169-wk-Fact-3E5007DF7DC33F62E9CAB754FEDF5915" name="us-gaap:AccruedIncomeTaxesCurrent" scale="6" sign="-" unitref="usd">2.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2188-wk-Fact-216F08DF66758D0E6555B754FEE61DE8" name="us-gaap:AccruedIncomeTaxesCurrent" scale="6" unitref="usd">27.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> Deferred revenue</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2209-wk-Fact-2948ED27CE1755DEA3E04DD9D8526FFC" name="us-gaap:ContractWithCustomerLiabilityCurrent" scale="6" unitref="usd">1,469.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2228-wk-Fact-760B3B2FA30BE9F977D983CDC4F4FA42" name="us-gaap:ContractWithCustomerLiabilityCurrent" scale="6" sign="-" unitref="usd">103.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2247-wk-Fact-EC40840F6B0F6DCCDDB983CDC855F536" name="us-gaap:ContractWithCustomerLiabilityCurrent" scale="6" unitref="usd">1,572.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> Other accrued liabilities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2269-wk-Fact-3D5A874ACDD55F6683DD4F31783868E4" name="us-gaap:OtherAccruedLiabilitiesCurrent" scale="6" unitref="usd">127.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2288-wk-Fact-E2B5C6F984239FFBB03E83CDCF2CD753" name="us-gaap:OtherAccruedLiabilitiesCurrent" scale="6" sign="-" unitref="usd">2.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2307-wk-Fact-EB308ED57F65725480AE83CDD1216701" name="us-gaap:OtherAccruedLiabilitiesCurrent" scale="6" unitref="usd">129.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Long-term deferred revenue</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2328-wk-Fact-768F30CB243654739259276ABF1DDA4C" name="us-gaap:ContractWithCustomerLiabilityNoncurrent" scale="6" unitref="usd">337.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2347-wk-Fact-C9B3DC0883CFA63FD35B83CDD50714BF" name="us-gaap:ContractWithCustomerLiabilityNoncurrent" scale="6" sign="-" unitref="usd">33.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2366-wk-Fact-358EF481FF0A1093374483CDD6FB59F4" name="us-gaap:ContractWithCustomerLiabilityNoncurrent" scale="6" unitref="usd">370.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Long-term income taxes payable</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2387-wk-Fact-EACEBCF369C55370BE60C14C5E7BD297" name="us-gaap:AccruedIncomeTaxesNoncurrent" scale="6" unitref="usd">41.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2406-wk-Fact-A8088FB2370D204E701284BBF6D8416B" name="us-gaap:AccruedIncomeTaxesNoncurrent" scale="6" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2426-wk-Fact-BFD83F3547C94284036984BBF6D3F881" name="us-gaap:AccruedIncomeTaxesNoncurrent" scale="6" unitref="usd">41.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Long-term deferred income taxes </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2447-wk-Fact-170D62A022E854F7835D33A24CD82B8B" name="us-gaap:DeferredIncomeTaxLiabilitiesNet" scale="6" unitref="usd">84.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2466-wk-Fact-E396334F6AF3159E3D5083CDDAE35D56" name="us-gaap:DeferredIncomeTaxLiabilitiesNet" scale="6" unitref="usd">5.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2486-wk-Fact-E5379D56BA5A035F423283CDDCD67D7C" name="us-gaap:DeferredIncomeTaxLiabilitiesNet" scale="6" unitref="usd">79.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Accumulated deficit (2)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2507-wk-Fact-65FA95541A935F75B0C4ED32B535C58F" name="us-gaap:RetainedEarningsAccumulatedDeficit" scale="6" sign="-" unitref="usd">1,995.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2527-wk-Fact-7F13BDB5F9C54D74B71A83CDEF43F0CF" name="us-gaap:RetainedEarningsAccumulatedDeficit" scale="6" unitref="usd">155.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2547-wk-Fact-8B9256496C53997200C683CDF139F58A" name="us-gaap:RetainedEarningsAccumulatedDeficit" scale="6" sign="-" unitref="usd">2,151.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________ </span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Short term and long term "contract assets" under ASC Topic 606 are included within "Prepaid expenses and other current assets" and "Other assets", respectively, on the unaudited Condensed Consolidated Balance Sheet.</span></div></td></tr></table></ix:continuation><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><ix:continuation continuedat="TextSelection-355307D3ACB25980F85AB75D14A773EE-4" id="TextSelection-355307D3ACB25980F85AB75D14A773EE-3"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></ix:continuation></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><ix:continuation continuedat="TextSelection-355307D3ACB25980F85AB75D14A773EE-5" id="TextSelection-355307D3ACB25980F85AB75D14A773EE-4"><span style="font-family:inherit;font-size:9pt;">Included in the "Accumulated deficit" adjustment is </span><span style="font-family:inherit;font-size:9pt;"><span>$<ix:nonfraction contextref="FI2018Q4_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="-5" format="ixt:numdotdecimal" id="d9830228e2578-wk-Fact-5DB1C731B8E50D5E761CB7336778123F" name="us-gaap:RetainedEarningsAccumulatedDeficit" scale="6" unitref="usd">178.0</ix:nonfraction> million</span></span></ix:continuation><span style="font-family:inherit;font-size:9pt;"><ix:continuation id="TextSelection-355307D3ACB25980F85AB75D14A773EE-5"> for the cumulative effect adjustment of adopting ASC Topic 606 and 340-40 on the opening balance as of February 1, 2018.</ix:continuation></span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">9</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-B956A8CBECDA5A668086297D7D550FAC-5" id="TextSelection-B956A8CBECDA5A668086297D7D550FAC-4"><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Adoption of the standard had no impact to net cash (used in) or provided by operating, financing, or investing activities on the Company’s unaudited Condensed Consolidated Statements of Cash Flows.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;text-decoration:underline;"><ix:continuation continuedat="TextSelection-825092606C72867EE0A5DBD4FAA5A704-1" id="TextSelection-825092606C72867EE0A5DBD4FAA5A704-0">Recently issued accounting standards not yet adopted</ix:continuation></span></div><ix:continuation continuedat="TextSelection-825092606C72867EE0A5DBD4FAA5A704-2" id="TextSelection-825092606C72867EE0A5DBD4FAA5A704-1"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In February 2018, FASB issued Accounting Standards Update No. 2018-02 (“ASU 2018-02”), “Income Statement-Reporting Comprehensive Income (Topic 220): Reclassification of Certain Tax Effects from Accumulated Other Comprehensive Income.” The amendment allows entities to reclassify stranded tax effects resulting from the Tax Cuts and Jobs Act from accumulated other comprehensive income to retained earnings. The amendment only impacts the income tax effect of the passage of the Tax Cuts and Jobs Act but does not affect the underlying guidance that requires that the effect of a change in tax laws or rates be included in income from continuing operations. The amendment is effective for Autodesk's fiscal year beginning February 1, 2019, unless Autodesk elects early adoption, which Autodesk is still evaluating. Autodesk is currently evaluating the accounting, transition, and disclosure requirements of the standard and cannot currently estimate the financial statement impact of adoption.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In August 2017, FASB issued Accounting Standards Update No. 2017-12 ("ASU 2017-12"), "Derivatives and Hedging (Topic 815): Targeted Improvements to Accounting for Hedging Activities." The targeted amendments help simplify certain aspects of hedge accounting and result in a more accurate portrayal of the economics of an entity’s risk management activities in its financial statements. For cash flow and net investment hedges as of the adoption date, the guidance requires a modified retrospective approach. The amended presentation and disclosure guidance is required only prospectively. The amendments are effective for Autodesk's fiscal year beginning February 1, 2019, with early adoption permitted. Autodesk is currently evaluating the accounting, transition, and disclosure requirements of the standard and cannot currently estimate the financial statement impact of adoption.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In June 2016, FASB issued Accounting Standards Update No. 2016-13 ("ASU 2016-13") regarding ASC Topic 326, "Financial Instruments - Credit Losses," which modifies the measurement of expected credit losses of certain financial instruments. Autodesk plans to adopt ASU 2016-13 as of the effective date which represents Autodesk’s fiscal year beginning February 1, 2020. Autodesk does not believe the ASU will have a material impact on its consolidated financial statements.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation></ix:continuation><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-B956A8CBECDA5A668086297D7D550FAC-5"><ix:continuation id="TextSelection-825092606C72867EE0A5DBD4FAA5A704-2">In February 2016, FASB issued Accounting Standards Update No. 2016-02 ("ASU 2016-02") regarding ASC Topic 842, "Leases." The amendments in this ASU require balance sheet recognition of lease assets and lease liabilities by lessees for leases classified as operating leases, with an optional policy election to not recognize lease assets and lease liabilities for leases with a term of 12 months or less. The amendments also require new disclosures, including qualitative and quantitative requirements, providing additional information about the amounts recorded in the financial statements. Autodesk plans to adopt ASU 2016-02 in Autodesk’s fiscal year beginning February 1, 2019. The amendments require a modified retrospective approach with optional practical expedients. Autodesk is currently evaluating the accounting, transition, and disclosure requirements of the standard and cannot currently estimate the financial statement impact of adoption.</ix:continuation></ix:continuation></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sad99725e457644a995f770bda321026c"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">3</span><span style="font-family:inherit;font-size:10pt;">. <ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-1" escape="true" id="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-0-wk-Fact-61ECB8B6362B65FD9CE683F46F3C72A7" name="us-gaap:RevenueFromContractWithCustomerTextBlock"> </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-2" id="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-1"><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">Revenue Recognition</span><span style="font-family:inherit;font-size:10pt;"> </span></ix:continuation></div><ix:continuation continuedat="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-3" id="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-2"><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Revenue Recognition </span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:justify;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk’s revenue is divided into three categories: subscription revenue, maintenance revenue, and other revenue. Revenue is recognized when control for these offerings is transferred to our customers, in an amount that reflects the consideration we expect to be entitled to in exchange for products and services. </span></div><div style="line-height:120%;text-align:justify;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:justify;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our contracts with customers may include promises to transfer multiple products and services to a customer. Determining whether the products and services are considered distinct performance obligations that should be accounted for separately or as one combined performance obligation may require significant judgment. Judgment is required to determine the level of integration and interdependency between individual components of software and cloud functionality. This determination influences whether the software is considered distinct and accounted for separately as a license performance obligation, or not distinct and accounted for together with the cloud functionality as a single subscription performance obligation recognized over time. Certain of our contracts with customers contain multiple performance obligations that are accounted as a single performance obligation because they are part of a series of distinct good and services that are substantially the same and have the same pattern of transfer to the customer.</span></div><div style="line-height:120%;text-align:justify;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">10</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-4" id="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-3"><div style="line-height:120%;text-align:justify;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">For bundled contracts with more than one performance obligation, the transaction price is allocated among the performance obligations in an amount that depicts the relative standalone selling prices ("SSP") of each obligation. Judgment is required to determine the SSP for each distinct performance obligation. We use a range of amounts to estimate SSP when we sell each of the products and services separately and need to determine whether there is a discount that should be allocated based on the relative SSP of the various products and services. </span></div><div style="line-height:120%;text-align:justify;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:justify;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In instances where SSP is not directly observable, such as when we do not sell the product or service separately, we determine the SSP using information that includes market conditions and other observable inputs. We typically have more than one SSP for individual products and services due to the stratification of those products and services by customer and circumstance. In these instances, we use relevant information such as the sales channel and geographic region to determine the SSP.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our indirect channel model includes both a two-tiered distribution structure, where Autodesk sells to distributors who subsequently sells to resellers, and a one-tiered structure where Autodesk sells directly to resellers. For these arrangements, transfer of control begins at the time access to our subscriptions is made available electronically, provided all other criteria for revenue recognition are met. Judgment is required to determine whether our distributors and resellers have the ability to honor their commitment to pay, regardless of whether they collect payment from their customers. If we were to change this assessment, it could cause a material increase or decrease in the amount of revenue that we report in a particular period.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As part of the indirect channel model, we have a partner incentive program that uses quarterly attainment of monetary rewards to motivate distributors and resellers to achieve mutually agreed upon business goals in a specified time period. Incentives related to our subscription program are recorded as a reduction to deferred revenue in the period the subscription transaction is billed, and are subsequently recognized as a reduction to subscription revenue over the contract period. A small portion of partner incentives reduce other revenue in the current period. These incentive balances do not require significant assumptions or judgments. Depending on how the payments are made, the reserves associated with the partner incentive program are recorded on the balance sheet as either contra account receivable or accounts payable.</span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Revenue Disaggregation</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk recognizes revenue from the sale of (1) product subscriptions, cloud service offerings, and flexible enterprise business arrangements ("EBAs"), (2) renewal fees for existing maintenance plan agreements that were initially purchased with a perpetual software license, and (3) consulting, training and other goods and services. The three categories are presented as line items on Autodesk's unaudited Consolidated Statements of Operations. </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">11</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-5" id="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-4"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-AF9B73CBBCDB1B46F7B683F4D749CD28-1" escape="true" id="TextSelection-AF9B73CBBCDB1B46F7B683F4D749CD28-0-wk-Fact-04CD897B1762922EE9D583F5416FCA6E" name="us-gaap:DisaggregationOfRevenueTableTextBlock">Information regarding the components of Autodesk's net revenue from contracts with customers by geographic location, product family, and sales channel is as follows:</ix:nonnumeric></span></div><ix:continuation continuedat="TextSelection-AF9B73CBBCDB1B46F7B683F4D749CD28-2" id="TextSelection-AF9B73CBBCDB1B46F7B683F4D749CD28-1"><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:99.90243902439025%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:79%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net revenue by geographic area:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Americas</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">U.S.</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_country_US" decimals="-5" format="ixt:numdotdecimal" id="d9827830e751-wk-Fact-F60FAE90E51E6FB5C09383F80A0EEDDE" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">195.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_country_US" decimals="-5" format="ixt:numdotdecimal" id="d9827830e770-wk-Fact-9371D3DDAF222F4F2CFD83F80BBB044D" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">179.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other Americas</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_adsk_OtherAmericasMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e785-wk-Fact-2C55EC691DF82D891E8183F8095387C5" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">37.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_adsk_OtherAmericasMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e804-wk-Fact-C0C19203ADDEBA86E6A783F80B5856C2" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">30.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total Americas</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_AmericasMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e824-wk-Fact-CC2E6293619EE9C2032A83F809728A96" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">233.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_AmericasMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e843-wk-Fact-F0E60FEE3F9E76086FDE83F80F4581C2" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">210.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Europe, Middle East and Africa</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_EMEAMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e863-wk-Fact-D12F62B57E75FF4DBB4183F80AC0F4AC" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">220.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_EMEAMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e882-wk-Fact-95989451D4A1C456AE2583F80F72C67F" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">189.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Asia Pacific</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_AsiaPacificMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e902-wk-Fact-751FE8FD990CE915D67F83F80B6C4EBA" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">105.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_StatementGeographicalAxis_us-gaap_AsiaPacificMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e921-wk-Fact-A6745A16D32B19F995B283F80FA3085D" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">85.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total net revenue</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9827830e946-wk-Fact-B4537E6389D65947ACBD5D7971DA5A99" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">559.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9827830e965-wk-Fact-AB652C68F4CD53D58DA4F241C9EA0B5B" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">485.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net revenue by product family (1):</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Architecture, Engineering and Construction </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_ArchitectureEngineeringAndConstructionMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1068-wk-Fact-501423FFE0546B10209383F80D5F012A" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">221.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_ArchitectureEngineeringAndConstructionMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1087-wk-Fact-8D1131015B0860DC516E83F80953028F" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">185.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Manufacturing</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_ManufacturingMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1102-wk-Fact-1F1111D2F954B48BCA9583F80FD74735" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">135.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_ManufacturingMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1121-wk-Fact-7038ECE9D792C74CC30583F813333876" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">128.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">AutoCAD and AutoCAD LT</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_AutoCADandAutoCADLTFamilyMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1141-wk-Fact-966EFFE7C91BB8698D9F83F809CF8466" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">155.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_AutoCADandAutoCADLTFamilyMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1160-wk-Fact-838622A706694A3E461E83F80C4FC93F" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">129.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Media and Entertainment</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_MediaAndEntertainmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1180-wk-Fact-BCBE16F64D9122AF28D883F80953562F" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">41.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_MediaAndEntertainmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1199-wk-Fact-1A013FD719F7F570D2A783F80B8321BA" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">36.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ProductOrServiceAxis_adsk_OtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1219-wk-Fact-94C9698C0823583544FA83F80943FAEF" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">5.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ProductOrServiceAxis_adsk_OtherMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1238-wk-Fact-EF6BD04B64DE32AE661083F8095376C8" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">6.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total net revenue</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1263-wk-Fact-B4537E6389D65947ACBD5D7971DA5A99" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">559.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1282-wk-Fact-AB652C68F4CD53D58DA4F241C9EA0B5B" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">485.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net revenue by sales channel:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Indirect</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ContractWithCustomerSalesChannelAxis_us-gaap_SalesChannelThroughIntermediaryMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1384-wk-Fact-0B16C73203DA4FF34EFA83F80AEFE9A2" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">398.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ContractWithCustomerSalesChannelAxis_us-gaap_SalesChannelThroughIntermediaryMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1403-wk-Fact-E416068A8E9F4F81F4CC83F814E3CDC1" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">340.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Direct</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ContractWithCustomerSalesChannelAxis_us-gaap_SalesChannelDirectlyToConsumerMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1418-wk-Fact-4C1F69F1B95078866C6183F80E6C4DCD" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">161.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_ContractWithCustomerSalesChannelAxis_us-gaap_SalesChannelDirectlyToConsumerMember" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1437-wk-Fact-304ED1B28D8F6CAEFD2583F814438BAA" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">145.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total net revenue</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1463-wk-Fact-B4537E6389D65947ACBD5D7971DA5A99" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">559.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1482-wk-Fact-AB652C68F4CD53D58DA4F241C9EA0B5B" name="us-gaap:RevenueFromContractWithCustomerExcludingAssessedTax" scale="6" unitref="usd">485.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div><span style="font-family:inherit;font-size:10pt;">____________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Due to changes in the go-to-market offerings of our AutoCAD product subscription, prior period balances have been adjusted to conform to current period presentation.</span></div></td></tr></table></ix:continuation><div style="line-height:120%;padding-left:4px;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><ix:continuation id="TextSelection-AF9B73CBBCDB1B46F7B683F4D749CD28-2"><br/></ix:continuation></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Performance Obligations</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">For product subscriptions, industry collections, and EBAs in which the desktop software and related cloud functionality are highly interrelated, the combined performance obligation is recognized ratably over the contract term as a stand-ready obligation. For contracts involving distinct software licenses, the license performance obligation is satisfied at a point in time when control is transferred to the customer. For standalone maintenance subscriptions and cloud subscriptions, the performance obligation is satisfied ratably over the contract term as a stand-ready obligation. For consulting services, the performance obligation may be satisfied ratably over the contract term as a stand-ready obligation, or satisfied over a period of time as those services are delivered.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Payments for product subscriptions, industry collections, cloud subscriptions, and maintenance subscriptions are typically due up front with payment terms of 30 to 45 days. Payments on EBAs are typically due in annual installments over the contract term, with payment terms of 30 to 45 days. Autodesk does not have any material variable consideration, such as obligations for returns, refunds, or warranties as of the reporting date. </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk had total billed and unbilled deferred revenue of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_nil" decimals="-8" format="ixt:numdotdecimal" id="d9827830e1522-wk-Fact-7A3FFD7543C301586189BC2EC990E4F8" name="us-gaap:RevenueRemainingPerformanceObligation" scale="9" unitref="usd">2.2</ix:nonfraction> billion</span></span><span style="font-family:inherit;font-size:10pt;">, which represents the total contract price allocated to undelivered performance obligations, which are generally recognized over the next three years. We expect to recognize </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2018-01-05" decimals="-8" format="ixt:numdotdecimal" id="d9827830e1526-wk-Fact-30CB9290966EF61FF1A8AD7D4946B551" name="us-gaap:RevenueRemainingPerformanceObligation" scale="9" unitref="usd">1.6</ix:nonfraction> billion</span></span><span style="font-family:inherit;font-size:10pt;"> or </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2018-01-05" decimals="2" format="ixt:numdotdecimal" id="d9827830e1530-wk-Fact-1018F83DB57F5953B623AD849E72E1C9" name="adsk:RevenueRemainingPerformanceObligationPercentage" scale="-2" unitref="number">72</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> of this revenue during the next 12 months. We expect to recognize the remaining </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2019-01-05" decimals="-8" format="ixt:numdotdecimal" id="d9827830e1534-wk-Fact-5F5343E5232C5E14F300AD7D584EA0AF" name="us-gaap:RevenueRemainingPerformanceObligation" scale="9" unitref="usd">0.6</ix:nonfraction> billion</span></span><span style="font-family:inherit;font-size:10pt;"> or </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis_us-gaap_RevenueRemainingPerformanceObligationExpectedTimingOfSatisfactionStartDateAxis.domain_2019-01-05" decimals="2" format="ixt:numdotdecimal" id="d9827830e1539-wk-Fact-96E086A3CA0432321A1DAD86081AA295" name="adsk:RevenueRemainingPerformanceObligationPercentage" scale="-2" unitref="number">28</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> of this revenue thereafter.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We expect that the amount of billed and unbilled deferred revenue will change from quarter to quarter for several reasons, including the specific timing, duration and size of large customer subscription and support agreements, varying billing cycles of such agreements, the specific timing of customer renewals, and foreign currency fluctuations.</span><span style="font-family:inherit;font-size:10pt;"> </span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">12</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-6" id="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-5"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Contract Balances </span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We receive payments from customers based on a billing schedule as established in our contracts. Contract assets relate to performance completed in advance of scheduled billings. Contract assets were not material as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. Deferred revenue relates to payments received in advance of performance under the contract. The primary changes in our contract assets and deferred revenues are due to our performance under the contracts and billings. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><ix:continuation continuedat="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-7" id="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-6"><span style="font-family:inherit;font-size:10pt;">Revenue recognized during the three months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, that was included in the deferred revenue balances at the beginning of the period, was </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9827830e1574-wk-Fact-926EB60FC93D261FDE02AD78165B11F4" name="us-gaap:ContractWithCustomerLiabilityRevenueRecognized" scale="6" unitref="usd">493.8</ix:nonfraction> million</span></span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-17CB8E02EC1F65858A4783F3BFEF599E-7">. The satisfaction of performance obligations typically lags behind payments received under revenue contracts from customers, which may lead to an increase in our deferred revenue balance over time.</ix:continuation></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sEF747FE3AAB35444B4A75B9F7ED1B147"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">4</span><span style="font-family:inherit;font-size:10pt;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-1D6067487E7B5920AA1094BCCF7558F3-1" escape="true" id="TextSelection-1D6067487E7B5920AA1094BCCF7558F3-0-wk-Fact-6E20338709615E748CCB8B89CF504B5B" name="us-gaap:ConcentrationRiskDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Concentration of Credit Risk</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-1D6067487E7B5920AA1094BCCF7558F3-2" id="TextSelection-1D6067487E7B5920AA1094BCCF7558F3-1"><div style="line-height:120%;text-indent:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk places its cash, cash equivalents and marketable securities in highly liquid instruments with, and in the custody of, diversified financial institutions globally with high credit ratings and limits the amounts invested with any one institution, type of security and issuer. Autodesk’s primary commercial banking relationship is with Citigroup Inc. and its global affiliates. Citibank, N.A., an affiliate of Citigroup, is one of the lead lenders and an agent in the syndicate of Autodesk’s </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="INF" format="ixt:numdotdecimal" id="d9827880e514-wk-Fact-66B406ADFD2059CAAA00E9245C94FBC8" name="us-gaap:LineOfCreditFacilityMaximumBorrowingCapacity" scale="6" unitref="usd">400.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> line of credit facility. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-indent:30px;font-size:10pt;"><ix:continuation continuedat="TextSelection-1D6067487E7B5920AA1094BCCF7558F3-3" id="TextSelection-1D6067487E7B5920AA1094BCCF7558F3-2"><span style="font-family:inherit;font-size:10pt;">Total sales to the distributor Tech Data Corporation and its global affiliates (“Tech Data”) accounted for </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_ConcentrationRiskByBenchmarkAxis_us-gaap_SalesRevenueNetMember_us-gaap_MajorCustomersAxis_adsk_TechDataMember" decimals="2" format="ixt:numdotdecimal" id="d9827880e523-wk-Fact-C67629BC5FD0764D4E74B1EBDAE652EE" name="us-gaap:ConcentrationRiskPercentage1" scale="-2" unitref="number">34</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_ConcentrationRiskByBenchmarkAxis_us-gaap_SalesRevenueNetMember_us-gaap_MajorCustomersAxis_adsk_TechDataMember" decimals="2" format="ixt:numdotdecimal" id="d9827880e527-wk-Fact-7AA18DE466F40297F6FDB1EBF1A3F733" name="us-gaap:ConcentrationRiskPercentage1" scale="-2" unitref="number">30</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> of Autodesk’s total net revenue for the </span><span style="font-family:Times New Roman;">three months ended</span><span style="font-family:inherit;font-size:10pt;"> </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, respectively. The majority of the net revenue from sales to Tech Data is for sales made outside of the United States. In addition, Tech Data accounted for </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_ConcentrationRiskByBenchmarkAxis_us-gaap_AccountsReceivableMember_us-gaap_MajorCustomersAxis_adsk_TechDataMember" decimals="2" format="ixt:numdotdecimal" id="d9827880e545-wk-Fact-E0665F4FDEBA50729A1D38ADAA99878C" name="us-gaap:ConcentrationRiskPercentage1" scale="-2" unitref="number">36</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2018Q4YTD_us-gaap_ConcentrationRiskByBenchmarkAxis_us-gaap_AccountsReceivableMember_us-gaap_MajorCustomersAxis_adsk_TechDataMember" decimals="2" format="ixt:numdotdecimal" id="d9827880e549-wk-Fact-FA798285EE375AA1B7FD0C3CA889916B" name="us-gaap:ConcentrationRiskPercentage1" scale="-2" unitref="number">31</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> of trade accounts receivable at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-1D6067487E7B5920AA1094BCCF7558F3-3">, respectively. No other customer accounted for more than 10% of Autodesk's total net revenue or trade accounts receivable for each of the respective periods.</ix:continuation></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">13</span></div></div><hr style="page-break-after:always"/><div><a id="s52A9545C5511575F9EDE93734916B94D"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">5</span><span style="font-family:inherit;font-size:10pt;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-1" escape="true" id="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-0-wk-Fact-F947209FF9A1545BB23E2D86DFD11A66" name="us-gaap:FinancialInstrumentsDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Financial Instruments</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-2" id="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-1"><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-1" escape="true" id="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-0-wk-Fact-534802E350DB5D94B9AE279D8A7A447B" name="adsk:CostAndFairValueOfFinancialInstrumentsTableTextBlock">The following tables summarize the Company's financial instruments' amortized cost, gross unrealized gains, gross unrealized losses, and fair value by significant investment category as of </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-2" id="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-1"><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">:</span></ix:continuation></div><ix:continuation continuedat="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-3" id="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-2"><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:99.90243902439025%;border-collapse:collapse;text-align:left;"><tr><td colspan="30"></td></tr><tr><td style="width:-4%;"></td><td style="width:2%;"></td><td style="width:33%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="27" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2018</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Amortized Cost</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Gross Unrealized Gains</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Gross Unrealized Losses</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Fair Value</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Level 1</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Level 2</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Level 3</span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cash equivalents (1):</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Certificates of deposit</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1047-wk-Fact-E2E30592601F591091BC3DD412A1F78C" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">12.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1105-wk-Fact-E54731CB2C425EF8AADF2D4D50A5180C" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">12.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:zerodash" id="d9845490e1124-wk-Fact-D5ECC08064AA524CBCE69B835BFDE282" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1144-wk-Fact-604B44D02CDB51DC88359121880EE91B" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">12.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:zerodash" id="d9845490e1163-wk-Fact-F5BCDE4055055EC9B4856125EC8FD5C4" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Commercial paper </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1193-wk-Fact-2F8F492720BE52669496CADC0C575C78" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">451.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1251-wk-Fact-057923E0FF6D517491C605C495A7F001" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">451.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:zerodash" id="d9845490e1270-wk-Fact-25B51924DF7D55729DDACACE2E72EEEE" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1290-wk-Fact-11672E437B8355CBB43EE8E5303CCC7E" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">451.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:zerodash" id="d9845490e1309-wk-Fact-8D7F2DAAB8795F1BAB65A8F7DA142DA7" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Custody cash deposit</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1339-wk-Fact-2F55CF6896D55D97B5090172205B54EB" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">2.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1397-wk-Fact-479A295B8584565A8F5EBD0571055A71" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">2.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1416-wk-Fact-D43C2BFADB775C1BAE0949885BF618E6" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">2.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:zerodash" id="d9845490e1436-wk-Fact-1CC270151BDD5C81997FEAF3364896B0" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:zerodash" id="d9845490e1455-wk-Fact-68203BDA908752548F493BE50DB720A4" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Municipal bonds</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1485-wk-Fact-D05A031A1E2A5B5A9B2F8ECFDC512E62" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1543-wk-Fact-72B3754D6F4453D18B7A25C93E0703F8" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e1562-wk-Fact-B9C44307263E5AF9A0A20C4ED35E519B" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1582-wk-Fact-03AF1078E6E45A9285E934438D83514B" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e1601-wk-Fact-EC4C2DBD9F4052DCAC9300B893EBAEC0" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Money market funds</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1631-wk-Fact-11462151E4B555B5B5817D81787732C1" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">175.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1689-wk-Fact-E9BED6F51F1C52B99E54B507D705E996" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">175.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1708-wk-Fact-4B4AFB896DB4580BB47AE7E483902AEE" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">175.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:zerodash" id="d9845490e1728-wk-Fact-8AFDE15E4435581F9DE9C58805B1E3C6" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:zerodash" id="d9845490e1747-wk-Fact-8575D00F1515570E84833212042E0429" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Sovereign debt</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1777-wk-Fact-6DD6E0AC79A1587ABEA806354026B1A5" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">11.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1835-wk-Fact-14B89F62B28E5B3EB92571B6E6EBB87F" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">11.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e1854-wk-Fact-2BB7816F0D7955749403A0635CCFE2DE" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1874-wk-Fact-28E1750C812E5B0CA223DADDCC61821A" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">11.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e1893-wk-Fact-886CF6946A2E5F43AFDEBC090692A63C" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">U.S. government securities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1923-wk-Fact-90B540FFB37057AFA4357A0C25525DC3" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">6.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e1981-wk-Fact-80622AA470CB54E88EA50C8F0E05B23E" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">6.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e2000-wk-Fact-68911C8EF3E25313B0525C501F36F4CB" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2020-wk-Fact-C97B5292FEF05DF597D7F3F8FC99AB0C" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">6.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e2039-wk-Fact-3616F12885095E98BE88457E6935D54E" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Marketable securities:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Short-term</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Asset backed securities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2376-wk-Fact-D8BDE80020415115B48CE3C4A27287F6" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">9.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e2395-wk-Fact-C97C8300799C6D91C16AB3B6DD03C83B" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e2415-wk-Fact-30675FC7942D5231B661F2FFFB3AE727" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2434-wk-Fact-76E7939FA3EE5B688EC3729C2569B141" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">9.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e2453-wk-Fact-FB6286A99B455E69B762B06447AB266D" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2473-wk-Fact-C5755F222A1E5F0C962371FEE01D7258" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">9.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e2492-wk-Fact-49E4B64C7CE55D3CB9BC4CFC18D9B86B" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Certificates of deposit</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2522-wk-Fact-58461D7CCA415378A4EE5CA55BA23D0C" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">3.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:zerodash" id="d9845490e2541-wk-Fact-E7AD59CC9534BA0356A6B3B6DD13AE68" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:zerodash" id="d9845490e2561-wk-Fact-9FB979CB89C3508C8E843D3C2BCE762F" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2580-wk-Fact-CCCCFEDB90E65DDABD0343869477147D" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">3.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:zerodash" id="d9845490e2599-wk-Fact-27FF923939E5559C82C96EB12C6737A1" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2619-wk-Fact-4C67DDD8AC125CD18B0E48DCDD5C5924" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">3.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:zerodash" id="d9845490e2638-wk-Fact-3233D1CCD4BA556E9340FDC6DC7EEFD5" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Corporate debt securities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2668-wk-Fact-D1B14F5E23EC59759639F9A799412397" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">83.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e2687-wk-Fact-57B8427B058BE32AD4ACB3B6DCEB035A" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2707-wk-Fact-F0B8AD17B66954DBA0B4B472A08A5033" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2727-wk-Fact-B458D0F2D8395773890F3F7BDDED5649" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">83.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e2746-wk-Fact-4C101C43314B5BF8B92FCF0132D80719" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2766-wk-Fact-1E7E40230B055E4BAC7888796925EA41" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">83.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e2785-wk-Fact-F638232F15795A868C2081CF90AB37B5" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Municipal bonds</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2815-wk-Fact-DF9B513F07BF57BD8DB1DF37F13D1035" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">4.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e2834-wk-Fact-7AFF8DD79F9D85D1B600B3B6DD1129A9" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e2854-wk-Fact-CC91D1E6ED675454960E3D33AE8A91DC" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2873-wk-Fact-02690C52CC5A549588304D5720D9CF78" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">4.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e2892-wk-Fact-E9EFB5EABD325352AB4307C70CAFF659" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2912-wk-Fact-22F80DC78A4B551096D95196209F2505" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">4.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e2931-wk-Fact-58D32F25EE2B5786A8F57314C771B710" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Sovereign debt</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e2961-wk-Fact-45275C5F205A53D9A577EE6BADA27846" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e2980-wk-Fact-1A027E6F96BDA15E1C5CB3B6DCFB4596" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e3000-wk-Fact-70A2625E6D4859FE891C2EF89014F019" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3019-wk-Fact-4F4D472B879D5E83A30D5C0C92AC9DED" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e3038-wk-Fact-921A1EDFFFB55040921BF53C42C09082" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3058-wk-Fact-6E9A5019C325504A9BDEC41144E2392C" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e3077-wk-Fact-9DC43A73748950878F07E4240DF33A82" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">U.S. government securities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3107-wk-Fact-0D0175BA4CD4559E9BA10C13B0782CE0" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">36.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e3126-wk-Fact-17BD7EB2E1561E456613B3B6DCF38765" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3146-wk-Fact-62E8F9E184C2553694A0272CB2F6E3E1" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3166-wk-Fact-4FF4331F35D25084B7132C8A3F59EFC7" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">36.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e3185-wk-Fact-D47BF8441E76587BA7C852F8BA58A51E" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3205-wk-Fact-200FF70C1CF550F1A9C70BC5E483299F" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">36.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e3224-wk-Fact-52579357EB1556E5AE0DD0E74E729CBA" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Short-term trading securities</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Mutual funds</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3407-wk-Fact-F7589FE522775BFEA886FBC71DBDF0DA" name="adsk:DebtSecuritiesTradingAmortizedCost" scale="6" unitref="usd">52.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3426-wk-Fact-707368FF02A3579C94B6FBE2449DE9E7" name="adsk:TradingSecuritiesAccumulatedGrossUnrealizedGainbeforeTax" scale="6" unitref="usd">6.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:zerodash" id="d9845490e3446-wk-Fact-5859457E9FCE5E38B9A3D0F2F8B487D8" name="adsk:TradingSecuritiesAccumulatedGrossUnrealizedLossbeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3465-wk-Fact-368F59F86BC2523488E4F8132E23D1D4" name="us-gaap:TradingSecuritiesDebt" scale="6" unitref="usd">59.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3484-wk-Fact-4746BA24E11458ADB3F56ED36CD6F1A2" name="us-gaap:TradingSecuritiesDebt" scale="6" unitref="usd">59.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:zerodash" id="d9845490e3504-wk-Fact-F084ECDF6710526EB24156776525D5AA" name="us-gaap:TradingSecuritiesDebt" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:zerodash" id="d9845490e3523-wk-Fact-3212CDFDCA6858B6929F32BA6461C3A0" name="us-gaap:TradingSecuritiesDebt" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Long-term</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Agency bonds</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3706-wk-Fact-268EEDCFA43C5827A9E2F3E4878FE29A" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">13.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e3725-wk-Fact-BEDE504340FD5024BAF811FC377532DD" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3745-wk-Fact-E7CE3E2D3ABD5850AF870DCF46828A3B" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3765-wk-Fact-A68D53FE97C7570AA4F2577049BF1397" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">13.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e3784-wk-Fact-CC1B36C0D67550479CCA231367E5A1CB" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3804-wk-Fact-7190F281ECF75C1EA9994350594E58C2" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">13.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e3823-wk-Fact-CD4DDB8066275402BBF37223E913545C" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Asset backed securities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3854-wk-Fact-8241FB2883A15E74854D4BE44CD8D945" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">31.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e3873-wk-Fact-809D8D19B0F65D8EA512D4D73A97F3E7" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3893-wk-Fact-2172CDE3961054578074B5B523324E96" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3913-wk-Fact-600601F24A675EBBB59279AF93DE885B" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">31.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e3932-wk-Fact-8167B51C0B7251069ACDA95CB3994509" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e3952-wk-Fact-173727D2A7415E96AE25E02DF96B2047" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">31.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e3971-wk-Fact-D72289F02AAB592AAB7E4ACE26F93144" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Corporate debt securities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4001-wk-Fact-54C795516E8356D3A346EFE09CB382C0" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">88.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4020-wk-Fact-0987C5FDCF8B5EDC8A21EC2904868FAC" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4040-wk-Fact-4987E38597CA5DFBB15118C1F0862C75" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4060-wk-Fact-16A6327271235F5E9497FCF8B4057DD9" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">88.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e4079-wk-Fact-8042BA5E35A05F9C91197B8A93720FE2" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4099-wk-Fact-B19F221D642257E088D67064CB43AE34" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">88.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e4118-wk-Fact-3A8C05B3778157EDB6BC51E35CC7A243" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Municipal bonds</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4148-wk-Fact-8AFC8366124F5A26803D49DAF3B6466F" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">12.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e4167-wk-Fact-619B892B94CD5D6F81C4285A5DBD5B32" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4187-wk-Fact-E8DD7F0439FC5301A3BEB964F2D4B746" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4207-wk-Fact-2F6C202F1A305D5984EEB6014C0C8D7B" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">11.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e4226-wk-Fact-9132152F325A5190996D10A3960EA6CA" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4246-wk-Fact-6BFF4A6A19185F43BB1422D26472A1D2" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">11.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e4265-wk-Fact-C67B947976C15ED5A2763AF4976D8D5B" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">U.S. government securities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4295-wk-Fact-094D88C35BCC50FE917292C45647C4A8" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">22.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e4314-wk-Fact-BD5EC49A23E0539EBDD0E8309131E2C2" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4334-wk-Fact-C4D63F79CB9753CEAC7EBE9B0D018714" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4354-wk-Fact-9E3A59AA3EF653DD8B391E7134C5D14F" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">22.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e4373-wk-Fact-8401E670843D5611A15C92371CFA8E47" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4393-wk-Fact-46C13F3C460857E38C0962F7D861537A" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">22.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e4412-wk-Fact-68C316FD93B557E8AB4C1900356ADFCD" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other (2)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4442-wk-Fact-429C116C0A0A5B4CB19C3EAFC4ECEA8C" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">4.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e4461-wk-Fact-C1380CEA7C5F5953B1FD0A18C3E46E6C" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e4481-wk-Fact-749ED00CFF725BA0838246A15BAE6A3B" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4500-wk-Fact-1E22DA677280548DA58BE20E2CA44483" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">4.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e4519-wk-Fact-D06FE6E1EC775888A302FC2E49A17DD8" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4539-wk-Fact-4AC377EB93465257A733631F94D7029A" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">4.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_adsk_OtherSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e4558-wk-Fact-850468C21CE3508C9ACACED8DD1B8E9E" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Convertible debt securities (3)</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4588-wk-Fact-67B7C4A36BB05EEBBCE8BE4D4164305C" name="adsk:ConvertibleDebtSecuritiesAmortizedCost" scale="6" unitref="usd">7.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4607-wk-Fact-5E97BF942B765FB9BC346F8450839FD3" name="adsk:ConvertibleDebtSecuritiesUnrealizedGains" scale="6" unitref="usd">1.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4627-wk-Fact-225D2420F1C45B368F1D39B21AABF6D4" name="adsk:ConvertibleDebtSecuritiesUnrealizedLosses" scale="6" unitref="usd">0.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4647-wk-Fact-C52576106D425326925B4C2408FF2C76" name="adsk:ConvertibleDebtSecuritiesFairValueDisclosure" scale="6" unitref="usd">8.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member" decimals="-5" format="ixt:zerodash" id="d9845490e4666-wk-Fact-0D5CF304F862573FA45053DA6440972F" name="adsk:ConvertibleDebtSecuritiesFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member" decimals="-5" format="ixt:zerodash" id="d9845490e4686-wk-Fact-5DE172D827695AF895DC075089919653" name="adsk:ConvertibleDebtSecuritiesFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4705-wk-Fact-5D008B5020935FAD9ADFA1796A6A6A92" name="adsk:ConvertibleDebtSecuritiesFairValueDisclosure" scale="6" unitref="usd">8.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Derivative contract assets (4)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4735-wk-Fact-F9B5F1B7BBA55FD487375ECFDCE57EDA" name="us-gaap:DerivativeFairValueOfDerivativeAsset" scale="6" unitref="usd">1.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4754-wk-Fact-FE2CA6285A195A68AF3786C66E3FBD71" name="adsk:DerivativeAssetsAccumulatedGrossUnrealizedGainbeforeTax" scale="6" unitref="usd">10.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4774-wk-Fact-672681EC9E37585AAAA5A67069D899EF" name="adsk:DerivativeAssetsAccumulatedGrossUnrealizedLossbeforeTax" scale="6" unitref="usd">1.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4794-wk-Fact-12CC244C5FC451D2A558E4EC62BDC049" name="us-gaap:DerivativeAssets" scale="6" unitref="usd">11.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member" decimals="-5" format="ixt:zerodash" id="d9845490e4813-wk-Fact-0E4B31EA42005AC682E928BBC46F4DCC" name="us-gaap:DerivativeAssets" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4833-wk-Fact-B95346377A1E511CA5D2CF18F586F04D" name="us-gaap:DerivativeAssets" scale="6" unitref="usd">9.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4852-wk-Fact-3B3A9A818FB85A67BBF6C102D852C022" name="us-gaap:DerivativeAssets" scale="6" unitref="usd">1.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Derivative contract liabilities (5)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:zerodash" id="d9845490e4882-wk-Fact-21040CEA2902584FA7BF3974F7735EA5" name="us-gaap:DerivativeFairValueOfDerivativeLiability" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:zerodash" id="d9845490e4901-wk-Fact-89D7987C5D4B5DE1A183F9BF47E9032D" name="adsk:DerivativeLiabilitiesAccumulatedGrossUnrealizedGainbeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4921-wk-Fact-957C2ACD01825AA6BC4BA7573F0E3891" name="adsk:DerivativeLiabilitiesAccumulatedGrossUnrealizedLossbeforeTax" scale="6" unitref="usd">5.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4941-wk-Fact-DCB0873DA7065BB2A2A29058D6FEB320" name="us-gaap:DerivativeLiabilities" scale="6" unitref="usd">5.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member" decimals="-5" format="ixt:zerodash" id="d9845490e4961-wk-Fact-5E3C5577D61E5D3FB8E164E9BB5980B7" name="us-gaap:DerivativeLiabilities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e4981-wk-Fact-8FCC64B5BFC656298FC03688DD033E4C" name="us-gaap:DerivativeLiabilities" scale="6" unitref="usd">5.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:zerodash" id="d9845490e5001-wk-Fact-9923014B04C8564CA46EA5E41AF3FBE9" name="us-gaap:DerivativeLiabilities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5036-wk-Fact-CC1B6AA91DE15819A748714E85057B73" name="adsk:AmortizedCostSecurities" scale="6" unitref="usd">1,039.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5054-wk-Fact-4740DDAD43A35ED4BB7BA83A8161CECA" name="adsk:InvestmentsAccumulatedGrossUnrealizedGainbeforeTax" scale="6" unitref="usd">18.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5073-wk-Fact-576713FEC2B25E31A5988F04E5CAF98F" name="adsk:InvestmentsAccumulatedGrossUnrealizedLossbeforeTax" scale="6" unitref="usd">8.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5092-wk-Fact-C42FA71E546F5DFCB75A842A521D7276" name="adsk:FairValueAssetsMeasuredOnRecurringBasis" scale="6" unitref="usd">1,049.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5110-wk-Fact-EBB6B9D21CCD547BB3446C5823B28BD6" name="adsk:FairValueAssetsMeasuredOnRecurringBasis" scale="6" unitref="usd">236.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5129-wk-Fact-F15358F2B5C95EA7BE6FF67CA46E12AF" name="adsk:FairValueAssetsMeasuredOnRecurringBasis" scale="6" unitref="usd">803.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5147-wk-Fact-46B28E1453F451318D533AA4F92A7024" name="adsk:FairValueAssetsMeasuredOnRecurringBasis" scale="6" unitref="usd">9.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________ </span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Included in “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Cash and cash equivalents</span><span style="font-family:inherit;font-size:9pt;">” in the accompanying Condensed Consolidated Balance Sheets.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Consists of certificates of deposit and sovereign debt.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(3)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Included in “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Other assets</span><span style="font-family:inherit;font-size:9pt;">” in the accompanying Condensed Consolidated Balance Sheets. </span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(4)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Included in “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Prepaid expenses and other current assets</span><span style="font-family:inherit;font-size:9pt;">” or “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Other assets</span><span style="font-family:inherit;font-size:9pt;">” in the accompanying Condensed Consolidated Balance Sheets.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(5)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Included in “</span><span style="font-family:inherit;font-size:9pt;">Other accrued liabilities</span><span style="font-family:inherit;font-size:9pt;">” in the accompanying Condensed Consolidated Balance Sheets.</span></div></td></tr></table><div style="line-height:120%;padding-left:4px;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></ix:continuation></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">14</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-3" id="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-2"><ix:continuation continuedat="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-4" id="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-3"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:9pt;"> </span><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:99.90243902439025%;border-collapse:collapse;text-align:left;"><tr><td colspan="30"></td></tr><tr><td style="width:-3%;"></td><td style="width:1%;"></td><td style="width:33%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="27" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">January 31, 2018</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Amortized Cost</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Gross Unrealized Gains</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Gross Unrealized Losses</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Fair Value</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Level 1</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Level 2</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Level 3</span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cash equivalents (1):</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Agency bonds</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5789-wk-Fact-4D39F5E561075D3AB919BEB5B3AD2B8C" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5847-wk-Fact-4F811160AA7454D3BE720C0B0CE262CB" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5866-wk-Fact-4090504419BC5522989FCE98BFFB4915" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e5886-wk-Fact-5B849EDDC1DD5437A407A3B557BAE37F" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e5905-wk-Fact-B1D2AC8750A4533A8F8FEEBFFF6A9B8B" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Certificates of deposit</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5930-wk-Fact-E4E45A9A0BB250038921DA0512A7A023" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">17.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e5988-wk-Fact-AFF66D95D76D5239801F07FFA6B06B62" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">17.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6007-wk-Fact-EBE3569910F2553CB6D3FB85D93FCD75" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">17.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:zerodash" id="d9845490e6027-wk-Fact-5C1EB66CA1EA5A86B0558D038E52574D" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CertificatesOfDepositMember" decimals="-5" format="ixt:zerodash" id="d9845490e6046-wk-Fact-7DBF04FD282C554FB9B606DF89EF4024" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Commercial paper</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6076-wk-Fact-BFD45E627FB35F65830858E5814FE5C2" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">324.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6134-wk-Fact-C4CE1C1EB8005A8CAF7FB108726BFBED" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">324.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:zerodash" id="d9845490e6153-wk-Fact-D4C1EC1D5B205F349B3F006751872642" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6173-wk-Fact-E74F2E1A53615107BB1B18EF5B69087E" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">324.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:zerodash" id="d9845490e6192-wk-Fact-AA87FCC2A5D55F16A68DA8DCC6928294" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Corporate debt securities </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6222-wk-Fact-D6D809466B1753F1A2D3D9AC347F0B21" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6280-wk-Fact-97B8E4A5BF0556558880CFCBAC2962D9" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6299-wk-Fact-24329BC6CC815C94984B13FF12CB88A4" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e6319-wk-Fact-C0712265905C5D2C8694A41158A31FF7" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e6338-wk-Fact-1AD4721E5BBD5E1B81152F9C87D702BB" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Custody cash deposit</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6368-wk-Fact-60289B622D1356FDAB5829F5C7652B96" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">5.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6426-wk-Fact-AA7FDE4EF5625FD0A394C08BCC4BD398" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6445-wk-Fact-344F20E3656F5ACEAB67989982E60CE5" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:zerodash" id="d9845490e6465-wk-Fact-76851CAB87FF571289525B8A18C4E831" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_DepositsMember" decimals="-5" format="ixt:zerodash" id="d9845490e6484-wk-Fact-1E5B9148D3915AF9AAA6CA910296DB4F" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Money market funds </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6514-wk-Fact-3769C8EEDDE55632A38469FD3CF1F5E5" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">278.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6572-wk-Fact-C48A88C9C713503E8B4E9C67A8DCB3F9" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">278.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:zerodash" id="d9845490e6591-wk-Fact-CBD4817C8C88512491AE45C6F1A68DF9" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6611-wk-Fact-F1C74ADC64FA5B79A42D4B302FC638BA" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">278.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MoneyMarketFundsMember" decimals="-5" format="ixt:zerodash" id="d9845490e6630-wk-Fact-E124FFF373195464BEA01D046A84B776" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Municipal bonds</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6660-wk-Fact-D713B37B17B5568BBE1FC061D596EE18" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6718-wk-Fact-7B5DF38DE5945FAE896464B8CD633D1F" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6737-wk-Fact-9C468E8D5B8D59F2B942194B879CB7AE" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">5.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e6757-wk-Fact-EAA559FC763450DC896C4E26F2FEB509" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e6776-wk-Fact-FA86AA2A5CA35E1ABC3AD5E2EE1B4A33" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Sovereign debt</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6806-wk-Fact-ED7F39F5749756C4944769B2FE1C76EB" name="us-gaap:CashAndCashEquivalentsAtCarryingValue" scale="6" unitref="usd">2.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6864-wk-Fact-E97F04F761F65686925A165A278D4FEB" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">2.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e6883-wk-Fact-27469A73683757DEA8BD2CABE2213C7D" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e6903-wk-Fact-E5767D6C822A50EEA56BC5FD1281BF5F" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">2.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e6922-wk-Fact-63E00CF5F94A50FEA026211994F9FB25" name="us-gaap:CashAndCashEquivalentsFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Marketable securities:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Short-term</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Asset backed securities </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7259-wk-Fact-7D1B60A24C17566FA0AC8626C1057F0C" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">13.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7278-wk-Fact-C9A24939C24C59E9A4E93AD03EDED12A" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7298-wk-Fact-D43DE6C3176953B0A03B77E7143ABE34" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7317-wk-Fact-5F65C0A242D85660B2C771466C550FF4" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">13.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7336-wk-Fact-FB5CE3A1B21B588CBB7022DF2785A48C" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7356-wk-Fact-26E5ADD0D6FE56D89A89B5CC388AC08D" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">13.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7375-wk-Fact-7936F831DBC95EC59E8A62E70912E2AA" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Commercial paper</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7405-wk-Fact-69FFDE809C17585AB442BA256A06DA44" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">27.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:zerodash" id="d9845490e7424-wk-Fact-FB4BC4F3F72153B09B01338D8A4E6F7B" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:zerodash" id="d9845490e7444-wk-Fact-906ABB26D0A8542F9D511407DE191FD6" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7463-wk-Fact-3C7B5DF36EB45FDFA445609F1D45C593" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">27.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:zerodash" id="d9845490e7482-wk-Fact-B89D3E47D8BC5D6A865699AC0E0DF3AF" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7502-wk-Fact-64622CD6DB195628A48859BBC9EA417B" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">27.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CommercialPaperMember" decimals="-5" format="ixt:zerodash" id="d9845490e7521-wk-Fact-D98EEC6A9181544BBA7D3FCD0897C052" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Corporate debt securities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7551-wk-Fact-EBAD68A2A220584FBE98D9D3B9A8F58F" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">99.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7570-wk-Fact-4402F34BBE7256D288B51476B3964F43" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7590-wk-Fact-4E3A3B886E2F52479C35ADBC21033FCD" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7610-wk-Fact-72687D873E5256B79E8520B3FB5BE1A1" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">99.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7629-wk-Fact-9F29B939B3FA500083DB97605C6DE363" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">99.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7649-wk-Fact-A899FAA7F73C5750B3C24EA8DE842E02" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7668-wk-Fact-598E56CF5F045D23B822F6C7E423DBC9" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other (2)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7698-wk-Fact-ACC1AD3A26815DABBA1BB97BFAD6F1AE" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">9.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e7717-wk-Fact-043D5421F99C508887B8EB641534AABE" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e7737-wk-Fact-2F2987325D985A8B86FDE32F18A1470A" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7756-wk-Fact-16F2A58681E453F682439EFE4273997D" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">9.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7775-wk-Fact-4B2BF945DFA457D283F17FFE899ED1B6" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">7.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7795-wk-Fact-11A189C1A9185EB5B40732BD2E8717FE" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">1.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e7814-wk-Fact-3C2EF9C191FA5F089B720814FFB51C0A" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">U.S. government securities </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7844-wk-Fact-33ADD703EBD851D995B01C35FE42B748" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">37.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7863-wk-Fact-27A0B495C1355F40BEB0CEDCA73990B1" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7883-wk-Fact-D7EADE13D5035A99A84BB9900CA6E5B7" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7902-wk-Fact-231A447AD1955496BE9977BE9FE3BC8C" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">37.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e7921-wk-Fact-6718A5B690AC53C5A098DC8EF94777BB" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">37.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7941-wk-Fact-B8CDBA919D4B5F74BB3E67BADD2F724E" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesCurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e7960-wk-Fact-FE3D609377F055ECB87D4CCC733EA722" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Short-term trading securities</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Mutual funds</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8143-wk-Fact-73D4997586845A98B60BC4537CD527C2" name="adsk:DebtSecuritiesTradingAmortizedCost" scale="6" unitref="usd">50.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8162-wk-Fact-B41A01A9EC8B561488B8B45C69E95A20" name="adsk:TradingSecuritiesAccumulatedGrossUnrealizedGainbeforeTax" scale="6" unitref="usd">8.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:zerodash" id="d9845490e8182-wk-Fact-577CA93618405F1EA596111BE4664382" name="adsk:TradingSecuritiesAccumulatedGrossUnrealizedLossbeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8201-wk-Fact-2D512279616C5B878DC65A41616E237E" name="us-gaap:TradingSecuritiesDebt" scale="6" unitref="usd">59.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8220-wk-Fact-07E9F0FE8D0E520998A90838B0BC2195" name="us-gaap:TradingSecuritiesDebt" scale="6" unitref="usd">59.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:zerodash" id="d9845490e8240-wk-Fact-A1755171920155539C850A47DE3022E1" name="us-gaap:TradingSecuritiesDebt" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:zerodash" id="d9845490e8259-wk-Fact-31DD11F2A20F5B33BFE5F6D78793FF28" name="us-gaap:TradingSecuritiesDebt" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Long-term</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Agency bonds</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8442-wk-Fact-5295234F8D1E52D5963354629A0F677B" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">13.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e8461-wk-Fact-DDFB61CB8B9256FEB4B226E62E7AB6D6" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8481-wk-Fact-A25A693ACCA05B15A53E0C81C7C32944" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8501-wk-Fact-E2A7AD58D71453EF8A2C6FA5D4C1A195" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">13.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8520-wk-Fact-5D5DFA0BE0C45FC3960DE48E067D1C93" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">13.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e8540-wk-Fact-2779A1638F4B51B6A9532D4F306DF549" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_adsk_AgencyBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e8559-wk-Fact-41C09829B65B59D9B588A86CF89001F3" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Asset backed securities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8590-wk-Fact-44829CC2615F5AC7B6C0D97F8626D5D8" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">36.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e8609-wk-Fact-4D9E908D93205A61B06DEF387F960900" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8629-wk-Fact-4F0B83209EDD5714901B66B48889BF8A" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8649-wk-Fact-551CC2C65AD652C8B95A24DCB62AC5A6" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">36.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e8668-wk-Fact-3F72CE439A5A569D859C5C7CE2373761" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8688-wk-Fact-DB8063B7B75559478E0A5A638F17CCA6" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">36.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_AssetBackedSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e8707-wk-Fact-AB61E7BD03E0527991B15D056158473F" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Corporate debt securities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8737-wk-Fact-B13486B76931511B8D64FBBF5B01F1D3" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">100.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8756-wk-Fact-ECD88ACF7D79523F9FDDC45AE905987C" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">0.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8776-wk-Fact-55614CE8E8FC5F378F05F5BA48FD1FF6" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8796-wk-Fact-0E41C0D3456F5F2C9F04985A3B6EC000" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">99.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8815-wk-Fact-E2E9F1490FB0549DA62EFF141A0F314B" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">99.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e8835-wk-Fact-FEA92593886054F1812ED440D463F909" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_CorporateDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e8854-wk-Fact-4FACC53955C459CEA5FEE3B37B984A1A" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Municipal bonds</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8884-wk-Fact-FE980A5473FF52B89A8F88FD5743005A" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">12.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e8903-wk-Fact-62837797D9C25E35912C3774FA5274F7" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8923-wk-Fact-2A735A6844395274BA294800A79A1692" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8943-wk-Fact-0F1E8FEE5883535E80E08FA5598465CB" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">12.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e8962-wk-Fact-6863D549E55C5D2F93BB3FAA4652190E" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">12.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e8982-wk-Fact-7631897B6B6C5BFD913E4BCF30B30D53" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_MunicipalBondsMember" decimals="-5" format="ixt:zerodash" id="d9845490e9001-wk-Fact-D7E7ABBDBAE15F86B00146D69576B7DE" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Sovereign debt</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9031-wk-Fact-BC7A2967463A51FC998CAA11EE3B8EB9" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">2.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e9050-wk-Fact-485E4E64ED0C5676A25494FF4C974981" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e9070-wk-Fact-1840025219775E0EA5DC8FC7ACC046FF" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9089-wk-Fact-348D1471369F57A1896BD8ED7BAF7A32" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">2.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e9108-wk-Fact-E6C10800BC65540AB373095BF3506A28" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9128-wk-Fact-604E7DDE87975FDFB81A6DFE99EF0828" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">2.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_SovereignDebtMember" decimals="-5" format="ixt:zerodash" id="d9845490e9147-wk-Fact-BD73162700245D188BA5B7EBCB2D4A74" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">U.S. government securities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9177-wk-Fact-3F14F33B05F554BE9D3BB556CA9DEB56" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">25.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e9196-wk-Fact-003FCAC4C75554FD8693792AAAC53919" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedGainBeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9216-wk-Fact-F101ABAF02465073B457D0156498B6C0" name="us-gaap:AvailableForSaleDebtSecuritiesAccumulatedGrossUnrealizedLossBeforeTax" scale="6" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9236-wk-Fact-3BE944ABCF54504F98D45611547AF7C9" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">25.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9255-wk-Fact-9EF65DF5B9C65A7492B6D5D6BFED92E2" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">25.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e9275-wk-Fact-87DC3FFD9A91545DB825D4FDFBD927A1" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_MarketableSecuritiesNoncurrentMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member_us-gaap_FinancialInstrumentAxis_us-gaap_USGovernmentDebtSecuritiesMember" decimals="-5" format="ixt:zerodash" id="d9845490e9294-wk-Fact-BBDC97FF76565C70ADF900A68E3293EA" name="us-gaap:AvailableForSaleSecuritiesDebtSecurities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Convertible debt securities (3)</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9324-wk-Fact-BCD8E0297A6D5EFDB2D2A21CEDF7C950" name="adsk:ConvertibleDebtSecuritiesAmortizedCost" scale="6" unitref="usd">7.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9343-wk-Fact-010CB94CCD085873AE0D8732999CACFE" name="adsk:ConvertibleDebtSecuritiesUnrealizedGains" scale="6" unitref="usd">0.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9363-wk-Fact-50DE7DDBBE7B5A728D7A5277575088BC" name="adsk:ConvertibleDebtSecuritiesUnrealizedLosses" scale="6" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9383-wk-Fact-95C71E155E74505C8E3DE8C9D71AFBB5" name="adsk:ConvertibleDebtSecuritiesFairValueDisclosure" scale="6" unitref="usd">7.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member" decimals="-5" format="ixt:zerodash" id="d9845490e9402-wk-Fact-F9A043543EEC53DEB63BE5DA9BAB9727" name="adsk:ConvertibleDebtSecuritiesFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member" decimals="-5" format="ixt:zerodash" id="d9845490e9422-wk-Fact-5F0989E8EA045771AD46F3A59998FEAE" name="adsk:ConvertibleDebtSecuritiesFairValueDisclosure" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_OtherAssetsMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9441-wk-Fact-A7A3040BDCBC5003AB5C51FAA77A7897" name="adsk:ConvertibleDebtSecuritiesFairValueDisclosure" scale="6" unitref="usd">7.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Derivative contract assets (4)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9471-wk-Fact-AA06E7F740365C71A17AAE5EB24FDBD0" name="us-gaap:DerivativeFairValueOfDerivativeAsset" scale="6" unitref="usd">2.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9490-wk-Fact-EC31310F25C1593FBD47BB086C1CCF6A" name="adsk:DerivativeAssetsAccumulatedGrossUnrealizedGainbeforeTax" scale="6" unitref="usd">7.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9510-wk-Fact-E93F3A639B055AA3B2823E6DCBDE8150" name="adsk:DerivativeAssetsAccumulatedGrossUnrealizedLossbeforeTax" scale="6" unitref="usd">1.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9530-wk-Fact-11E081D88B145E3389761E5E7DDBA2A3" name="us-gaap:DerivativeAssets" scale="6" unitref="usd">8.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member" decimals="-5" format="ixt:zerodash" id="d9845490e9549-wk-Fact-CD65DA94D7A45DD590159DCEFF0F6C4B" name="us-gaap:DerivativeAssets" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9569-wk-Fact-E42B720F247459F0BAECDE71260FA1E6" name="us-gaap:DerivativeAssets" scale="6" unitref="usd">7.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9588-wk-Fact-DC1E14A83ED955ED8CEAF8D5AC192D31" name="us-gaap:DerivativeAssets" scale="6" unitref="usd">1.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Derivative contract liabilities (5)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:zerodash" id="d9845490e9618-wk-Fact-5D513FCB897C5097871AD71E21C723D7" name="us-gaap:DerivativeFairValueOfDerivativeLiability" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:zerodash" id="d9845490e9637-wk-Fact-04E957C39B74528884C6EF328448C245" name="adsk:DerivativeLiabilitiesAccumulatedGrossUnrealizedGainbeforeTax" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9657-wk-Fact-D9B44935B6C75BA6BE66BCF873754ED4" name="adsk:DerivativeLiabilitiesAccumulatedGrossUnrealizedLossbeforeTax" scale="6" unitref="usd">26.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9677-wk-Fact-C3F7F93F8ABD57528FE9C024CAF1A446" name="us-gaap:DerivativeLiabilities" scale="6" unitref="usd">26.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member" decimals="-5" format="ixt:zerodash" id="d9845490e9697-wk-Fact-5541C68464B6595BA15B350C32B4ED7F" name="us-gaap:DerivativeLiabilities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9717-wk-Fact-779533E45B9F53CB9C27BBA322F786ED" name="us-gaap:DerivativeLiabilities" scale="6" unitref="usd">26.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:zerodash" id="d9845490e9737-wk-Fact-FAE76F3518C15277AACA586C0AA93BF0" name="us-gaap:DerivativeLiabilities" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9772-wk-Fact-92C5448842A65F649BE092A642B97225" name="adsk:AmortizedCostSecurities" scale="6" unitref="usd">1,080.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9791-wk-Fact-EC82F7B55AE85D62B761DE1437AEA85F" name="adsk:InvestmentsAccumulatedGrossUnrealizedGainbeforeTax" scale="6" unitref="usd">17.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9811-wk-Fact-E6617A673BA553B388B5465706964001" name="adsk:InvestmentsAccumulatedGrossUnrealizedLossbeforeTax" scale="6" unitref="usd">29.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9831-wk-Fact-2813A9D7ABF15B9E96ECD138D245E3BB" name="adsk:FairValueAssetsMeasuredOnRecurringBasis" scale="6" unitref="usd">1,068.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel1Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9850-wk-Fact-660582721F885C61AFAEC872F3A83877" name="adsk:FairValueAssetsMeasuredOnRecurringBasis" scale="6" unitref="usd">392.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel2Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9870-wk-Fact-63B1F82DD2AE5378A981EE502B523574" name="adsk:FairValueAssetsMeasuredOnRecurringBasis" scale="6" unitref="usd">667.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e9889-wk-Fact-4A219CA8226650F1819459995D19D382" name="adsk:FairValueAssetsMeasuredOnRecurringBasis" scale="6" unitref="usd">8.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________ </span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Included in “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Cash and cash equivalents</span><span style="font-family:inherit;font-size:9pt;">” in the accompanying Condensed Consolidated Balance Sheets.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Consists of agency bonds, certificates of deposit, sovereign debt, and municipal bonds.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(3)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Included in “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Other assets</span><span style="font-family:inherit;font-size:9pt;">” in the accompanying Condensed Consolidated Balance Sheets.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(4)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Included in “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Prepaid expenses and other current assets</span><span style="font-family:inherit;font-size:9pt;">,” “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Other assets</span><span style="font-family:inherit;font-size:9pt;">,” or “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Other accrued liabilities</span><span style="font-family:inherit;font-size:9pt;">” in the accompanying Condensed Consolidated Balance Sheets.</span></div></td></tr></table></ix:continuation><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><ix:continuation continuedat="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-5" id="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-4"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(5)</span></div></ix:continuation></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><ix:continuation continuedat="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-6" id="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-5"><span style="font-family:inherit;font-size:9pt;">Included in “</span><span style="font-family:inherit;font-size:9pt;">Other accrued liabilities</span></ix:continuation><span style="font-family:inherit;font-size:9pt;"><ix:continuation id="TextSelection-C13B2684AD025B9B89FE39C1ADE9CA84-6">” in the accompanying Condensed Consolidated Balance Sheets.</ix:continuation></span></div></td></tr></table><div style="line-height:120%;text-align:left;text-indent:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk classifies its marketable securities as either short-term or long-term based on each instrument’s underlying contractual maturity date. Marketable securities with remaining maturities of up to 12 months are classified as short-term and marketable securities with remaining maturities greater than 12 months are classified as long-term. Autodesk may sell certain of its marketable securities prior to their stated maturities for strategic purposes or in anticipation of credit deterioration. </span></div><div style="line-height:120%;text-indent:30px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk applies fair value accounting for certain financial assets and liabilities, which consist of cash equivalents, marketable securities and other financial instruments, that are recognized or disclosed at fair value in the financial statements on a recurring basis. The Company defines fair value as the price that would be received from selling an asset or paid to transfer a liability in an orderly transaction between market participants at the measurement date. Fair value is estimated by applying the following hierarchy, which prioritizes the inputs used to measure fair value into three levels and bases the categorization within the hierarchy upon the lowest level of input that is available and significant to the fair value measurement: (Level 1) observable inputs such as quoted prices in active markets; (Level 2) inputs other than quoted prices in active markets for </span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">15</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-4" id="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-3"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">identical assets and liabilities, quoted prices for identical or similar assets or liabilities in inactive markets, or other inputs that are observable or can be corroborated by observable market data for substantially the full term of the assets or liabilities; and (Level 3) unobservable inputs for which there is little or no market data, which require Autodesk to develop its own assumptions. When determining fair value, Autodesk uses observable market data and relies on unobservable inputs only when observable market data is not available. Autodesk reviews for any potential changes on a quarterly basis, in conjunction with our fiscal quarter-end close. As part of this assessment, Autodesk transferred the fair value measurement of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10029-wk-Fact-63BC9C7885641669A1D4B72770B73AC7" name="us-gaap:FairValueAssetsLevel1ToLevel2TransfersAmount" scale="6" unitref="usd">287.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> between Level 1 to Level 2 and </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10033-wk-Fact-66EC9A3E80025071D190B727BC0994A8" name="us-gaap:FairValueAssetsLevel2ToLevel1TransfersAmount" scale="6" unitref="usd">175.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> between Level 2 to Level 1 during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. It is Autodesk's assessment that the leveling best reflects current market activity when observing the pricing information for these assets.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk's cash equivalents, marketable securities and financial instruments are primarily classified within Level 1 or Level 2 of the fair value hierarchy. Autodesk values its securities on pricing from pricing vendors, who may use quoted prices in active markets for identical assets (Level 1) or inputs other than quoted prices that are observable either directly or indirectly in determining fair value (Level 2). Autodesk's Level 2 securities are valued primarily using observable inputs other than quoted prices in active markets for identical assets and liabilities. Autodesk's Level 3 securities consist of investments held in convertible debt securities and derivative contracts which are valued using probability weighted discounted cash flow models as some of the inputs to the models are unobservable in the market.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-2FC75C6FAE1651719D70A389C09A6AFE-1" escape="true" id="TextSelection-2FC75C6FAE1651719D70A389C09A6AFE-0-wk-Fact-66FB2155CC08584D82E968C3EC9C685B" name="us-gaap:FairValueAssetsMeasuredOnRecurringBasisTextBlock">A reconciliation of the change in Autodesk’s Level 3 items for the </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-2FC75C6FAE1651719D70A389C09A6AFE-2" id="TextSelection-2FC75C6FAE1651719D70A389C09A6AFE-1"><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> follows:</span></ix:continuation></div><ix:continuation continuedat="TextSelection-2FC75C6FAE1651719D70A389C09A6AFE-3" id="TextSelection-2FC75C6FAE1651719D70A389C09A6AFE-2"><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-align:left;font-size:10pt;"><ix:continuation id="TextSelection-2FC75C6FAE1651719D70A389C09A6AFE-3"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="13"></td></tr><tr><td style="width:61%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="12" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Fair Value Measurements Using</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Significant Unobservable Inputs</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="12" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(Level 3)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Derivative Contracts</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Convertible Debt Securities</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Total</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Balances, January 31, 2018</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByAssetClassAxis_us-gaap_DerivativeMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10317-wk-Fact-FE50CF9F5A9D597E998EFB60994A6E4F" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetValue" scale="6" unitref="usd">1.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByAssetClassAxis_us-gaap_ConvertibleDebtSecuritiesMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10336-wk-Fact-3ADFF2B9054B5337A9C14727F9E48093" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetValue" scale="6" unitref="usd">7.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10356-wk-Fact-5912402372DE5036A4D198C807395CAE" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetValue" scale="6" unitref="usd">8.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Purchases</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_FairValueByAssetClassAxis_us-gaap_DerivativeMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:zerodash" id="d9845490e10376-wk-Fact-FC0EA71835BC5DDA81BB7AF3E478B489" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetPurchases" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_FairValueByAssetClassAxis_us-gaap_ConvertibleDebtSecuritiesMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:zerodash" id="d9845490e10395-wk-Fact-EC33BA36AEAA5908B313698577A256D3" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetPurchases" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:zerodash" id="d9845490e10414-wk-Fact-22BFB71117FC5C99A1703003FF7EF3BF" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetPurchases" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gains included in earnings</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_FairValueByAssetClassAxis_us-gaap_DerivativeMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10440-wk-Fact-DBBC96CB82FA5ADC90CBF18BB35DF563" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetGainLossIncludedInEarnings1" scale="6" unitref="usd">0.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_FairValueByAssetClassAxis_us-gaap_ConvertibleDebtSecuritiesMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:zerodash" id="d9845490e10459-wk-Fact-DFE5ACF21EE154E6BA102AACAC1F07D3" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetGainLossIncludedInEarnings1" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10478-wk-Fact-5F8A3B146F22580785BBDECDD6A94A75" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetGainLossIncludedInEarnings1" scale="6" unitref="usd">0.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gains included in OCI</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_FairValueByAssetClassAxis_us-gaap_DerivativeMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:zerodash" id="d9845490e10504-wk-Fact-845190D38EA25E978EEFC28E59496908" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetGainLossIncludedInOtherComprehensiveIncomeLoss" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_FairValueByAssetClassAxis_us-gaap_ConvertibleDebtSecuritiesMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10523-wk-Fact-D0BC5765214A569DB5723261DF961B6A" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetGainLossIncludedInOtherComprehensiveIncomeLoss" scale="6" unitref="usd">0.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10542-wk-Fact-E725AA0618EB59B29F5600EEFFA6EEE4" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetGainLossIncludedInOtherComprehensiveIncomeLoss" scale="6" unitref="usd">0.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Balances, April 30, 2018</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByAssetClassAxis_us-gaap_DerivativeMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10573-wk-Fact-EC2412457A1E5637A8339529AA30991B" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetValue" scale="6" unitref="usd">1.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByAssetClassAxis_us-gaap_ConvertibleDebtSecuritiesMember_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10592-wk-Fact-D0088D0ECB785A55908F4AFA359332E1" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetValue" scale="6" unitref="usd">8.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FairValueByFairValueHierarchyLevelAxis_us-gaap_FairValueInputsLevel3Member" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10612-wk-Fact-5A6E2BAF89C2538097C3707FB5301653" name="us-gaap:FairValueMeasurementWithUnobservableInputsReconciliationRecurringBasisAssetValue" scale="6" unitref="usd">9.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></ix:continuation><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-1734C756A0BC5B7592C72DB5D0DD902F-1" escape="true" id="TextSelection-1734C756A0BC5B7592C72DB5D0DD902F-0-wk-Fact-EA016199E2455F29B8C686DD572B617E" name="us-gaap:AvailableForSaleSecuritiesTextBlock">The following table summarizes the estimated fair value of Autodesk's securities classified by the contractual maturity date of the security:</ix:nonnumeric></span></div><ix:continuation continuedat="TextSelection-1734C756A0BC5B7592C72DB5D0DD902F-2" id="TextSelection-1734C756A0BC5B7592C72DB5D0DD902F-1"><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-align:left;font-size:10pt;"><ix:continuation id="TextSelection-1734C756A0BC5B7592C72DB5D0DD902F-2"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:99.90243902439025%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:73%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2018</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Cost</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Fair Value</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Due within 1 year</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10751-wk-Fact-C3511857CC4B5056B188320B3A0BB108" name="us-gaap:AvailableForSaleSecuritiesDebtMaturitiesWithinOneYearAmortizedCost" scale="6" unitref="usd">148.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10770-wk-Fact-E66D9C999962523080342D6C2F92F928" name="us-gaap:AvailableForSaleSecuritiesDebtMaturitiesWithinOneYearFairValue" scale="6" unitref="usd">148.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Due in 1 year through 5 years</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10785-wk-Fact-F6BE4CB7B1AC5F8B9096598F12057BBE" name="us-gaap:AvailableForSaleSecuritiesDebtMaturitiesAfterOneThroughFiveYearsAmortizedCost" scale="6" unitref="usd">167.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10804-wk-Fact-FA8FFC2CEB8F5ABCAA7A1465246E4286" name="us-gaap:AvailableForSaleSecuritiesDebtMaturitiesAfterOneThroughFiveYearsFairValue" scale="6" unitref="usd">166.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Due in 5 years through 10 years</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10824-wk-Fact-4E1F0A71FECC5A8CB8BA811B02726AFC" name="us-gaap:AvailableForSaleSecuritiesDebtMaturitiesAfterFiveThroughTenYearsAmortizedCost" scale="6" unitref="usd">3.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10843-wk-Fact-3402B4270B295FA7B0656AEEB2BD7FFA" name="us-gaap:AvailableForSaleSecuritiesDebtMaturitiesAfterFiveThroughTenYearsFairValue" scale="6" unitref="usd">3.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Due after 10 years</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10863-wk-Fact-9F8881CC74C855DD939F34C132B785A8" name="us-gaap:AvailableForSaleSecuritiesDebtMaturitiesAfterTenYearsAmortizedCost" scale="6" unitref="usd">1.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10882-wk-Fact-7AB26B08860F5514A760B018A89D7223" name="us-gaap:AvailableForSaleSecuritiesDebtMaturitiesAfterTenYearsFairValue" scale="6" unitref="usd">1.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10907-wk-Fact-2096BDEF6E60514C986E78A592A0BB5D" name="us-gaap:AvailableForSaleDebtSecuritiesAmortizedCostBasis" scale="6" unitref="usd">321.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e10926-wk-Fact-C7974761B75750DBBAD629267389B825" name="us-gaap:AvailableForSaleSecuritiesDebtMaturitiesWithoutSingleMaturityDateFairValue" scale="6" unitref="usd">320.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></ix:continuation><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, and </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk had </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="0" format="ixt-sec:numwordsen" id="d9845490e10953-wk-Fact-05AC389140255CEFAFB486FF53C927C2" name="adsk:DebtSecuritiesAvailableforsaleContinuousUnrealizedLossPosition12MonthsorLongerAccumulatedLoss" scale="0" unitref="usd">no</ix:nonfraction></span></span><span style="font-family:inherit;font-size:10pt;"> material securities, individually and in the aggregate, in a continuous unrealized loss position for greater than twelve months. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">There was </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt-sec:numwordsen" id="d9845490e10962-wk-Fact-920A918648A452D29936BC2C0495A9EE" name="adsk:DebtSecuritiesRealizedGainLoss" scale="6" unitref="usd">no</ix:nonfraction></span></span><span style="font-family:inherit;font-size:10pt;"> </span><span style="font-family:inherit;font-size:10pt;">loss</span><span style="font-family:inherit;font-size:10pt;"> or gain for the sales or redemptions of securities during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. Gains and losses resulting from the sale or redemption of securities are recorded in “</span><span style="font-size:10pt;">Interest and other expense, net</span><span style="font-family:inherit;font-size:10pt;">” on the Company's Condensed Consolidated Statements of Operations. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Proceeds from the sale and maturity of marketable securities for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, were </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11000-wk-Fact-1B52ED7527F25C60BB6D13EEB5F14B7C" name="us-gaap:ProceedsFromSaleAndMaturityOfMarketableSecurities" scale="6" unitref="usd">74.8</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11004-wk-Fact-2166109DB4255072B50ACF5BCC71FE76" name="us-gaap:ProceedsFromSaleAndMaturityOfMarketableSecurities" scale="6" unitref="usd">382.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, respectively.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Non-marketable equity securities</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, and </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk had </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11026-wk-Fact-8216C8F660185345B8C44CF0CF5979C5" name="adsk:EquitySecuritieswithoutReadilyDeterminableFairValueAmount" scale="6" unitref="usd">114.8</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11030-wk-Fact-26C91F24821655ADA3AE5FE154E967E5" name="adsk:EquitySecuritieswithoutReadilyDeterminableFairValueAmount" scale="6" unitref="usd">112.3</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, respectively, in direct investments in privately held companies. These non-marketable equity securities investments do not have readily determined </span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">16</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-5" id="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-4"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">fair value and with the adoption of ASU 2016-01 in the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk elected to use the measurement alternative to account for the adjustment to these investments in a given quarter. See "Note </span><span style="font-family:inherit;font-size:10pt;">2</span><span style="font-family:inherit;font-size:10pt;">. </span><span style="font-family:inherit;font-size:10pt;">Recently Issued Accounting Standards</span><span style="font-family:inherit;font-size:10pt;">" for more details on the adoption. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">These investments are periodically assessed for impairment based on available information such as current cash positions, earnings and cash flow positions, earnings and cash flow forecasts, recent operational performance and any other readily available market data. Autodesk does not intend to sell these investments and it is not more likely than not that Autodesk will be required to sell the investment before recovery of the amortized cost bases. If Autodesk determines that an impairment has occurred, Autodesk writes down the investment to its fair value. During the </span><span style="font-family:inherit;font-size:10pt;">three months</span><span style="font-family:inherit;font-size:10pt;"> ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk recorded </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11067-wk-Fact-15B225512D5A52A2B5B17D95A2AF62BD" name="adsk:EquitySecuritieswithoutReadilyDeterminableFairValueImpairmentLossAnnualAmount" scale="6" unitref="usd">2.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> in impairments on its privately held investments. Therefore, Autodesk does not consider the remaining investments to be impaired at </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. During the </span><span style="font-family:Times New Roman;">three months ended</span><span style="font-family:inherit;font-size:10pt;"> </span><span style="font-family:inherit;font-size:10pt;">April 30, 2017</span><span style="font-family:inherit;font-size:10pt;">, Autodesk recorded </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11085-wk-Fact-0DC5AC2FAE4353D5B4467361E2F69341" name="adsk:EquitySecuritieswithoutReadilyDeterminableFairValueImpairmentLossAnnualAmount" scale="6" unitref="usd">0.5</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> in impairments on its privately held investments. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Under the measurement alternative method, investments are measured at cost, less any impairments, plus or minus changes resulting from observable price changes in orderly transactions for the identical or similar investment of the same issuer in the current period. To determine if a transaction is for a similar investment, Autodesk considers the rights and obligations between the investments and the extent to which those differences would affect the fair values of those investments with additional consideration for the stage of development of the investee company. The fair value would then be adjusted positively or negatively based on available information such as pricing in recent rounds of financing. During the </span><span style="font-family:Times New Roman;">three months ended</span><span style="font-family:inherit;font-size:10pt;"> </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk recorded </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11103-wk-Fact-316560C01EC509A453A4B80F84100E47" name="adsk:EquitySecuritieswithoutReadilyDeterminableFairValueUpwardPriceAdjustmentAnnualAmount" scale="6" unitref="usd">4.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> as a positive adjustment on certain of its privately held investments.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Derivative Financial Instruments</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Under its risk management strategy, Autodesk uses derivative instruments to manage its short-term exposures to fluctuations in foreign currency exchange rates which exist as part of ongoing business operations. Autodesk's general practice is to hedge a portion of transaction exposures denominated in euros, Japanese yen, Swiss francs, British pounds, Canadian dollars and Australian dollars. These instruments have maturities between </span><span style="font-family:inherit;font-size:10pt;">one</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">twelve</span><span style="font-family:inherit;font-size:10pt;"> months in the future. Autodesk does not enter into derivative instrument transactions for trading or speculative purposes. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The bank counterparties to the derivative contracts potentially expose Autodesk to credit-related losses in the event of their nonperformance. However, to mitigate that risk, Autodesk only contracts with counterparties who meet the Company's minimum requirements under its counterparty risk assessment process. Autodesk monitors ratings, credit spreads and potential downgrades on at least a quarterly basis. Based on Autodesk's ongoing assessment of counterparty risk, the Company will adjust its exposure to various counterparties. Autodesk generally enters into master netting arrangements, which reduce credit risk by permitting net settlement of transactions with the same counterparty. However, Autodesk does not have any master netting arrangements in place with collateral features.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Foreign currency contracts designated as cash flow hedges </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk uses foreign currency contracts to reduce the exchange rate impact on a portion of the net revenue or operating expense of certain anticipated transactions. These contracts are designated and documented as cash flow hedges. The effectiveness of the cash flow hedge contracts is assessed quarterly using regression analysis as well as other timing and probability criteria. To receive cash flow hedge accounting treatment, all hedging relationships are formally documented at the inception of the hedge and the hedges are expected to be highly effective in offsetting changes to future cash flows on hedged transactions. The gross gains and losses on these hedges are included in “</span><span style="font-size:10pt;">Accumulated other comprehensive loss</span><span style="font-family:inherit;font-size:10pt;">” and are reclassified into earnings at the time the forecasted revenue or expense is recognized. In the event the underlying forecasted transaction does not occur, or it becomes probable that it will not occur, Autodesk reclassifies the gain or loss on the related cash flow hedge from “</span><span style="font-size:10pt;">Accumulated other comprehensive loss</span><span style="font-family:inherit;font-size:10pt;">” to “</span><span style="font-size:10pt;">Interest and other expense, net</span><span style="font-family:inherit;font-size:10pt;">” in the Company's Condensed Consolidated Financial Statements at that time. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The net notional amounts of these contracts are presented net settled and were </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2019Q1_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11161-wk-Fact-09B94BC8D05A5ED4843E4858723A94B0" name="invest:DerivativeNotionalAmount" scale="6" unitref="usd">574.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2018Q4_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11169-wk-Fact-EF8A28E9180F5D6B97DA0094E7A7F946" name="invest:DerivativeNotionalAmount" scale="6" unitref="usd">619.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">. Outstanding contracts are recognized as either assets or liabilities on the balance sheet at fair value. The majority of the net </span><span style="font-family:inherit;font-size:10pt;">loss</span><span style="font-family:inherit;font-size:10pt;"> of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11182-wk-Fact-842345585FA550349AFE9082C61D152F" name="us-gaap:InterestRateCashFlowHedgeGainLossToBeReclassifiedDuringNext12MonthsNet" scale="6" sign="-" unitref="usd">10.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> remaining in “</span><span style="font-size:10pt;">Accumulated other comprehensive loss</span><span style="font-family:inherit;font-size:10pt;">” as of </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, is expected to be recognized into earnings within the next twelve months.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">17</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-6" id="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-5"><div style="line-height:120%;text-align:left;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Derivatives not designated as hedging instruments </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk uses foreign currency contracts that are not designated as hedging instruments to reduce the exchange rate risk associated primarily with foreign currency denominated receivables and payables. These forward contracts are marked-to-market at the end of each fiscal quarter with gains and losses recognized as “</span><span style="font-size:10pt;">Interest and other expense, net</span><span style="font-family:inherit;font-size:10pt;">.” These derivative instruments do not subject the Company to material balance sheet risk due to exchange rate movements because gains and losses on these derivative instruments are intended to offset the gains or losses resulting from the settlement of the underlying foreign currency denominated receivables and payables. The net notional amounts of these foreign currency contracts are presented net settled and were </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2019Q1_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11210-wk-Fact-B9C05194B5335C04A7EC00E949CBD3C8" name="invest:DerivativeNotionalAmount" scale="6" unitref="usd">220.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2018Q4_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11218-wk-Fact-4B462AABA932534186E575157C6D8FC5" name="invest:DerivativeNotionalAmount" scale="6" unitref="usd">329.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In addition to these foreign currency contracts, Autodesk holds derivative instruments issued by privately held companies, which are not designated as hedging instruments. These derivatives consist of certain conversion options on the convertible debt securities held by Autodesk and an option to acquire a privately held company. These derivatives are recorded at fair value as of each balance sheet date and are recorded in “</span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">Other assets</span><span style="font-family:inherit;font-size:10pt;">.” Changes in the fair values of these instruments are recognized in “</span><span style="font-size:10pt;">Interest and other expense, net</span><span style="font-family:inherit;font-size:10pt;">.” </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Fair Value of Derivative Instruments</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-D5B0E2FB58BE528A9CB5A0038DE51C51-1" escape="true" id="TextSelection-D5B0E2FB58BE528A9CB5A0038DE51C51-0-wk-Fact-F9BBC250B34D533DA1C89FC777FA7085" name="us-gaap:ScheduleOfDerivativeInstrumentsInStatementOfFinancialPositionFairValueTextBlock">The fair values of derivative instruments in Autodesk’s Condensed Consolidated Balance Sheets were as follows as of </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-D5B0E2FB58BE528A9CB5A0038DE51C51-2" id="TextSelection-D5B0E2FB58BE528A9CB5A0038DE51C51-1"><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">:</span></ix:continuation></div><ix:continuation continuedat="TextSelection-D5B0E2FB58BE528A9CB5A0038DE51C51-3" id="TextSelection-D5B0E2FB58BE528A9CB5A0038DE51C51-2"><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="10"></td></tr><tr><td style="width:49%;"></td><td style="width:23%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td rowspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Balance Sheet Location</span></div></td><td rowspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Fair Value at</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">January 31, 2018</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-style:italic;">Derivative Assets</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:48px;text-indent:-24px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Foreign currency contracts designated as cash flow hedges</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Prepaid expenses and other current assets</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_PrepaidExpensesAndOtherCurrentAssetsMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11461-wk-Fact-1A48215E1B8E572D8E1A97E0A38F8947" name="us-gaap:DerivativeFairValueOfDerivativeAssetAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">4.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_PrepaidExpensesAndOtherCurrentAssetsMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11480-wk-Fact-F4AEF239DD6A5E4C9432357747BF9D9D" name="us-gaap:DerivativeFairValueOfDerivativeAssetAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">6.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Derivatives not designated as hedging instruments</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Prepaid expenses and other current assets and Other assets</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_us-gaap_PrepaidExpensesAndOtherCurrentAssetsMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11505-wk-Fact-09A55FB723045ACC9EA6F8B45D94EA85" name="us-gaap:DerivativeFairValueOfDerivativeAssetAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">6.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_us-gaap_PrepaidExpensesAndOtherCurrentAssetsMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11524-wk-Fact-F586FF8DBC3355E4BDD2159F917C2C12" name="us-gaap:DerivativeFairValueOfDerivativeAssetAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">2.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total derivative assets</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11559-wk-Fact-ABBF7BCDFB885AD89E112868D9B7FBF8" name="us-gaap:DerivativeFairValueOfDerivativeAssetAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">11.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11578-wk-Fact-A800522F2DA8537B817D4003DD4AF81F" name="us-gaap:DerivativeFairValueOfDerivativeAssetAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">8.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-style:italic;">Derivative Liabilities</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:24px;text-indent:-24px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Foreign currency contracts designated as cash flow hedges</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other accrued liabilities</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_OtherAccruedLiabilitiesMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11659-wk-Fact-FF11C359EDF25055B581B7E6802B8EFD" name="us-gaap:DerivativeFairValueOfDerivativeLiabilityAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">3.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_OtherAccruedLiabilitiesMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11678-wk-Fact-E310AB2D86715BF79546AD3B78CE1E83" name="us-gaap:DerivativeFairValueOfDerivativeLiabilityAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">18.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Derivatives not designated as hedging instruments</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other accrued liabilities</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_BalanceSheetLocationAxis_adsk_OtherAccruedLiabilitiesMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11703-wk-Fact-CAA5BC1420795B3EBA5BD43F84E0AF95" name="us-gaap:DerivativeFairValueOfDerivativeLiabilityAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">2.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_BalanceSheetLocationAxis_adsk_OtherAccruedLiabilitiesMember_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11722-wk-Fact-D249750A1F2D539388A263E3AF3C67AA" name="us-gaap:DerivativeFairValueOfDerivativeLiabilityAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">7.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total derivative liabilities</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11757-wk-Fact-1461BFFAAC39594FAA5E90C95FFFC82E" name="us-gaap:DerivativeFairValueOfDerivativeLiabilityAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">5.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11776-wk-Fact-D8A2D608FA1E53C787944D7A58EA2B54" name="us-gaap:DerivativeFairValueOfDerivativeLiabilityAmountNotOffsetAgainstCollateral" scale="6" unitref="usd">26.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-D5B0E2FB58BE528A9CB5A0038DE51C51-3"><br/></ix:continuation></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-61C771E18A0B5FA7B3DCDDCBC6E7C7FE-1" escape="true" id="TextSelection-61C771E18A0B5FA7B3DCDDCBC6E7C7FE-0-wk-Fact-73F4BA56531D58F28557F0BE33789CD1" name="us-gaap:ScheduleOfDerivativeInstrumentsGainLossInStatementOfFinancialPerformanceTextBlock">The effects of derivatives designated as hedging instruments on Autodesk’s Condensed Consolidated Statements of Operations were as follows for the </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-61C771E18A0B5FA7B3DCDDCBC6E7C7FE-2" id="TextSelection-61C771E18A0B5FA7B3DCDDCBC6E7C7FE-1"><span style="font-family:inherit;font-size:10pt;">three months</span><span style="font-family:inherit;font-size:10pt;"> ended </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">2017</span><span style="font-family:inherit;font-size:10pt;"> (amounts presented include any income tax effects):</span></ix:continuation></div><ix:continuation continuedat="TextSelection-61C771E18A0B5FA7B3DCDDCBC6E7C7FE-3" id="TextSelection-61C771E18A0B5FA7B3DCDDCBC6E7C7FE-2"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:99.90243902439025%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:75%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Foreign Currency Contracts</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-style:italic;background-color:#cceeff;">Am</span><span style="font-family:inherit;font-size:9pt;font-style:italic;">ount of gain (loss) recognized in accumulated other comprehensive loss </span><span style="font-family:inherit;font-size:9pt;font-style:italic;background-color:#cceeff;">on derivatives (effective portion)</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e11988-wk-Fact-7923091EA10ACFE5A40E743E234E17C8" name="us-gaap:DerivativeInstrumentsGainLossRecognizedInOtherComprehensiveIncomeEffectivePortionNet" scale="6" unitref="usd">6.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12007-wk-Fact-F23E136BE878AE18D636743E23327538" name="us-gaap:DerivativeInstrumentsGainLossRecognizedInOtherComprehensiveIncomeEffectivePortionNet" scale="6" sign="-" unitref="usd">2.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-style:italic;">Amount and location of (loss) gain reclassified from accumulated other comprehensive loss into (loss) income (effective portion)</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:3px double #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:3px double #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net revenue</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_us-gaap_SalesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12069-wk-Fact-9083E9469C52EB8A14A0743E233CCDE4" name="us-gaap:DerivativeInstrumentsGainLossReclassifiedFromAccumulatedOCIIntoIncomeEffectivePortionNet" scale="6" sign="-" unitref="usd">2.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_us-gaap_SalesMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12089-wk-Fact-E498E89789C8985E0B24743E234ABF88" name="us-gaap:DerivativeInstrumentsGainLossReclassifiedFromAccumulatedOCIIntoIncomeEffectivePortionNet" scale="6" unitref="usd">2.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Operating expenses</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_us-gaap_OperatingExpenseMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12104-wk-Fact-4E3D8B5FA00A757BD0D2743E23143402" name="us-gaap:DerivativeInstrumentsGainLossReclassifiedFromAccumulatedOCIIntoIncomeEffectivePortionNet" scale="6" unitref="usd">3.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_us-gaap_OperatingExpenseMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12123-wk-Fact-B99A16DFE679BA66D20C743E231E56E3" name="us-gaap:DerivativeInstrumentsGainLossReclassifiedFromAccumulatedOCIIntoIncomeEffectivePortionNet" scale="6" sign="-" unitref="usd">2.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12149-wk-Fact-76E5B95C90CD54EA9594A67CE1591D45" name="us-gaap:DerivativeInstrumentsGainLossReclassifiedFromAccumulatedOCIIntoIncomeEffectivePortionNet" scale="6" unitref="usd">0.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12168-wk-Fact-FD07E55BB5105F6BA234BE8CF97E7AB5" name="us-gaap:DerivativeInstrumentsGainLossReclassifiedFromAccumulatedOCIIntoIncomeEffectivePortionNet" scale="6" sign="-" unitref="usd">0.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-style:italic;">Amount and location of loss recognized in (loss) income on derivatives (ineffective portion and amount excluded from effectiveness testing)</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Interest and other expense, net</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_adsk_InterestAndOtherIncomeExpenseNetMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12230-wk-Fact-29A8324DFE0AD91E1B53743E23285078" name="us-gaap:DerivativeInstrumentsGainLossRecognizedInIncomeIneffectivePortionAndAmountExcludedFromEffectivenessTestingNet" scale="6" sign="-" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_DesignatedAsHedgingInstrumentMember_us-gaap_IncomeStatementLocationAxis_adsk_InterestAndOtherIncomeExpenseNetMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12250-wk-Fact-8E46A5413C8D05697200743E23553E06" name="us-gaap:DerivativeInstrumentsGainLossRecognizedInIncomeIneffectivePortionAndAmountExcludedFromEffectivenessTestingNet" scale="6" sign="-" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">18</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-61C771E18A0B5FA7B3DCDDCBC6E7C7FE-4" id="TextSelection-61C771E18A0B5FA7B3DCDDCBC6E7C7FE-3"><ix:continuation continuedat="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-7" id="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-6"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The effects of derivatives not designated as hedging instruments on Autodesk’s Condensed Consolidated Statements of Operations were as follows for the </span><span style="font-family:inherit;font-size:10pt;">three months</span><span style="font-family:inherit;font-size:10pt;"> ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">2017</span><span style="font-family:inherit;font-size:10pt;"> (amounts presented include any income tax effects):</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-align:left;font-size:10pt;"><ix:continuation id="TextSelection-3ED34BD9458C54ECBA0D9C08AFF1DFD7-7"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:99.90243902439025%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:75%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-style:italic;">Amount and location of gain (loss) recognized on derivatives in net (loss) income</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Interest and other expense, net</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember_us-gaap_IncomeStatementLocationAxis_adsk_InterestAndOtherIncomeExpenseNetMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12428-wk-Fact-6F64D5A2A5B9BA6C6417743E1A36713E" name="us-gaap:DerivativeGainLossOnDerivativeNet" scale="6" unitref="usd">4.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1QTD_us-gaap_DerivativeInstrumentRiskAxis_us-gaap_ForeignExchangeContractMember_us-gaap_HedgingDesignationAxis_us-gaap_NondesignatedMember_us-gaap_IncomeStatementLocationAxis_adsk_InterestAndOtherIncomeExpenseNetMember" decimals="-5" format="ixt:numdotdecimal" id="d9845490e12447-wk-Fact-BBD48817B01695B5B25A743E1A3A4D6E" name="us-gaap:DerivativeGainLossOnDerivativeNet" scale="6" sign="-" unitref="usd">1.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div></ix:continuation><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-align:left;padding-left:30px;text-indent:-30px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><ix:continuation id="TextSelection-61C771E18A0B5FA7B3DCDDCBC6E7C7FE-4"><br/></ix:continuation></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">19</span></div></div><hr style="page-break-after:always"/><div><a id="s1894BAE2EA9C56BCB9AB9286BBD795CB"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">6</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-1B3E779F6EDD54F794729E0C39EFEE68-1" escape="true" id="TextSelection-1B3E779F6EDD54F794729E0C39EFEE68-0-wk-Fact-884D48D7F05C5EBEA500CDCA7CB9D2D0" name="us-gaap:DisclosureOfCompensationRelatedCostsShareBasedPaymentsTextBlock"><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">Stock-based Compensation Expense</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-1B3E779F6EDD54F794729E0C39EFEE68-2" id="TextSelection-1B3E779F6EDD54F794729E0C39EFEE68-1"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Restricted Stock Units:</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-D9815DA9EC6D5AB99959DAAF1DBC6D35-1" escape="true" id="TextSelection-D9815DA9EC6D5AB99959DAAF1DBC6D35-0-wk-Fact-5232522D9E8F5036866A3240650EAD34" name="us-gaap:ScheduleOfSharebasedCompensationRestrictedStockAndRestrictedStockUnitsActivityTableTextBlock">A summary of restricted stock activity for the </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-D9815DA9EC6D5AB99959DAAF1DBC6D35-2" id="TextSelection-D9815DA9EC6D5AB99959DAAF1DBC6D35-1"><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, is as follows:</span></ix:continuation></div><ix:continuation continuedat="TextSelection-D9815DA9EC6D5AB99959DAAF1DBC6D35-3" id="TextSelection-D9815DA9EC6D5AB99959DAAF1DBC6D35-2"><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="7"></td></tr><tr><td style="width:73%;"></td><td style="width:12%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Unvested</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Restricted</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Stock Units</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Weighted</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">average grant</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">date fair value</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">per share</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(in thousands)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Unvested restricted stock units at January 31, 2018</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="-2" format="ixt:numdotdecimal" id="d9832015e730-wk-Fact-761EEBDB31EE51BD949540C93DF294B5" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsNonvestedNumber" scale="3" unitref="shares">5,670.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e749-wk-Fact-7A5A2BF02E3C5EC39629DAAB8F83F33A" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsNonvestedWeightedAverageGrantDateFairValue" scale="0" unitref="usdPerShare">82.94</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Granted</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="-2" format="ixt:numdotdecimal" id="d9832015e764-wk-Fact-D2CCA14CB441516B83D3FE3502EEC2DB" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriod" scale="3" unitref="shares">391.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e778-wk-Fact-F986AF0E7F56598E8D5378F2D25D7E6D" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriodWeightedAverageGrantDateFairValue" scale="0" unitref="usdPerShare">143.47</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Vested</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="-2" format="ixt:numdotdecimal" id="d9832015e798-wk-Fact-345F6B8DACA9542C857B1125A6E98756" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsVestedInPeriod" scale="3" unitref="shares">712.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e813-wk-Fact-953F42D0BDEB5A45AD2CDABD0F9E964A" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsVestedInPeriodWeightedAverageGrantDateFairValue" scale="0" unitref="usdPerShare">82.44</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Canceled/Forfeited</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="-2" format="ixt:numdotdecimal" id="d9832015e833-wk-Fact-6C68C9EF181752BD9FC490F9CD4E7B27" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsForfeitedInPeriod" scale="3" unitref="shares">279.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e848-wk-Fact-E2DEA94116FB56278E88AB89B96B7EB8" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsForfeituresWeightedAverageGrantDateFairValue" scale="0" unitref="usdPerShare">80.85</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> Performance Adjustment (1)</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="-2" format="ixt:numdotdecimal" id="d9832015e868-wk-Fact-B0D58373E1D151B3B725C40492E93803" name="adsk:SharebasedCompensationArrangementBySharebasedPaymentAwardEquityInstrumentsOtherThanOptionsAdjustmentsInPeriod" scale="3" unitref="shares">29.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e882-wk-Fact-4735D829126958B09229DB5F6D1BD43E" name="adsk:SharebasedCompensationArrangementBySharebasedPaymentAwardEquityInstrumentsOtherThanOptionsAdjustmentsWeightedAverageGrantDateFairValue" scale="0" unitref="usdPerShare">101.74</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Unvested restricted stock units at April 30, 2018</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="-2" format="ixt:numdotdecimal" id="d9832015e902-wk-Fact-BE4C49EE0963587CA3E0D04A5DD96664" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsNonvestedNumber" scale="3" unitref="shares">5,100.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e921-wk-Fact-838AEB05C4595ED58BF9FBA3058F729A" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsNonvestedWeightedAverageGrantDateFairValue" scale="0" unitref="usdPerShare">88.55</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> _______________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Based on Autodesk's financial results and relative total stockholder return for the fiscal </span><span style="font-family:inherit;font-size:9pt;">2018</span><span style="font-family:inherit;font-size:9pt;"> performance period. The performance stock units were attained at rates ranging from </span><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember_us-gaap_RangeAxis_us-gaap_MinimumMember" decimals="3" format="ixt:numdotdecimal" id="d9832015e950-wk-Fact-6BFF3DBF1B475F2181DA043E80F16846" name="adsk:PerformanceSharesUnitsPayoutPercentage" scale="-2" unitref="number">90.0</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:9pt;"> to </span><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember_us-gaap_RangeAxis_us-gaap_MaximumMember" decimals="3" format="ixt:numdotdecimal" id="d9832015e954-wk-Fact-D262D76C6ACD50DBA8C90A87A7161BDF" name="adsk:PerformanceSharesUnitsPayoutPercentage" scale="-2" unitref="number">117.6</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:9pt;"> of the target award. </span></div></td></tr></table></ix:continuation><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-D9815DA9EC6D5AB99959DAAF1DBC6D35-3"><br/></ix:continuation></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The fair value of the shares vested during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;"> was </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e988-wk-Fact-E9C798D9B14B5572992EAF4DA2F7DCE0" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsVestedInPeriodTotalFairValue" scale="6" unitref="usd">96.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1YTD_us-gaap_AwardTypeAxis_adsk_RestrictedStockUnitsRSUsandPerformanceSharesMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e992-wk-Fact-4877BD8153F851409DE03115BE9B4801" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsVestedInPeriodTotalFairValue" scale="6" unitref="usd">76.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, respectively. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">During the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk granted </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_us-gaap_RestrictedStockUnitsRSUMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1010-wk-Fact-D18731CA44DA5CF7AE5FE84CBF45E2AA" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriod" scale="6" unitref="shares">0.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> restricted stock units. Autodesk recorded stock-based compensation expense related to restricted stock units of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AwardTypeAxis_us-gaap_RestrictedStockUnitsRSUMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1014-wk-Fact-4DF657C142625D0BAC6EEA9956223CA9" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">41.7</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1QTD_us-gaap_AwardTypeAxis_us-gaap_RestrictedStockUnitsRSUMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1018-wk-Fact-1F3893ABDF2155ADB7403E2718C47F51" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">50.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, respectively. The </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1QTD_us-gaap_AwardTypeAxis_us-gaap_RestrictedStockUnitsRSUMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1035-wk-Fact-1F3893ABDF2155ADB7403E2718C47F51" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">50.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> of stock-based compensation expense for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended April 30, </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, includes </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1048-wk-Fact-F965D96F3E837978DFFBB20DDAF9F529" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardAcceleratedCompensationCost" scale="6" unitref="usd">3.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> related to the acceleration of eligible restricted stock awards in conjunction with the Company's former CEO's transition agreement.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">During the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk granted </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1065-wk-Fact-619C1EE65FFA58CCAF3AFF3154615B1C" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriod" scale="6" unitref="shares">0.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> performance stock units for which the ultimate number of shares earned is determined based on the achievement of performance criteria at the end of the stated service and performance period. The performance criteria for the performance stock units are based on Annualized Recurring Revenue ("ARR") and free cash flow per share goals adopted by the Compensation and Human Resource Committee, as well as total stockholder return compared against companies in the S&P Computer Software Select Index or the S&P North American Technology Software Index (“Relative TSR”). These performance stock units vest over a </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;">-year period and have the following vesting schedule:</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Up to one third of the performance stock units may vest following year one, depending upon the achievement of the performance criteria for fiscal 2019 as well as 1-year Relative TSR (covering year one).</span></div></td></tr></table><div style="line-height:120%;padding-left:48px;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Up to one third of the performance stock units may vest following year two, depending upon the achievement of the performance criteria for year two as well as 2-year Relative TSR (covering years one and two).</span></div></td></tr></table><div style="line-height:120%;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Up to one third of the performance stock units may vest following year three, depending upon the achievement of the performance criteria for year three as well as 3-year Relative TSR (covering years one, two and three).</span></div></td></tr></table><div style="line-height:120%;text-align:left;font-size:11pt;"><span style="font-family:inherit;font-size:11pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Performance stock units are not considered outstanding stock at the time of grant, as the holders of these units are not entitled to any of the rights of a stockholder, including voting rights. Autodesk has determined the grant date fair value for these awards using stock price on the date of grant or if the awards are also subject to a market condition, a Monte Carlo simulation model. The fair value of the performance stock units is expensed using the accelerated attribution over the vesting period. Autodesk recorded stock-based compensation expense related to performance stock units of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1106-wk-Fact-24D7C465D8A75E28848B575D67EA1B4C" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">6.5</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1110-wk-Fact-70173C39FD13547F85A9CC948796BC0D" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">10.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, respectively. The </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1127-wk-Fact-70173C39FD13547F85A9CC948796BC0D" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">10.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> of stock-based compensation expense for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended April 30, </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, includes </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1139-wk-Fact-66BCF1FCB9119B88E498B212A2B38EFE" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardAcceleratedCompensationCost" scale="6" unitref="usd">4.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> related to the acceleration of eligible performance stock awards in conjunction with the Company's former CEO's transition agreement.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">20</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-1B3E779F6EDD54F794729E0C39EFEE68-3" id="TextSelection-1B3E779F6EDD54F794729E0C39EFEE68-2"><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">1998 Employee Qualified Stock Purchase Plan (“ESPP”)</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Under Autodesk’s ESPP, which was approved by stockholders in 1998, eligible employees may purchase shares of Autodesk’s common stock at their discretion using up to </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="INF" format="ixt:numdotdecimal" id="d9832015e1153-wk-Fact-6EB96573BDDB57E687F25E7FB9BF7D47" name="adsk:EmployeeStockPurchasePlanMaximumPercentageOfCompensationToPurchaseSharesByEligibleParticipants" scale="-2" unitref="number">15</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> of their eligible compensation, subject to certain limitations, at </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="INF" format="ixt:numdotdecimal" id="d9832015e1157-wk-Fact-709AA04721955EB8A01AE2CDB0C9F90A" name="adsk:EmployeeStockPurchasePlanMinimumPercentageOfCommonStockFairValueDefinedToPurchaseSharesByEligibleParticipants" scale="-2" unitref="number">85</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> of the lower of Autodesk's closing price (fair market value) on the offering date or the exercise date. The offering period for ESPP awards consists of </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="INF" format="ixt-sec:numwordsen" id="d9832015e1161-wk-Fact-411936AD896C556680A001565BB9951C" name="adsk:EmployeeStockPurchasePlanNumberofExercisePeriods" scale="0" unitref="period">four</ix:nonfraction></span></span><span style="font-family:inherit;font-size:10pt;">, </span><span style="font-family:inherit;font-size:10pt;">six</span><span style="font-family:inherit;font-size:10pt;">-month exercise periods within a </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonnumeric contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" format="ixt-sec:durmonth" id="d9832015e1169-wk-Fact-7EBA7F2B754256CFAC4FDAA274CC27A3" name="adsk:EmployeeStockPurchasePlanTermofOfferingPeriod">24</ix:nonnumeric></span></span><span style="font-family:inherit;font-size:10pt;">-month offering period. </span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-04605E53B8AC5A66B2A6B68D4762B266-1" escape="true" id="TextSelection-04605E53B8AC5A66B2A6B68D4762B266-0-wk-Fact-352D122E2EF25C4E9F47FD6C5276A744" name="us-gaap:ScheduleOfShareBasedCompensationEmployeeStockPurchasePlanActivityTableTextBlock">A summary of the ESPP activity for </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-04605E53B8AC5A66B2A6B68D4762B266-2" id="TextSelection-04605E53B8AC5A66B2A6B68D4762B266-1"><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, is as follows:</span></ix:continuation></div><ix:continuation continuedat="TextSelection-04605E53B8AC5A66B2A6B68D4762B266-3" id="TextSelection-04605E53B8AC5A66B2A6B68D4762B266-2"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:73%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Issued shares</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_EmployeeStockMember_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1298-wk-Fact-0B35942446E65468B394AB429BA41A86" name="us-gaap:StockIssuedDuringPeriodSharesEmployeeStockPurchasePlans" scale="6" unitref="shares">0.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_AwardTypeAxis_us-gaap_EmployeeStockMember_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1317-wk-Fact-9815417865615549BDF7B213AF9476DD" name="us-gaap:StockIssuedDuringPeriodSharesEmployeeStockPurchasePlans" scale="6" unitref="shares">1.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Average price of issued shares</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_EmployeeStockMember_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e1342-wk-Fact-91135921B5A153B2A2D010893BAC6ABC" name="adsk:ShareBasedCompensationArrangementByShareBasedPaymentAwardSharesIssuedAveragePrice" scale="0" unitref="usdPerShare">88.45</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_AwardTypeAxis_us-gaap_EmployeeStockMember_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e1361-wk-Fact-B8FBAE727EEB52CEA18A57EE6F727106" name="adsk:ShareBasedCompensationArrangementByShareBasedPaymentAwardSharesIssuedAveragePrice" scale="0" unitref="usdPerShare">38.34</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Weighted average grant date fair value of awards granted under the ESPP (1)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_EmployeeStockMember_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e1381-wk-Fact-4D56AAC396385B68BEFD6A975229EBA3" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodWeightedAverageGrantDateFairValue" scale="0" unitref="usdPerShare">37.64</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_AwardTypeAxis_us-gaap_EmployeeStockMember_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="2" format="ixt:numdotdecimal" id="d9832015e1400-wk-Fact-0BE382E17AE453B4B19CEC249F2ED0FA" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodWeightedAverageGrantDateFairValue" scale="0" unitref="usdPerShare">25.13</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> _______________</span></div></ix:continuation><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><ix:continuation continuedat="TextSelection-04605E53B8AC5A66B2A6B68D4762B266-4" id="TextSelection-04605E53B8AC5A66B2A6B68D4762B266-3"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></ix:continuation></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><ix:continuation id="TextSelection-04605E53B8AC5A66B2A6B68D4762B266-4">Calculated as of the award grant date using the Black-Scholes Merton (“BSM") option pricing model. </ix:continuation></span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Stock-based Compensation Expense</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-95CB12B0A73E5EECB1E907C5C6F399F4-1" escape="true" id="TextSelection-95CB12B0A73E5EECB1E907C5C6F399F4-0-wk-Fact-50DD448164C15ED6A2BE05534F8E183D" name="us-gaap:ScheduleOfEmployeeServiceShareBasedCompensationAllocationOfRecognizedPeriodCostsTextBlock">The following table summarizes stock-based compensation expense for the </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-95CB12B0A73E5EECB1E907C5C6F399F4-2" id="TextSelection-95CB12B0A73E5EECB1E907C5C6F399F4-1"><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, respectively, as follows:</span></ix:continuation></div><ix:continuation continuedat="TextSelection-95CB12B0A73E5EECB1E907C5C6F399F4-3" id="TextSelection-95CB12B0A73E5EECB1E907C5C6F399F4-2"><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div></ix:continuation><div style="line-height:120%;text-align:left;font-size:10pt;"><ix:continuation id="TextSelection-95CB12B0A73E5EECB1E907C5C6F399F4-3"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:73%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of maintenance and subscription revenue</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_adsk_CostofGoodsSoldSubscriptionMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1561-wk-Fact-60F280FD02DC5540BD2A18AF613FF45F" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">2.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_adsk_CostofGoodsSoldSubscriptionMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1580-wk-Fact-3293E3A6F1F938D90C5789EB586B9822" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">2.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of other revenue</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_adsk_LicenseCostsMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1595-wk-Fact-16C9A5D8DA2456ADB7BB563640C44DB2" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">0.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_adsk_LicenseCostsMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1614-wk-Fact-9EA950E574C23DF22BDC89EB5865EC3C" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">1.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Marketing and sales</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_SellingAndMarketingExpenseMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1634-wk-Fact-F831EF11DE1D5B29B08AC6301639DD62" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">24.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_SellingAndMarketingExpenseMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1653-wk-Fact-AB769379ADDFFF27191E89EB5867A49D" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">26.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Research and development</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_ResearchAndDevelopmentExpenseMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1673-wk-Fact-422005E273CD58B0971F634D1F0100C3" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">17.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_ResearchAndDevelopmentExpenseMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1692-wk-Fact-B7E91482F3096AD2123089EB58617D7E" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">21.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">General and administrative</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_GeneralAndAdministrativeExpenseMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1712-wk-Fact-1FC7666A24045031833607AF0F6207BE" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">9.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_IncomeStatementLocationAxis_us-gaap_GeneralAndAdministrativeExpenseMember" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1731-wk-Fact-0F85967E23C485E94A6989EB58635BFC" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">15.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stock-based compensation expense related to stock awards and ESPP purchases</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1751-wk-Fact-4EA6A10CBD7E5260B28F2F2007CC9651" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">54.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1770-wk-Fact-930FBCD39A0353E3BCEC4495AED1D7F8" name="us-gaap:AllocatedShareBasedCompensationExpense" scale="6" unitref="usd">66.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Tax benefit</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1790-wk-Fact-9EF7C88A4B665E04A25EE401DBB41E4B" name="us-gaap:EmployeeServiceShareBasedCompensationTaxBenefitFromCompensationExpense" scale="6" unitref="usd">0.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:zerodash" id="d9832015e1810-wk-Fact-D70118F80E4D6D6AF40F89EB586964E3" name="us-gaap:EmployeeServiceShareBasedCompensationTaxBenefitFromCompensationExpense" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stock-based compensation expense related to stock awards and ESPP purchases, net of tax</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1835-wk-Fact-569819B08F9057109E3457E43F298B7B" name="us-gaap:AllocatedShareBasedCompensationExpenseNetOfTax" scale="6" unitref="usd">54.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9832015e1854-wk-Fact-35BFE946DE585F548F225F9D2ECDC5DB" name="us-gaap:AllocatedShareBasedCompensationExpenseNetOfTax" scale="6" unitref="usd">66.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></ix:continuation><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Stock-based Compensation Expense Assumptions </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk determines the grant date fair value of its share-based payment awards using a BSM option pricing model or the quoted stock price on the date of grant, unless the awards are subject to market conditions, in which case Autodesk uses a binomial-lattice model (e.g., Monte Carlo simulation model). The Monte Carlo simulation model uses multiple input variables to estimate the probability that market conditions will be achieved. <ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-12CE870BA8C15301A0057A7B6FD08603-1" escape="true" id="TextSelection-12CE870BA8C15301A0057A7B6FD08603-0-wk-Fact-2CAA9043A1E75047BB91509409CB25A9" name="us-gaap:DisclosureOfShareBasedCompensationArrangementsByShareBasedPaymentAwardTextBlock">Autodesk uses the following assumptions to estimate the fair value of stock-based awards:</ix:nonnumeric></span></div><ix:continuation continuedat="TextSelection-12CE870BA8C15301A0057A7B6FD08603-2" id="TextSelection-12CE870BA8C15301A0057A7B6FD08603-1"><div style="line-height:120%;text-align:left;padding-left:0px;text-indent:0px;font-size:10pt;"><span style="font-family:inherit;font-size:9pt;"> </span><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:42%;"></td><td style="width:13%;"></td><td style="width:1%;"></td><td style="width:14%;"></td><td style="width:1%;"></td><td style="width:14%;"></td><td style="width:1%;"></td><td style="width:14%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"><br/></span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2017</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Performance Stock Unit</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">ESPP</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Performance Stock Unit</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">ESPP</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Range of expected volatilities</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="3" format="ixt:numdotdecimal" id="d9832015e1993-wk-Fact-E98B7CB14B83FA935052DB9DFCC24634" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedVolatilityRate" scale="-2" unitref="number">35.7</ix:nonfraction>%</span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">33.5 - 37.5%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="3" format="ixt:numdotdecimal" id="d9832015e2011-wk-Fact-501EF821AB1EA938531DDB9E12FAC2BA" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedVolatilityRate" scale="-2" unitref="number">31.8</ix:nonfraction>%</span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">31.4 - 33.7%</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Range of expected lives (in years)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">N/A</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.5 - 2.0</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">N/A</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.5 - 2.0</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Expected dividends</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="INF" format="ixt:zerodash" id="d9832015e2069-wk-Fact-4DDCB0FDA435150028B9D1B452EEECDA" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedDividendRate" scale="-2" unitref="number">—</ix:nonfraction>%</span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="INF" format="ixt:zerodash" id="d9832015e2078-wk-Fact-AD1EB238ED9157CC8E8D7D9D50B1776D" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedDividendRate" scale="-2" unitref="number">—</ix:nonfraction>%</span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="INF" format="ixt:zerodash" id="d9832015e2087-wk-Fact-63B6894EA467592E95F7986BD28A8C57" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedDividendRate" scale="-2" unitref="number">—</ix:nonfraction>%</span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1QTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="INF" format="ixt:zerodash" id="d9832015e2096-wk-Fact-00559CAF4CE38CE799AF89EB4DD5B90B" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsExpectedDividendRate" scale="-2" unitref="number">—</ix:nonfraction>%</span></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Range of risk-free interest rates</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="3" format="ixt:numdotdecimal" id="d9832015e2107-wk-Fact-28F7D96444324474AABFDB9F4103D7DC" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsRiskFreeInterestRate" scale="-2" unitref="number">2.0</ix:nonfraction>%</span></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1.9 - 2.3%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_AwardTypeAxis_us-gaap_PerformanceSharesMember" decimals="3" format="ixt:numdotdecimal" id="d9832015e2125-wk-Fact-7885C6706BAC0852F4B3DB9FA5B8C83F" name="us-gaap:ShareBasedCompensationArrangementByShareBasedPaymentAwardFairValueAssumptionsRiskFreeInterestRate" scale="-2" unitref="number">1.0</ix:nonfraction>%</span></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.9 - 1.3%</span></div></td></tr></table></div><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-12CE870BA8C15301A0057A7B6FD08603-2"><br/></ix:continuation></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk estimates expected volatility for stock-based awards based on the average of the following two measures: (1) a measure of historical volatility in the trading market for the Company’s common stock, and (2) the implied volatility of traded forward call options to purchase shares of the Company’s common stock. The expected volatility for performance stock units subject to market conditions includes the expected volatility of Autodesk's peer companies within the S&P Computer Software</span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">21</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-1B3E779F6EDD54F794729E0C39EFEE68-4" id="TextSelection-1B3E779F6EDD54F794729E0C39EFEE68-3"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> Select Index or S&P North American Technology Software Index with a market capitalization over </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD" decimals="-8" format="ixt:numdotdecimal" id="d9832015e2157-wk-Fact-70C6721ED0CC5EC5B0C1D7122A2E1197" name="adsk:SharebasedCompensationArrangementbySharebasedPaymentAwardFairValueAssumptionsExpectedVolatilityMarketCapitalization" scale="9" unitref="usd">2.0</ix:nonfraction> billion</span></span><span style="font-family:inherit;font-size:10pt;">, depending on the award type. </span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The range of expected lives of ESPP awards are based upon the </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" decimals="INF" format="ixt-sec:numwordsen" id="d9832015e2166-wk-Fact-411936AD896C556680A001565BB9951C" name="adsk:EmployeeStockPurchasePlanNumberofExercisePeriods" scale="0" unitref="period">four</ix:nonfraction></span></span><span style="font-family:inherit;font-size:10pt;">, </span><span style="font-family:inherit;font-size:10pt;">six</span><span style="font-family:inherit;font-size:10pt;">-month exercise periods within a </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonnumeric contextref="FD2019Q1YTD_us-gaap_PlanNameAxis_adsk_EmployeeQualifiedStockPurchasePlan1998EspPlanMember" format="ixt-sec:durmonth" id="d9832015e2174-wk-Fact-7EBA7F2B754256CFAC4FDAA274CC27A3" name="adsk:EmployeeStockPurchasePlanTermofOfferingPeriod">24</ix:nonnumeric></span></span><span style="font-family:inherit;font-size:10pt;">-month offering period.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk does not currently pay, and does not anticipate paying in the foreseeable future, any cash dividends. Consequently, an expected dividend yield of zero is used in the BSM option pricing model and the Monte Carlo simulation model.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The risk-free interest rate used in the BSM option pricing model and the Monte Carlo simulation model for stock-based awards is the historical yield on U.S. Treasury securities with equivalent remaining lives.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-1B3E779F6EDD54F794729E0C39EFEE68-4">Autodesk recognizes expense only for the stock-based awards that ultimately vest. Autodesk accounts for forfeitures of our stock-based awards as those forfeitures occur.</ix:continuation></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="s20995C0383A8599BBE82F48D319A81D1"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">7</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-BE16250BEC6C549C81CE04AD2997DBB7-1" escape="true" id="TextSelection-BE16250BEC6C549C81CE04AD2997DBB7-0-wk-Fact-733406A1052455458BD723C1261378B5" name="us-gaap:IncomeTaxDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">Income Tax</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-BE16250BEC6C549C81CE04AD2997DBB7-2" id="TextSelection-BE16250BEC6C549C81CE04AD2997DBB7-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> Autodesk had an income tax expense of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9830368e513-wk-Fact-B3E7B4EA4D735B2299F70D54BFA5BC76" name="us-gaap:IncomeTaxExpenseBenefit" scale="6" unitref="usd">18.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, relative to pre-tax losses of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9830368e517-wk-Fact-CC160F00705A582AB78F5AF417E644B8" name="us-gaap:IncomeLossFromContinuingOperationsBeforeIncomeTaxesMinorityInterestAndIncomeLossFromEquityMethodInvestments" scale="6" sign="-" unitref="usd">63.8</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, and an income tax expense of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9830368e529-wk-Fact-0BFB3622F67351D48A47A445295794AA" name="us-gaap:IncomeTaxExpenseBenefit" scale="6" unitref="usd">8.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, relative to pre-tax losses of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9830368e534-wk-Fact-44F01A11C96C5BEC9171F56C698F1CF2" name="us-gaap:IncomeLossFromContinuingOperationsBeforeIncomeTaxesMinorityInterestAndIncomeLossFromEquityMethodInvestments" scale="6" sign="-" unitref="usd">121.4</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2017</span><span style="font-family:inherit;font-size:10pt;">. Income tax expense increased primarily due to the mix of increased worldwide earnings, foreign taxes, and withholding taxes. The variance between </span><span style="font-family:inherit;font-size:10pt;">April 30, 2017</span><span style="font-family:inherit;font-size:10pt;">, and </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> was mainly due to reversal of foreign withholding tax accruals in April 30, 2017.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk regularly assesses the need for a valuation allowance against its deferred tax assets. In making that assessment, Autodesk considers both positive and negative evidence related to the likelihood of realization of the deferred tax assets to determine, based on the weight of available evidence, whether it is more likely than not that some or all of the deferred tax assets will not be realized. In evaluating the need for a valuation allowance, Autodesk considered cumulative losses in the United States arising from the Company's business model transition as a significant piece of negative evidence and established a valuation allowance against the Company’s U.S. deferred tax assets in fiscal 2016. Based on the positive and negative evidence as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, the Company continues to maintain a valuation allowance for the U.S. deferred tax assets.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, the Company had </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830368e580-wk-Fact-0A507FDEAC7C5D888A58E9AC40809AF5" name="us-gaap:UnrecognizedTaxBenefits" scale="6" unitref="usd">341.3</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> of gross unrecognized tax benefits, of which </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9830368e584-wk-Fact-4A54720F5C845FB29430FC1FA7FAF069" name="us-gaap:UnrecognizedTaxBenefitsThatWouldImpactEffectiveTaxRate" scale="6" unitref="usd">307.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> would reduce our valuation allowance, if recognized. The remaining </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1_us-gaap_ValuationAllowancesAndReservesTypeAxis_us-gaap_ValuationAllowanceOfDeferredTaxAssetsMember" decimals="-5" format="ixt:numdotdecimal" id="d9830368e588-wk-Fact-F52A8D826D9654ED83C7240EE82EA556" name="us-gaap:UnrecognizedTaxBenefitsThatWouldImpactEffectiveTaxRate" scale="6" unitref="usd">33.4</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> would impact the effective tax rate. It is possible that the amount of unrecognized tax benefits will change in the next twelve months; however, an estimate of the range of the possible change cannot be made at this time.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The Internal Revenue Service is examining the Company's U.S. consolidated federal income tax returns for fiscal years 2014 and 2015. While it is possible that the Company's tax positions may be challenged, the Company believes its positions are consistent with the tax law, and the balance sheet reflects appropriate liabilities for uncertain federal tax positions for the years being examined.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><ix:continuation continuedat="TextSelection-BE16250BEC6C549C81CE04AD2997DBB7-3" id="TextSelection-BE16250BEC6C549C81CE04AD2997DBB7-2"><span style="font-family:inherit;font-size:10pt;">The U.S. Tax Cuts and Jobs Act (the “Tax Act”) was signed into law on December 22, 2017, and provides broad and significant changes to the U.S. corporate income tax regime. As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-BE16250BEC6C549C81CE04AD2997DBB7-3">, Autodesk has not completed the determination of the accounting implications of the Tax Act. The provisional amounts recorded are based on Autodesk’s current interpretation and understanding of the Tax Act and may change as the Company receives additional clarification and implementation guidance and finalizes the analysis of all impacts and positions with regard to the Tax Act. There have been no material changes since January 31, 2018. As additional regulatory guidance is issued, Autodesk will continue to collect and analyze necessary data and may adjust provisional amounts previously recorded in the period in which the adjustments are made. Pursuant to Staff Accounting Bulletin 118 (“SAB 118”), Autodesk will complete the accounting for the tax effects of all provisions of the Tax Act within the required measurement period not to extend beyond one year from the enactment date.</ix:continuation></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">22</span></div></div><hr style="page-break-after:always"/><div><a id="sF066B0F56BA75F17A39A577CD3C4311B"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">8</span><span style="font-family:inherit;font-size:10pt;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-8F43CA54E3B154A0A6CBF3E5C18FA2E8-1" escape="true" id="TextSelection-8F43CA54E3B154A0A6CBF3E5C18FA2E8-0-wk-Fact-779729FBF3DE596A80AB01EDBDB0B417" name="us-gaap:IntangibleAssetsDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Other Intangible Assets, Net</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-8F43CA54E3B154A0A6CBF3E5C18FA2E8-2" id="TextSelection-8F43CA54E3B154A0A6CBF3E5C18FA2E8-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-444004CA29855E29B540ABD0EEC9DD6F-1" escape="true" id="TextSelection-444004CA29855E29B540ABD0EEC9DD6F-0-wk-Fact-E9063A34EC5551F69FA925DA11F5E796" name="us-gaap:ScheduleOfFiniteLivedIntangibleAssetsTableTextBlock">Other intangible assets including developed technologies, customer relationships, trade names, patents, user lists and the related accumulated amortization were as follows:</ix:nonnumeric></span></div><ix:continuation continuedat="TextSelection-444004CA29855E29B540ABD0EEC9DD6F-2" id="TextSelection-444004CA29855E29B540ABD0EEC9DD6F-1"><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:73%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">January 31, 2018</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Developed technologies, at cost</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FiniteLivedIntangibleAssetsByMajorClassAxis_us-gaap_DevelopedTechnologyRightsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845483e592-wk-Fact-684D1C9E2ED35918BD7D5C6DF96EEC36" name="us-gaap:FiniteLivedIntangibleAssetsGross" scale="6" unitref="usd">577.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FiniteLivedIntangibleAssetsByMajorClassAxis_us-gaap_DevelopedTechnologyRightsMember" decimals="-5" format="ixt:numdotdecimal" id="d9845483e611-wk-Fact-FA645CA8C35C5F059D7DDD5F8B5264A7" name="us-gaap:FiniteLivedIntangibleAssetsGross" scale="6" unitref="usd">578.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Customer relationships, trade names, patents, and user lists, at cost (1)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_FiniteLivedIntangibleAssetsByMajorClassAxis_adsk_CustomerRelationshipsTradeNamesPatentsandUserListMember" decimals="-5" format="ixt:numdotdecimal" id="d9845483e626-wk-Fact-EE51EB83550B5B5DB925A4336D94712E" name="us-gaap:FiniteLivedIntangibleAssetsGross" scale="6" unitref="usd">370.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_FiniteLivedIntangibleAssetsByMajorClassAxis_adsk_CustomerRelationshipsTradeNamesPatentsandUserListMember" decimals="-5" format="ixt:numdotdecimal" id="d9845483e645-wk-Fact-1FEB74E8AC235FBA8D95915272E7719F" name="us-gaap:FiniteLivedIntangibleAssetsGross" scale="6" unitref="usd">372.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other intangible assets, at cost (2)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845483e665-wk-Fact-E8BB1063964251E0A4F25277AFB44C88" name="us-gaap:FiniteLivedIntangibleAssetsGross" scale="6" unitref="usd">947.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845483e684-wk-Fact-25A29FB9C18A50EDB44D44DB6975A9F8" name="us-gaap:FiniteLivedIntangibleAssetsGross" scale="6" unitref="usd">951.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Less: Accumulated amortization</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845483e704-wk-Fact-FE12A70127A453448828E30FEA74FCEA" name="us-gaap:FiniteLivedIntangibleAssetsAccumulatedAmortization" scale="6" unitref="usd">900.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845483e724-wk-Fact-3B9AFB6560215A2389598D46BC2E1FA3" name="us-gaap:FiniteLivedIntangibleAssetsAccumulatedAmortization" scale="6" unitref="usd">895.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other intangible assets, net</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845483e750-wk-Fact-10A7F1A8E03B549B94DD9B0F8FAD5AB6" name="us-gaap:FiniteLivedIntangibleAssetsNet" scale="6" unitref="usd">46.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845483e769-wk-Fact-54F1AE4E643F5BAD8D1778A7F0026F5D" name="us-gaap:FiniteLivedIntangibleAssetsNet" scale="6" unitref="usd">55.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">_______________ </span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Included in “Other assets” in the accompanying Condensed Consolidated Balance Sheets. </span></div></td></tr></table></ix:continuation></ix:continuation><ix:continuation continuedat="TextSelection-444004CA29855E29B540ABD0EEC9DD6F-3" id="TextSelection-444004CA29855E29B540ABD0EEC9DD6F-2"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><ix:continuation continuedat="TextSelection-8F43CA54E3B154A0A6CBF3E5C18FA2E8-3" id="TextSelection-8F43CA54E3B154A0A6CBF3E5C18FA2E8-2"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></ix:continuation></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><ix:continuation id="TextSelection-8F43CA54E3B154A0A6CBF3E5C18FA2E8-3">Includes the effects of foreign currency translation.</ix:continuation></span></div></td></tr></table></ix:continuation><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-444004CA29855E29B540ABD0EEC9DD6F-3"><br/></ix:continuation></span></div><div><a id="s9EFC245A7D9B50C494BD7AF7045BB96A"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">9</span><span style="font-family:inherit;font-size:10pt;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-FEF6BEFD9CBE518A92452B2021D78610-1" escape="true" id="TextSelection-FEF6BEFD9CBE518A92452B2021D78610-0-wk-Fact-70EF560A3CB254E0A6D932745F5800B8" name="us-gaap:GoodwillDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Goodwill</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-FEF6BEFD9CBE518A92452B2021D78610-2" id="TextSelection-FEF6BEFD9CBE518A92452B2021D78610-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Goodwill consists of the excess of consideration transferred over the fair value of net assets acquired in business combinations. <ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-BA798CE172D65745B47282B60234A01C-1" escape="true" id="TextSelection-BA798CE172D65745B47282B60234A01C-0-wk-Fact-B9851848278E528497D597A5040F0E8D" name="us-gaap:ScheduleOfGoodwillTextBlock">The following table summarizes the changes in the carrying amount of goodwill for the </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-BA798CE172D65745B47282B60234A01C-2" id="TextSelection-BA798CE172D65745B47282B60234A01C-1"><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">:</span></ix:continuation></div><ix:continuation continuedat="TextSelection-BA798CE172D65745B47282B60234A01C-3" id="TextSelection-BA798CE172D65745B47282B60234A01C-2"><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div></ix:continuation><div style="line-height:120%;text-align:left;font-size:10pt;"><ix:continuation id="TextSelection-BA798CE172D65745B47282B60234A01C-3"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="4"></td></tr><tr><td style="width:87%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Balance as of January 31, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845194e557-wk-Fact-AA02C60F482C511781D696BC2C00942B" name="us-gaap:GoodwillGross" scale="6" unitref="usd">1,769.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Less: accumulated impairment losses as of January 31, 2018</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845194e572-wk-Fact-2F98B625D52A5507A25014544252BC9E" name="us-gaap:GoodwillImpairedAccumulatedImpairmentLoss" scale="6" unitref="usd">149.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:18px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net balance as of January 31, 2018</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9845194e593-wk-Fact-C57526A93D07556A849C047A6CD36DFC" name="us-gaap:Goodwill" scale="6" unitref="usd">1,620.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Effect of foreign currency translation</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9845194e613-wk-Fact-9C2D68B9907B5FA8A2A82C1FACEB45B1" name="us-gaap:GoodwillTranslationAndPurchaseAccountingAdjustments" scale="6" sign="-" unitref="usd">15.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Balance as of April 30, 2018</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9845194e639-wk-Fact-902A63E8D60250EF99923288E6AB42B7" name="us-gaap:Goodwill" scale="6" unitref="usd">1,604.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></ix:continuation><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk operates as a single operating segment and single reporting unit. As such, when Autodesk tests goodwill for impairment annually in its fourth fiscal quarter, it is performed on the Company's single reporting unit. Autodesk performs impairment testing more often if circumstances indicate a potential impairment may exist, or if events have affected the composition of reporting units.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">When goodwill is assessed for impairment, Autodesk has the option to perform an assessment of qualitative factors of impairment (“optional assessment”) prior to necessitating a quantitative impairment test. Should the optional assessment be used for any given fiscal year, qualitative factors to consider include cost factors; financial performance; legal, regulatory, contractual, political, business, or other factors; entity specific factors; industry and market considerations, macroeconomic conditions, and other relevant events and factors affecting the reporting unit. If, after assessing the totality of events or circumstances, it is more likely than not that the fair value of the reporting unit is greater than its carrying value, then performing the quantitative impairment test is unnecessary.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The quantitative impairment test is necessary when either Autodesk does not use the optional assessment or, as a result of the optional assessment, it is not more likely than not that the fair value of the reporting unit is greater than its carrying value. In situations in which an entity's reporting unit is publicly traded, the fair value of the Company may be approximated by its market capitalization, in performing the quantitative impairment test. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Goodwill impairment exists when the estimated fair value of goodwill is less than its carrying value. If impairment exists, the carrying value of the goodwill is reduced to fair value through an impairment charge recorded in our statements of operations. The process of evaluating the potential impairment of goodwill is subjective and requires significant judgment at many points during the analysis. The value of Autodesk’s goodwill could also be impacted by future adverse changes such as: (i) declines in Autodesk’s actual financial results, (ii) a sustained decline in Autodesk’s market capitalization, (iii) a significant slowdown in the worldwide economy or the industries Autodesk serves, or (iv) changes in Autodesk’s business strategy.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-indent:30px;font-size:10pt;"><ix:continuation continuedat="TextSelection-FEF6BEFD9CBE518A92452B2021D78610-3" id="TextSelection-FEF6BEFD9CBE518A92452B2021D78610-2"><span style="font-family:inherit;font-size:10pt;">There was </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="INF" format="ixt-sec:numwordsen" id="d9845194e681-wk-Fact-E56C56ECD9F15560A72CFEAEF85ED722" name="us-gaap:GoodwillImpairmentLoss" scale="6" unitref="usd">no</ix:nonfraction></span></span><span style="font-family:inherit;font-size:10pt;"> goodwill impairment during the </span><span style="font-family:inherit;font-size:10pt;">three months</span><span style="font-family:inherit;font-size:10pt;"> ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-FEF6BEFD9CBE518A92452B2021D78610-3">.</ix:continuation></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">23</span></div></div><hr style="page-break-after:always"/><div><a id="sBB43A83D5EB85241ACD047DBEAC15F05"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">10</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-8AB97B7A45C75ADAB18F65160F8B4F2D-1" escape="true" id="TextSelection-8AB97B7A45C75ADAB18F65160F8B4F2D-0-wk-Fact-000CDB1CFB7055E1B54304028BC70EBA" name="us-gaap:CompensationRelatedCostsGeneralTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Deferred Compensation</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-8AB97B7A45C75ADAB18F65160F8B4F2D-2" id="TextSelection-8AB97B7A45C75ADAB18F65160F8B4F2D-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">At </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk had marketable securities totaling </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9846078e517-wk-Fact-D428659388675CF3943D1E48816C4F95" name="us-gaap:MarketableSecurities" scale="6" unitref="usd">371.4</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, of which </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1_us-gaap_FinancialInstrumentAxis_us-gaap_MutualFundMember" decimals="-5" format="ixt:numdotdecimal" id="d9846078e521-wk-Fact-368F59F86BC2523488E4F8132E23D1D4" name="us-gaap:TradingSecuritiesDebt" scale="6" unitref="usd">59.4</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> related to investments in debt and equity securities that are held in a rabbi trust under non-qualified deferred compensation plans. The total related deferred compensation liability was </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2019Q1_adsk_FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis_adsk_RabbiTrustMember" decimals="-5" format="ixt:numdotdecimal" id="d9846078e525-wk-Fact-2E2B1361A054572594376DC3DFA679B2" name="us-gaap:DeferredCompensationLiabilityCurrentAndNoncurrent" scale="6" unitref="usd">59.4</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, of which $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FI2019Q1_adsk_FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis_adsk_RabbiTrustMember" decimals="-5" format="ixt:numdotdecimal" id="d9846078e534-wk-Fact-834CADFA836355BE86F30A79D40EE932" name="us-gaap:DeferredCompensationLiabilityCurrent" scale="6" unitref="usd">2.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> was classified as current and </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1_adsk_FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis_adsk_RabbiTrustMember" decimals="-5" format="ixt:numdotdecimal" id="d9846078e538-wk-Fact-4D993431303E5B5B97D46028E7C67E62" name="us-gaap:DeferredCompensationLiabilityClassifiedNoncurrent" scale="6" unitref="usd">56.5</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> was classified as non-current liabilities. The total related deferred compensation liability at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">, was </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2018Q4_adsk_FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis_adsk_RabbiTrustMember" decimals="-5" format="ixt:numdotdecimal" id="d9846078e546-wk-Fact-BDDF0FE15FA754CFB5727C2B30F74E12" name="us-gaap:DeferredCompensationLiabilityCurrentAndNoncurrent" scale="6" unitref="usd">59.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, of which </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2018Q4_adsk_FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis_adsk_RabbiTrustMember" decimals="-5" format="ixt:numdotdecimal" id="d9846078e550-wk-Fact-8326711A865B544E8BDB779D8030468E" name="us-gaap:DeferredCompensationLiabilityCurrent" scale="6" unitref="usd">3.4</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> was classified as current and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;"><span>$<ix:nonfraction contextref="FI2018Q4_adsk_FairValueAssetsAndLiabilitiesMeasuredOnRecurringBasisAxis_adsk_RabbiTrustMember" decimals="-5" format="ixt:numdotdecimal" id="d9846078e554-wk-Fact-F22B8A3A8687574CB6E333EF2EAA7AB6" name="us-gaap:DeferredCompensationLiabilityClassifiedNoncurrent" scale="6" unitref="usd">55.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> was classified as non-current liabilities. The securities are recorded in the Condensed Consolidated Balance Sheets under the current portion of "Marketable securities." The current and non-current portions of the liability are recorded in the Condensed Consolidated Balance Sheets under “Accrued compensation” and “Other liabilities,” respectively.</span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Costs to obtain a contract with a customer</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Sales commissions earned by our internal sales personnel and our reseller partners are considered incremental and recoverable costs of obtaining a contract with a customer. The commission costs are capitalized and included in prepaid expenses and other current assets on our consolidated balance sheet. The deferred costs are then amortized over the period of benefit. Autodesk determined that sales commissions earned by internal sales personnel that are related to contract renewals are commensurate with sales commissions earned on the initial contract, but commissions paid to our reseller partners that are related to contract renewals are not. We determined the estimated period of benefit by taking into consideration our sales compensation plans, customer retention data, customer contracts, our technology and other factors. Deferred costs are periodically reviewed for impairment. Amortization expense is included in sales and marketing expenses in the Condensed Consolidated Statements of Operations.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><ix:continuation continuedat="TextSelection-8AB97B7A45C75ADAB18F65160F8B4F2D-3" id="TextSelection-8AB97B7A45C75ADAB18F65160F8B4F2D-2"><span style="font-family:inherit;font-size:10pt;">The ending balance of assets recognized from costs to obtain a contract with a customer was </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9846078e574-wk-Fact-154E76EE25127BE44012B70825BD8D15" name="us-gaap:CapitalizedContractCostNet" scale="6" unitref="usd">93.3</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. Amortization expense related to assets recognized from costs to obtain a contract with a customer was </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9846078e582-wk-Fact-1BD304DBB9262B6E4404B71173D060F0" name="us-gaap:CapitalizedContractCostAmortization" scale="6" unitref="usd">26.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> during the three months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. Autodesk did not recognize any contract cost impairment losses during the three months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-8AB97B7A45C75ADAB18F65160F8B4F2D-3">.</ix:continuation> </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sF38BBDF4CC11563C9CD3A14FFF807E61"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">11</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-8887966B4FC75127934197B2A182747D-1" escape="true" id="TextSelection-8887966B4FC75127934197B2A182747D-0-wk-Fact-9CBC7958E0B85DD987CE35968EF2165A" name="us-gaap:PropertyPlantAndEquipmentDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Computer Equipment, Software, Furniture and Leasehold Improvements, Net</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-8887966B4FC75127934197B2A182747D-2" id="TextSelection-8887966B4FC75127934197B2A182747D-1"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-260942FD0DA15BC898786F663B8A9C59-1" escape="true" id="TextSelection-260942FD0DA15BC898786F663B8A9C59-0-wk-Fact-15F4D9BC5512582185FFB939F74E8AF7" name="us-gaap:PropertyPlantAndEquipmentTextBlock">Computer equipment, software, furniture, leasehold improvements and the related accumulated depreciation were as follows:</ix:nonnumeric></span></div><ix:continuation continuedat="TextSelection-260942FD0DA15BC898786F663B8A9C59-2" id="TextSelection-260942FD0DA15BC898786F663B8A9C59-1"><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div></ix:continuation></ix:continuation><div style="line-height:120%;text-align:left;font-size:10pt;"><ix:continuation id="TextSelection-260942FD0DA15BC898786F663B8A9C59-2"><ix:continuation id="TextSelection-8887966B4FC75127934197B2A182747D-2"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:73%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">January 31, 2018</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Computer hardware, at cost</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_ComputerEquipmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9846009e593-wk-Fact-11EE9F9A8D9753D49B766E7FADD284F5" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">211.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_ComputerEquipmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9846009e612-wk-Fact-6E195C1C6D2152B99405CEB56E2975E8" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">217.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Computer software, at cost</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_SoftwareDevelopmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9846009e627-wk-Fact-BC5E86D6E0E559669839DEACF7E48746" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">72.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_SoftwareDevelopmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9846009e646-wk-Fact-E246FF658ECB51A48B5874D2605F93BA" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">72.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Leasehold improvements, land and buildings, at cost</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_LandBuildingsAndImprovementsMember" decimals="-5" format="ixt:numdotdecimal" id="d9846009e666-wk-Fact-C3566369B27658178C6F354270451EE8" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">244.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_PropertyPlantAndEquipmentByTypeAxis_us-gaap_LandBuildingsAndImprovementsMember" decimals="-5" format="ixt:numdotdecimal" id="d9846009e685-wk-Fact-D13C28E4D1715E38B18BC9044C35907F" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">228.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Furniture and equipment, at cost</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_PropertyPlantAndEquipmentByTypeAxis_adsk_FurnitureandEquipmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9846009e705-wk-Fact-9548C81612D35257A9E6315231ADF069" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">61.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_PropertyPlantAndEquipmentByTypeAxis_adsk_FurnitureandEquipmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9846009e724-wk-Fact-87B5F230A86959E4A135CFFE8EAF3B00" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">63.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9846009e744-wk-Fact-C6AD078C14A051CB8BE9046B7F27C1DE" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">590.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9846009e762-wk-Fact-778D517F72B65F8AA91335F66FBA4853" name="us-gaap:PropertyPlantAndEquipmentGross" scale="6" unitref="usd">582.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Less: Accumulated depreciation</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9846009e782-wk-Fact-7744E1D697455672B518DDC0A9AD6CF2" name="us-gaap:AccumulatedDepreciationDepletionAndAmortizationPropertyPlantAndEquipment" scale="6" unitref="usd">432.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9846009e802-wk-Fact-D6E294945CC050069C9A2A27644B7475" name="us-gaap:AccumulatedDepreciationDepletionAndAmortizationPropertyPlantAndEquipment" scale="6" unitref="usd">437.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Computer software, hardware, leasehold improvements, furniture and equipment, net</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9846009e828-wk-Fact-74941E25761E576D836F90AC2CDBA6A2" name="us-gaap:PropertyPlantAndEquipmentNet" scale="6" unitref="usd">158.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9846009e847-wk-Fact-6A685B2F578851E6853E3B486E90B9C8" name="us-gaap:PropertyPlantAndEquipmentNet" scale="6" unitref="usd">145.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></ix:continuation></ix:continuation><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sE80BF128BBDE56F4934866EA56E056BF"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">12</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-809C8FFF386E525C831B39AC1130656F-1" escape="true" id="TextSelection-809C8FFF386E525C831B39AC1130656F-0-wk-Fact-4173C674A41A5ADE8579C5ADDC0EAC77" name="us-gaap:DebtDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Borrowing Arrangements</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-809C8FFF386E525C831B39AC1130656F-2" id="TextSelection-809C8FFF386E525C831B39AC1130656F-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In June 2017, Autodesk issued </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="I2017Q2JUN2017_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e513-wk-Fact-4998849D036E54918C283772BFCCA0D9" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">500.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> aggregate principal amount of </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2017Q2JUN2017_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e517-wk-Fact-DD26E858C74F505EA21515EC5ABF5E3E" name="us-gaap:DebtInstrumentInterestRateStatedPercentage" scale="-2" unitref="number">3.5</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> notes due </span><span style="font-family:inherit;font-size:10pt;">June 15, 2027</span><span style="font-family:inherit;font-size:10pt;"> (collectively, the “2017 Notes”). Net of a discount of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="I2017Q2JUN2017_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e525-wk-Fact-338715B4FABF5CEE992A88A863495B30" name="us-gaap:DebtInstrumentUnamortizedDiscount" scale="6" unitref="usd">3.1</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and issuance costs of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="I2017Q2JUN2017_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e529-wk-Fact-4C763F30A590597E95507503E7F14D12" name="us-gaap:DeferredFinanceCostsGross" scale="6" unitref="usd">4.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, Autodesk received net proceeds of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="D2017Q2JUN2017_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e534-wk-Fact-C53C57EC6845526CB57D360656C5D3C0" name="us-gaap:ProceedsFromDebtNetOfIssuanceCosts" scale="6" unitref="usd">492.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> from issuance of the 2017 Notes. Both the discount and issuance costs are being amortized to interest expense over the term of the 2017 Notes using the effective interest method. The proceeds of the 2017 Notes have been used for the repayment of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e538-wk-Fact-B968D4E48ED85382A7F5D4EA245FF03F" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">400.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> of debt due </span><span style="font-family:inherit;font-size:10pt;">December 15, 2017</span><span style="font-family:inherit;font-size:10pt;">, and the remainder is available for general corporate purposes. Autodesk may redeem the 2017 Notes at any time, subject to a make whole premium. In addition, upon the occurrence of certain change of control triggering events, Autodesk may be required to repurchase the 2017 Notes at a price equal to </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e546-wk-Fact-0F43E6D9733A5C9DBEBB157B9536BA49" name="adsk:DebtIssuanceRedemptionDiscountPremiumPercentageOfPrincipalAmount" scale="-2" unitref="number">101</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> of their principal amount, plus accrued and unpaid interest to the date of repurchase. The 2017 Notes contain restrictive covenants that limit Autodesk's ability to create certain liens, to enter into certain sale and leaseback transactions and to consolidate or merge with, or convey, transfer or lease all or substantially all of its assets, subject to important qualifications and exceptions. Based on quoted market prices, the fair value of the 2017 Notes was approximately </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e550-wk-Fact-377C2A66A74A5E738921C8CF195BD126" name="us-gaap:DebtInstrumentFairValue" scale="6" unitref="usd">471.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">24</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-809C8FFF386E525C831B39AC1130656F-3" id="TextSelection-809C8FFF386E525C831B39AC1130656F-2"><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In June 2015, Autodesk issued $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2016Q2Debt_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2020Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e564-wk-Fact-865B44D063DD5AE5835D32C0A036A769" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">450.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> aggregate principal amount of </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2016Q2Debt_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2020Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e568-wk-Fact-56FD852D5E2E57668535E6DE29D5FA27" name="us-gaap:DebtInstrumentInterestRateStatedPercentage" scale="-2" unitref="number">3.125</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> notes due </span><span style="font-family:inherit;font-size:10pt;">June 15, 2020</span><span style="font-family:inherit;font-size:10pt;"> and $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2016Q2Debt_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2025Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e576-wk-Fact-635C9101F9F95E4D834C2F5E5FDAF251" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">300.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> aggregate principal amount of </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2016Q2Debt_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2025Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e580-wk-Fact-3EAD5C315366520ABDAD16350C896AAD" name="us-gaap:DebtInstrumentInterestRateStatedPercentage" scale="-2" unitref="number">4.375</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> notes due </span><span style="font-family:inherit;font-size:10pt;">June 15, 2025</span><span style="font-family:inherit;font-size:10pt;"> (collectively, the “2015 Notes”). Net of a discount of $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2016Q2Debt_us-gaap_DebtInstrumentAxis_adsk_A2015SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e589-wk-Fact-6C0BC9F7C88C568F9F5A566549BD1390" name="us-gaap:DebtInstrumentUnamortizedDiscount" scale="6" unitref="usd">1.7</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and issuance costs of $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2016Q2Debt_us-gaap_DebtInstrumentAxis_adsk_A2015SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e593-wk-Fact-3AA1D816032B5A33AF21D7F08BFA5532" name="us-gaap:DeferredFinanceCostsGross" scale="6" unitref="usd">6.3</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, Autodesk received net proceeds of $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="D2016Q2_us-gaap_DebtInstrumentAxis_adsk_A2015SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e597-wk-Fact-AA885FB5F72D59A6B71A9E8F808309E9" name="us-gaap:ProceedsFromDebtNetOfIssuanceCosts" scale="6" unitref="usd">742.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> from issuance of the 2015 Notes. Both the discount and issuance costs are being amortized to interest expense over the respective terms of the 2015 Notes using the effective interest method. The proceeds of the 2015 Notes are available for general corporate purposes. Autodesk may redeem the 2015 Notes at any time, subject to a make whole premium. In addition, upon the occurrence of certain change of control triggering events, Autodesk may be required to repurchase the 2015 Notes at a price equal to </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_DebtInstrumentAxis_adsk_A3.5NotesdueJune152027Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e601-wk-Fact-0F43E6D9733A5C9DBEBB157B9536BA49" name="adsk:DebtIssuanceRedemptionDiscountPremiumPercentageOfPrincipalAmount" scale="-2" unitref="number">101</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> of their principal amount, plus accrued and unpaid interest to the date of repurchase. The 2015 Notes contain restrictive covenants that limit Autodesk's ability to create certain liens, to enter into certain sale and leaseback transactions and to consolidate or merge with, or convey, transfer or lease all or substantially all of its assets, subject to important qualifications and exceptions. Based on quoted market prices, the fair value of the 2015 Notes was approximately $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_DebtInstrumentAxis_adsk_A2015SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e605-wk-Fact-25430A1D860E5B31B43A1E37ABB42D5D" name="us-gaap:DebtInstrumentFairValue" scale="6" unitref="usd">753.7</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In December 2012, Autodesk issued $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e619-wk-Fact-B968D4E48ED85382A7F5D4EA245FF03F" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">400.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> aggregate principal amount of </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e623-wk-Fact-DF03BB823F615C5688D63985F3FA084D" name="us-gaap:DebtInstrumentInterestRateStatedPercentage" scale="-2" unitref="number">1.95</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> notes due </span><span style="font-family:inherit;font-size:10pt;">December 15, 2017</span><span style="font-family:inherit;font-size:10pt;"> ("$</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e631-wk-Fact-B968D4E48ED85382A7F5D4EA245FF03F" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">400.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> 2012 Notes") and $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2022Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e635-wk-Fact-D066D1FFA2455095B0DE28F80CBD0645" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">350.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> aggregate principal amount of </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2022Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e640-wk-Fact-AEABCA717068559B84F32D0AF78DF936" name="us-gaap:DebtInstrumentInterestRateStatedPercentage" scale="-2" unitref="number">3.6</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> notes due </span><span style="font-family:inherit;font-size:10pt;">December 15, 2022</span><span style="font-family:inherit;font-size:10pt;"> ("$</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2022Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e648-wk-Fact-D066D1FFA2455095B0DE28F80CBD0645" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">350.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> 2012 Notes" and collectively with the $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e652-wk-Fact-B968D4E48ED85382A7F5D4EA245FF03F" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">400.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> 2012 Notes, the “2012 Notes”). Autodesk received net proceeds of $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="D2013Q4Dec_us-gaap_DebtInstrumentAxis_adsk_A2012SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e656-wk-Fact-FADB289D1EAC574393148B3966DA72C7" name="us-gaap:ProceedsFromDebtNetOfIssuanceCosts" scale="6" unitref="usd">739.3</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> from issuance of the 2012 Notes, net of a discount of $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_A2012SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e660-wk-Fact-9C8853C61D145E8CABD1E69CE26C7B1C" name="us-gaap:DebtInstrumentUnamortizedDiscount" scale="6" unitref="usd">4.5</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and issuance costs of $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_A2012SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e665-wk-Fact-09D0D1B7309E523FABDED103031F5509" name="us-gaap:DeferredFinanceCostsGross" scale="6" unitref="usd">6.1</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">. Both the discount and issuance costs are being amortized to interest expense over the respective terms of the 2012 Notes using the effective interest method. The proceeds of the 2012 Notes are available for general corporate purposes. On July 27, 2017, Autodesk redeemed in full the </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e669-wk-Fact-B968D4E48ED85382A7F5D4EA245FF03F" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">400.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> 2012 Notes. The redemption was completed pursuant to the optional redemption provisions of the first supplemental indenture dated December 13, 2012. To redeem the notes, Autodesk used the proceeds of the 2017 Notes to pay a redemption price of approximately </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="I2017Q2JUL27_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e673-wk-Fact-AECF7A2F4E6351F389BD6389049D5CE2" name="adsk:DebtInstrumentRedemptionPrice" scale="6" unitref="usd">400.9</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, plus accrued and unpaid interest. Total cash repayment was </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="D2017Q2JUL27_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2017Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e677-wk-Fact-30DD988EC0295A85A704CF03E4E2BFC7" name="us-gaap:RepaymentsOfDebt" scale="6" unitref="usd">401.8</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">. The Company did not incur any additional early termination penalties in connection with such redemption. Based on the quoted market price, the fair value of the $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="I2012Q4Dec_us-gaap_DebtInstrumentAxis_adsk_SeniorNotesdue2022Member_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="INF" format="ixt:numdotdecimal" id="d9846222e681-wk-Fact-D066D1FFA2455095B0DE28F80CBD0645" name="us-gaap:DebtInstrumentFaceAmount" scale="6" unitref="usd">350.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> 2012 Notes was approximately $</span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_DebtInstrumentAxis_adsk_A2012SeniorNotesMember_us-gaap_LongtermDebtTypeAxis_us-gaap_SeniorNotesMember" decimals="-5" format="ixt:numdotdecimal" id="d9846222e686-wk-Fact-41676F9CB3C051779EF2AE4520ED64B4" name="us-gaap:DebtInstrumentFairValue" scale="6" unitref="usd">348.1</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk’s line of credit facility permits unsecured short-term borrowings of up to </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="INF" format="ixt:numdotdecimal" id="d9846222e699-wk-Fact-66B406ADFD2059CAAA00E9245C94FBC8" name="us-gaap:LineOfCreditFacilityMaximumBorrowingCapacity" scale="6" unitref="usd">400.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, with an option to request an increase in the amount of the credit facility by up to an additional </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FI2019Q1" decimals="INF" format="ixt:numdotdecimal" id="d9846222e703-wk-Fact-F2B1997954F4587CBC3F350166395495" name="adsk:LineOfCreditFacilityAdditionalBorrowingsAvailable" scale="6" unitref="usd">100.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, and is available for working capital or other business needs. This credit agreement contains customary covenants that could restrict the imposition of liens on Autodesk’s assets, and restrict the Company’s ability to incur additional indebtedness or make dispositions of assets if Autodesk fails to maintain the financial covenants. As the result of a forecasted inability to comply with the credit agreement's minimum interest coverage ratio in the first quarter of fiscal 2018, the Company renegotiated the credit agreement's financial covenants in April 2017. The financial covenants now consist of a maximum debt to total cash ratio, a fixed charge coverage ratio through April 30, 2018, and after April 30, 2018, a minimum interest coverage ratio.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-indent:30px;font-size:10pt;"><ix:continuation continuedat="TextSelection-809C8FFF386E525C831B39AC1130656F-4" id="TextSelection-809C8FFF386E525C831B39AC1130656F-3"><span style="font-family:inherit;font-size:10pt;">The line of credit is syndicated with various financial institutions, including Citibank, N.A., an affiliate of Citigroup, which is one of the lead lenders and an agent. The maturity date on the line of credit is </span><span style="font-family:inherit;font-size:10pt;">May 2020</span><span style="font-family:inherit;font-size:10pt;">. At </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk was in compliance with the credit facility's covenants and had </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="INF" format="ixt-sec:numwordsen" id="d9846222e720-wk-Fact-62F69ECAE2D7566F8AD64BC4E111CCD7" name="us-gaap:LineOfCredit" scale="6" unitref="usd">no</ix:nonfraction></span></span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-809C8FFF386E525C831B39AC1130656F-4"> outstanding borrowings on this line of credit.</ix:continuation> </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="s744AE2EC2DD75EA7B66066E74A2DEADD"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:Times New Roman;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">13</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-1" escape="true" id="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-0-wk-Fact-1928488029F1520A90750F722E1B31B4" name="us-gaap:RestructuringAndRelatedActivitiesDisclosureTextBlock"><span style="font-family:Times New Roman;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Restructuring charges and other facility exit costs, net</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-2" id="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-1"><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">During the fourth quarter of fiscal 2018, the Board of Directors approved a world-wide restructuring plan (“Fiscal 2018 Plan”) to support the Company's strategic priorities of completing the subscription transition, digitizing the Company, and re-imagining manufacturing, construction, and production. Through the restructuring, Autodesk seeks to reduce its investments in areas not aligned with its strategic priorities, including in areas related to research and development and go-to-market activities. At the same time, Autodesk plans to further invest in strategic priority areas related to digital infrastructure, customer success, and construction. By re-balancing resources to better align with the Company’s strategic priorities, Autodesk is positioning itself to meet its long-term goals. This world-wide restructuring plan includes a reduction in force that will result in the termination of approximately </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2018Q4QTD_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="2" format="ixt:numdotdecimal" id="d9847355e513-wk-Fact-3C25A586CF59D84BDD6E89E81913B6DB" name="us-gaap:RestructuringAndRelatedCostNumberOfPositionsEliminatedPeriodPercent" scale="-2" unitref="number">13</ix:nonfraction>%</span></span><span style="font-family:inherit;font-size:10pt;"> of the Company’s workforce, or approximately </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2018Q4QTD_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-1" format="ixt:numdotdecimal" id="d9847355e517-wk-Fact-E23DB039EAFAF3BDE79689E87DDD1F83" name="us-gaap:RestructuringAndRelatedCostNumberOfPositionsEliminated" scale="0" unitref="Position">1,150</ix:nonfraction></span></span><span style="font-family:inherit;font-size:10pt;"> employees, and the consolidation of certain leased facilities. The Company expects to substantially complete the reduction in force and the facilities consolidation by the end of fiscal 2019.</span></div></ix:continuation><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">25</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><ix:continuation continuedat="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-3" id="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-2"><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-1" escape="true" id="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-0-wk-Fact-2F0898F831435E119B75C49A17CB2485" name="us-gaap:ScheduleOfRestructuringAndRelatedCostsTextBlock">The following table sets forth the restructuring charges and other lease termination exit costs during the </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-2" id="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-1"><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">:</span></ix:continuation></div><ix:continuation continuedat="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-3" id="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-2"><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="20"></td></tr><tr><td style="width:36%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Balances, January 31, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Additions</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Payments</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Adjustments (1)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Balances, April 30, 2018</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-style:italic;font-weight:bold;">Fiscal 2018 Plan</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Employee termination costs</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_RestructuringCostAndReserveAxis_us-gaap_EmployeeSeveranceMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e789-wk-Fact-346A5D220BF4468B64C389E77B767E1E" name="us-gaap:RestructuringReserve" scale="6" unitref="usd">53.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_RestructuringCostAndReserveAxis_us-gaap_EmployeeSeveranceMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e808-wk-Fact-C5F89BD5CF953C08BB3D89E77B84B2B8" name="us-gaap:RestructuringCharges" scale="6" unitref="usd">20.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_RestructuringCostAndReserveAxis_us-gaap_EmployeeSeveranceMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e827-wk-Fact-4B5D719EF6B331DAAAF789E77B88B341" name="us-gaap:PaymentsForRestructuring" scale="6" unitref="usd">51.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_RestructuringCostAndReserveAxis_us-gaap_EmployeeSeveranceMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e848-wk-Fact-96C1FC418BE0F838E44589E77B8EB440" name="us-gaap:RestructuringReserveTranslationAndOtherAdjustment" scale="6" sign="-" unitref="usd">0.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_RestructuringCostAndReserveAxis_us-gaap_EmployeeSeveranceMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e868-wk-Fact-11C1898363B1BA26E4A989E77B8ACDD2" name="us-gaap:RestructuringReserve" scale="6" unitref="usd">21.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Lease termination and other exit costs</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_RestructuringCostAndReserveAxis_us-gaap_FacilityClosingMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e883-wk-Fact-7457AE92BDB6E6353FCF89E77B93923D" name="us-gaap:RestructuringReserve" scale="6" unitref="usd">2.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_RestructuringCostAndReserveAxis_us-gaap_FacilityClosingMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e902-wk-Fact-630FD41A92BFB2DBF55C89E77B8CB359" name="us-gaap:RestructuringCharges" scale="6" unitref="usd">1.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_RestructuringCostAndReserveAxis_us-gaap_FacilityClosingMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e921-wk-Fact-21E3BA0E59223C9A8AD789E77B86C4E2" name="us-gaap:PaymentsForRestructuring" scale="6" unitref="usd">2.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_RestructuringCostAndReserveAxis_us-gaap_FacilityClosingMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e942-wk-Fact-14F9191F2BEDBD4BB11589E77B91720D" name="us-gaap:RestructuringReserveTranslationAndOtherAdjustment" scale="6" unitref="usd">0.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_RestructuringCostAndReserveAxis_us-gaap_FacilityClosingMember_us-gaap_RestructuringPlanAxis_adsk_Fiscal2018PlanMember" decimals="-5" format="ixt:numdotdecimal" id="d9847355e961-wk-Fact-00063593BA57AD23331789E77B81A227" name="us-gaap:RestructuringReserve" scale="6" unitref="usd">2.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9847355e986-wk-Fact-DDB5E047BBC75BCC8FCE657279DFFBE8" name="us-gaap:RestructuringReserve" scale="6" unitref="usd">55.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9847355e1005-wk-Fact-702EF06EE4235BD79C6AE8755F35134A" name="us-gaap:RestructuringCharges" scale="6" unitref="usd">22.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9847355e1024-wk-Fact-85D7D40BE8325904BEBCFAA5390D3D94" name="us-gaap:PaymentsForRestructuring" scale="6" unitref="usd">53.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9847355e1045-wk-Fact-2FCAD8FD09355A0EADCA6002EF90D44F" name="us-gaap:RestructuringReserveTranslationAndOtherAdjustment" scale="6" sign="-" unitref="usd">0.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9847355e1065-wk-Fact-0B17C6872BE757BCB3AF1651E6D41201" name="us-gaap:RestructuringReserve" scale="6" unitref="usd">24.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Current portion (2)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9847355e1085-wk-Fact-CF62C7E4C119595EA2989977277F0E15" name="us-gaap:RestructuringReserveCurrent" scale="6" unitref="usd">55.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9847355e1165-wk-Fact-A018F4A5069659658B762F8BBC4B0373" name="us-gaap:RestructuringReserveCurrent" scale="6" unitref="usd">24.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-current portion (2)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:zerodash" id="d9847355e1180-wk-Fact-06EBBC62AA3C5609949182A297DE4EE5" name="us-gaap:RestructuringReserveNoncurrent" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:zerodash" id="d9847355e1260-wk-Fact-F2F6137A958B53AE865BB1326DA8F9D5" name="us-gaap:RestructuringReserveNoncurrent" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4" decimals="-5" format="ixt:numdotdecimal" id="d9847355e1285-wk-Fact-DDB5E047BBC75BCC8FCE657279DFFBE8" name="us-gaap:RestructuringReserve" scale="6" unitref="usd">55.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1" decimals="-5" format="ixt:numdotdecimal" id="d9847355e1365-wk-Fact-0B17C6872BE757BCB3AF1651E6D41201" name="us-gaap:RestructuringReserve" scale="6" unitref="usd">24.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Adjustments primarily relate to the impact of foreign exchange rate changes and certain write offs related to fixed assets.</span></div></td></tr></table></ix:continuation></ix:continuation><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><ix:continuation continuedat="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-4" id="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-3"><ix:continuation continuedat="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-4" id="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-3"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></ix:continuation></ix:continuation></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><ix:continuation continuedat="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-5" id="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-4"><ix:continuation continuedat="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-5" id="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-4"><span style="font-family:inherit;font-size:9pt;">The current and non-current portions of the reserve are recorded in the Condensed Consolidated Balance Sheets under “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Other accrued liabilities</span><span style="font-family:inherit;font-size:9pt;">” and “</span><span style="font-family:inherit;font-size:9pt;color:#000000;text-decoration:none;">Other liabilities</span></ix:continuation></ix:continuation><span style="font-family:inherit;font-size:9pt;"><ix:continuation id="TextSelection-9EB86097AFC65B9296DD2F2A493F9BB7-5"><ix:continuation id="TextSelection-3EA41E189A0A5A36B2C594BBD9F98FB8-5">,” respectively.</ix:continuation></ix:continuation></span></div></td></tr></table><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div><div><a id="sEE512345258050F0B342972F2DA5B54E"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">14</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-801663BA92EC5ADBAF2731826623FD09-1" escape="true" id="TextSelection-801663BA92EC5ADBAF2731826623FD09-0-wk-Fact-3E5F1433749D5080BF85C8E8883E2098" name="us-gaap:CommitmentsAndContingenciesDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Commitments and Contingencies</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-801663BA92EC5ADBAF2731826623FD09-2" id="TextSelection-801663BA92EC5ADBAF2731826623FD09-1"><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Guarantees and Indemnifications</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In the normal course of business, Autodesk provides indemnifications of varying scopes, including limited product warranties and indemnification of customers against claims of intellectual property infringement made by third parties arising from the use of its products or services. Autodesk accrues for known indemnification issues if a loss is probable and can be reasonably estimated. Historically, costs related to these indemnifications have not been significant, and because potential future costs are highly variable, Autodesk is unable to estimate the maximum potential impact of these indemnifications on its future results of operations.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In connection with the purchase, sale or license of assets or businesses with third parties, Autodesk has entered into or assumed customary indemnification agreements related to the assets or businesses purchased, sold or licensed. Historically, costs related to these indemnifications have not been significant, and because potential future costs are highly variable, Autodesk is unable to estimate the maximum potential impact of these indemnifications on its future results of operations.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As permitted under Delaware law, Autodesk has agreements whereby it indemnifies its officers and directors for certain events or occurrences while the officer or director is, or was, serving at Autodesk’s request in such capacity. The maximum potential amount of future payments Autodesk could be required to make under these indemnification agreements is unlimited; however, Autodesk has directors’ and officers’ liability insurance coverage that is intended to reduce its financial exposure and may enable Autodesk to recover a portion of any future amounts paid. Autodesk believes the estimated fair value of these indemnification agreements in excess of applicable insurance coverage is minimal.</span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Legal Proceedings</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-801663BA92EC5ADBAF2731826623FD09-2">Autodesk is involved in a variety of claims, suits, investigations, and proceedings in the normal course of business activities including claims of alleged infringement of intellectual property rights, commercial, employment, piracy prosecution, business practices, and other matters. Autodesk routinely reviews the status of each significant matter and assesses its potential financial exposure. If the potential loss from any matter is considered probable and the amount can be reasonably estimated, Autodesk records a liability for the estimated loss. Because of inherent uncertainties related to these legal matters, Autodesk bases its loss accruals on the best information available at the time. As additional information becomes available, Autodesk reassesses its potential liability and may revise its estimates. In the Company's opinion, resolution of pending matters is not expected to have a material adverse impact on its consolidated results of operations, cash flows, or its financial position. Given the unpredictable nature of legal proceedings, there is a reasonable possibility that an unfavorable resolution of one or more such proceedings could in the future materially affect the Company's results of operations, cash flows, or financial position in a particular period, however, based on the information known by the Company as of the date of this filing and the rules and regulations applicable to the preparation of the Company's financial statements, any such amount is either immaterial or it is not possible to provide an estimated amount of any such potential loss.</ix:continuation></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">26</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sD9104D115FCD5CA29353FB152F5E1236"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">15</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-D2D3B3D75D1050AFA56CBE5C5F2D79F2-1" escape="true" id="TextSelection-D2D3B3D75D1050AFA56CBE5C5F2D79F2-0-wk-Fact-157453D7E656570E909CC332491E8265" name="us-gaap:TreasuryStockTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Common Stock Repurchase Program</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-D2D3B3D75D1050AFA56CBE5C5F2D79F2-2" id="TextSelection-D2D3B3D75D1050AFA56CBE5C5F2D79F2-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk has a stock repurchase program that is used to offset dilution from the issuance of stock under the Company’s employee stock plans and for such other purposes as may be in the interests of Autodesk and its stockholders. Stock repurchases have the effect of returning excess cash generated from the Company’s business to stockholders. During the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, Autodesk repurchased and retired </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1QTD_us-gaap_ShareRepurchaseProgramAxis_adsk_CommonStockRepurchaseProgramMember" decimals="-5" format="ixt:numdotdecimal" id="d9848300e521-wk-Fact-F14B8A24376451E8A1565BBD33F8B3C3" name="us-gaap:StockRepurchasedAndRetiredDuringPeriodShares" scale="6" unitref="shares">0.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> shares at an average repurchase price of </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_ShareRepurchaseProgramAxis_adsk_CommonStockRepurchaseProgramMember" decimals="1" format="ixt:numdotdecimal" id="d9848300e525-wk-Fact-8A36612658665F018DA59AAB29CB238B" name="us-gaap:TreasuryStockAcquiredAverageCostPerShare" scale="0" unitref="usdPerShare">113.3</ix:nonfraction></span></span><span style="font-family:inherit;font-size:10pt;"> per share. Common stock and additional paid-in capital and accumulated deficit were reduced by </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1QTD_us-gaap_StatementEquityComponentsAxis_us-gaap_CommonStockMember" decimals="-5" format="ixt:numdotdecimal" id="d9848300e529-wk-Fact-0B33272D5675567E9BA0468201AA6C82" name="us-gaap:StockRepurchasedAndRetiredDuringPeriodValue" scale="6" unitref="usd">16.4</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;"><span>$<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_RetainedEarningsMember" decimals="-5" format="ixt:numdotdecimal" id="d9848300e534-wk-Fact-F325A867A53DC2B0FCCCB8250BBFFF4F" name="us-gaap:StockRepurchasedAndRetiredDuringPeriodValue" scale="6" unitref="usd">4.6</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;">, respectively, during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. </span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-indent:32px;font-size:10pt;"><ix:continuation continuedat="TextSelection-D2D3B3D75D1050AFA56CBE5C5F2D79F2-3" id="TextSelection-D2D3B3D75D1050AFA56CBE5C5F2D79F2-2"><span style="font-family:inherit;font-size:10pt;">At </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_ShareRepurchaseProgramAxis_adsk_CommonStockRepurchaseProgramMember" decimals="-5" format="ixt:numdotdecimal" id="d9848300e555-wk-Fact-DC1D3C638C595B53B6DF50A4E868C037" name="us-gaap:StockRepurchaseProgramRemainingNumberOfSharesAuthorizedToBeRepurchased" scale="6" unitref="shares">19.5</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> shares remained available for repurchase under the repurchase program approved by the Board of Directors. During the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-D2D3B3D75D1050AFA56CBE5C5F2D79F2-3">, Autodesk repurchased its common stock through open market purchases. The number of shares acquired and the timing of the purchases are based on several factors, including general market and economic conditions, the number of employee stock option exercises and stock issuances, the trading price of Autodesk common stock, cash on hand and available in the United States, cash requirements for acquisitions, and Company defined trading windows.</ix:continuation> </span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="s09946728D9625369970876991831673F"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">16</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-9C5231A46BAD51A0B00E75E0F9E64FF6-1" escape="true" id="TextSelection-9C5231A46BAD51A0B00E75E0F9E64FF6-0-wk-Fact-10B695B3C8445FFE986C8E1D2098D691" name="us-gaap:ComprehensiveIncomeNoteTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Accumulated Other Comprehensive Loss</span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-9C5231A46BAD51A0B00E75E0F9E64FF6-2" id="TextSelection-9C5231A46BAD51A0B00E75E0F9E64FF6-1"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-9C41DD3AF8E5558296125D423D9F750E-1" escape="true" id="TextSelection-9C41DD3AF8E5558296125D423D9F750E-0-wk-Fact-100CC13DB78652318022591E3CAC500C" name="us-gaap:ScheduleOfAccumulatedOtherComprehensiveIncomeLossTableTextBlock"><span style="font-size:10pt;">Accumulated other comprehensive loss</span><span style="font-family:inherit;font-size:10pt;">, net of taxes, consisted of the following at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">:</span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-9C41DD3AF8E5558296125D423D9F750E-2" id="TextSelection-9C41DD3AF8E5558296125D423D9F750E-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-align:center;font-size:10pt;"><ix:continuation id="TextSelection-9C41DD3AF8E5558296125D423D9F750E-2"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="20"></td></tr><tr><td style="width:46%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Net Unrealized Gains (Losses) on Derivative Instruments</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Net Unrealized Gains (Losses) on Available-for-Sale Debt Securities</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Defined Benefit Pension Components</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Foreign Currency Translation Adjustments</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Total</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Balances, January 31, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e671-wk-Fact-10443060F0485428AE0CEA53DB4805D0" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">16.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetUnrealizedInvestmentGainLossMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e691-wk-Fact-4498027A30E15D1297F6AB15848B76EE" name="us-gaap:StockholdersEquity" scale="6" unitref="usd">1.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedDefinedBenefitPlansAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e710-wk-Fact-22CA4D7FFE4F5708B6DFD44D74150780" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">29.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedTranslationAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e731-wk-Fact-70CC965CD8CC5A84AD4ACD7E5BA65254" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">79.2</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2018Q4_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e751-wk-Fact-797C6B5CB83C5E09AF04BEE4693DF5AB" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">123.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other comprehensive income (loss) before reclassifications</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e767-wk-Fact-CB04A14BE17F52669B0EFEDE20640416" name="us-gaap:OtherComprehensiveIncomeLossBeforeReclassificationsNetOfTax" scale="6" unitref="usd">7.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetUnrealizedInvestmentGainLossMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e786-wk-Fact-1B931909E8735455829E6B68FA2C43EF" name="us-gaap:OtherComprehensiveIncomeLossBeforeReclassificationsNetOfTax" scale="6" unitref="usd">0.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedDefinedBenefitPlansAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e805-wk-Fact-9621B72A15E652F9AA59CA611B431E1B" name="us-gaap:OtherComprehensiveIncomeLossBeforeReclassificationsNetOfTax" scale="6" unitref="usd">9.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedTranslationAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e825-wk-Fact-37D4258077D552238129FDACF04A4390" name="us-gaap:OtherComprehensiveIncomeLossBeforeReclassificationsNetOfTax" scale="6" sign="-" unitref="usd">24.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848321e845-wk-Fact-919CB97BC0BA53A4917B3753D207C7F5" name="us-gaap:OtherComprehensiveIncomeLossBeforeReclassificationsNetOfTax" scale="6" sign="-" unitref="usd">7.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Pre-tax (gains) losses reclassified from accumulated other comprehensive loss</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e866-wk-Fact-35D8D0FEA6725279BCA9FFEC853F292E" name="us-gaap:ReclassificationFromAociCurrentPeriodBeforeTaxAttributableToParent" scale="6" unitref="usd">0.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetUnrealizedInvestmentGainLossMember" decimals="-5" format="ixt:zerodash" id="d9848321e886-wk-Fact-E96922BA91895D249810A01426D1616F" name="us-gaap:ReclassificationFromAociCurrentPeriodBeforeTaxAttributableToParent" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedDefinedBenefitPlansAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e905-wk-Fact-93BAEB90D3945849BBB722BD375B5C06" name="us-gaap:ReclassificationFromAociCurrentPeriodBeforeTaxAttributableToParent" scale="6" sign="-" unitref="usd">0.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedTranslationAdjustmentMember" decimals="-5" format="ixt:zerodash" id="d9848321e925-wk-Fact-45B981FDBDF654F1AE766F488DB5FC00" name="us-gaap:ReclassificationFromAociCurrentPeriodBeforeTaxAttributableToParent" scale="6" unitref="usd">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848321e944-wk-Fact-BC4C4B66268653929756117BA68879AD" name="us-gaap:ReclassificationFromAociCurrentPeriodBeforeTaxAttributableToParent" scale="6" unitref="usd">0.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Tax effects</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e965-wk-Fact-1E2629ADEE275F84BB5DB2601B516F89" name="us-gaap:OtherComprehensiveIncomeLossTaxPortionAttributableToParent1" scale="6" unitref="usd">0.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetUnrealizedInvestmentGainLossMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e985-wk-Fact-89730FE5D8B25B52B7EF66E7B33A2AA4" name="us-gaap:OtherComprehensiveIncomeLossTaxPortionAttributableToParent1" scale="6" sign="-" unitref="usd">0.1</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedDefinedBenefitPlansAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1004-wk-Fact-F731C572086C511BB17D7C28B5E48312" name="us-gaap:OtherComprehensiveIncomeLossTaxPortionAttributableToParent1" scale="6" unitref="usd">1.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedTranslationAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1025-wk-Fact-7315AB179B8B520098A92707DCFD1DA8" name="us-gaap:OtherComprehensiveIncomeLossTaxPortionAttributableToParent1" scale="6" sign="-" unitref="usd">0.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1044-wk-Fact-089E697DAD20542C86B033219E89D93A" name="us-gaap:OtherComprehensiveIncomeLossTaxPortionAttributableToParent1" scale="6" unitref="usd">1.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net current period other comprehensive income (loss)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1065-wk-Fact-2F8B904778405B22B86C7857D8693851" name="us-gaap:OtherComprehensiveIncomeLossNetOfTaxPortionAttributableToParent" scale="6" unitref="usd">6.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetUnrealizedInvestmentGainLossMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1084-wk-Fact-37791CEC4E60543BAE8169E9F08EE400" name="us-gaap:OtherComprehensiveIncomeLossNetOfTaxPortionAttributableToParent" scale="6" unitref="usd">0.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedDefinedBenefitPlansAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1103-wk-Fact-EF9D6C2488B0541291E19233D58F4E84" name="us-gaap:OtherComprehensiveIncomeLossNetOfTaxPortionAttributableToParent" scale="6" unitref="usd">7.7</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedTranslationAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1123-wk-Fact-4E229F434E4F592E95707EB103751DB5" name="us-gaap:OtherComprehensiveIncomeLossNetOfTaxPortionAttributableToParent" scale="6" sign="-" unitref="usd">24.3</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1143-wk-Fact-A793E3ADAAAA505CAB324DF238E2EC26" name="us-gaap:OtherComprehensiveIncomeLossNetOfTaxPortionAttributableToParent" scale="6" sign="-" unitref="usd">10.0</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Balances, April 30, 2018</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetGainLossFromDesignatedOrQualifyingCashFlowHedgesMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1169-wk-Fact-F560D131B99251E1B8698AD3203A4C47" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">10.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedNetUnrealizedInvestmentGainLossMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1189-wk-Fact-BA24B67CF8745D319462AB4728533618" name="us-gaap:StockholdersEquity" scale="6" unitref="usd">1.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedDefinedBenefitPlansAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1208-wk-Fact-B3F9082D9A295DBA94A5E072D19FC1D2" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">21.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedTranslationAdjustmentMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1229-wk-Fact-1AF15331B889527CB877D2407F3D3C1D" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">103.5</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FI2019Q1_us-gaap_StatementEquityComponentsAxis_us-gaap_AccumulatedOtherComprehensiveIncomeMember" decimals="-5" format="ixt:numdotdecimal" id="d9848321e1249-wk-Fact-A7432255420B502FB613F46591464D59" name="us-gaap:StockholdersEquity" scale="6" sign="-" unitref="usd">133.8</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div></ix:continuation><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-indent:30px;font-size:10pt;"><ix:continuation continuedat="TextSelection-9C5231A46BAD51A0B00E75E0F9E64FF6-3" id="TextSelection-9C5231A46BAD51A0B00E75E0F9E64FF6-2"><span style="font-family:inherit;font-size:10pt;">Reclassifications related to gains and losses on available-for-sale debt securities are included in "</span><span style="font-size:10pt;">Interest and other expense, net</span><span style="font-family:inherit;font-size:10pt;">." Refer to Note </span><span style="font-family:inherit;font-size:10pt;">5</span><span style="font-family:inherit;font-size:10pt;">, "</span><span style="font-family:inherit;font-size:10pt;">Financial Instruments</span><span style="font-family:inherit;font-size:10pt;">," for the amount and location of reclassifications related to derivative instruments. Reclassifications of the defined benefit pension components are included in the computation of net periodic benefit cost. For further information, see the "Retirement Benefit Plans" note in Part II, Item 8 of our Annual Report on Form 10-K for the fiscal year ended </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-9C5231A46BAD51A0B00E75E0F9E64FF6-3">.</ix:continuation></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">27</span></div></div><hr style="page-break-after:always"/><div><a id="s319780CADFD1522FB0441EBA69E4CF18"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">17</span><span style="font-family:inherit;font-size:10pt;">. <ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-B0FF2098BF2453D891DE7489638E02DD-1" escape="true" id="TextSelection-B0FF2098BF2453D891DE7489638E02DD-0-wk-Fact-549CCAD4F68559EB829289993D66CBCB" name="us-gaap:EarningsPerShareTextBlock"> </ix:nonnumeric></span><ix:continuation continuedat="TextSelection-B0FF2098BF2453D891DE7489638E02DD-2" id="TextSelection-B0FF2098BF2453D891DE7489638E02DD-1"><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">Net Loss Per Share</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:continuation></div><ix:continuation continuedat="TextSelection-B0FF2098BF2453D891DE7489638E02DD-3" id="TextSelection-B0FF2098BF2453D891DE7489638E02DD-2"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Basic net loss per share is computed using the weighted average number of shares of common stock outstanding for the period, excluding stock options and restricted stock units. Diluted net loss per share is based upon the weighted average number of shares of common stock outstanding for the period and potentially dilutive common shares, including the effect of stock options and restricted stock units under the treasury stock method. <ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-BE444722972D5AF7AC5D1867687CAE3B-1" escape="true" id="TextSelection-BE444722972D5AF7AC5D1867687CAE3B-0-wk-Fact-9604B0AE27945476AD4EF2A3E6338D85" name="us-gaap:ScheduleOfEarningsPerShareBasicAndDilutedTableTextBlock">The following table sets forth the computation of the numerators and denominators used in the basic and diluted net loss per share amounts:</ix:nonnumeric></span></div><ix:continuation continuedat="TextSelection-BE444722972D5AF7AC5D1867687CAE3B-2" id="TextSelection-BE444722972D5AF7AC5D1867687CAE3B-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:75%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Numerator:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net loss</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848945e675-wk-Fact-7DB57A633404584E8398CE6B5AE802E6" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">82.4</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848945e695-wk-Fact-64893E8F878E5879AEE7A1B8A1E82A37" name="us-gaap:NetIncomeLoss" scale="6" sign="-" unitref="usd">129.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Denominator:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Denominator for basic net loss per share—weighted average shares</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848945e752-wk-Fact-A6017E53C1195782A85BF8A4EBE7AED0" name="us-gaap:WeightedAverageNumberOfSharesOutstandingBasic" scale="6" unitref="shares">218.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848945e771-wk-Fact-14E4599D070D59FC85C56E656B5AF179" name="us-gaap:WeightedAverageNumberOfSharesOutstandingBasic" scale="6" unitref="shares">219.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Effect of dilutive securities (1)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:zerodash" id="d9848945e791-wk-Fact-A6B9CD3B03DAAB0D3445BC22CC7CBB22" name="us-gaap:WeightedAverageNumberDilutedSharesOutstandingAdjustment" scale="6" unitref="shares">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:zerodash" id="d9848945e810-wk-Fact-F247924A5B1872EF1053BC22CC8450CA" name="us-gaap:WeightedAverageNumberDilutedSharesOutstandingAdjustment" scale="6" unitref="shares">—</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Denominator for dilutive net loss per share</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848945e830-wk-Fact-A118A5CD42A356E29FEE76DB85B8210C" name="us-gaap:WeightedAverageNumberOfDilutedSharesOutstanding" scale="6" unitref="shares">218.6</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848945e849-wk-Fact-8523F40DA4CD56DA9F227461300583C7" name="us-gaap:WeightedAverageNumberOfDilutedSharesOutstanding" scale="6" unitref="shares">219.9</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Basic net loss per share</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:3px double #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:3px double #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9848945e874-wk-Fact-09E006D6ABDC54B98FF59E0588DBA1C9" name="us-gaap:EarningsPerShareBasic" scale="0" sign="-" unitref="usdPerShare">0.38</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:3px double #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:3px double #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:3px double #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9848945e894-wk-Fact-F8EDF3238C1A5D74A64D5E475002FF8C" name="us-gaap:EarningsPerShareBasic" scale="0" sign="-" unitref="usdPerShare">0.59</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:3px double #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Diluted net loss per share</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2019Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9848945e915-wk-Fact-C45F58502C2D503594ED047F32F32B89" name="us-gaap:EarningsPerShareDiluted" scale="0" sign="-" unitref="usdPerShare">0.38</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><span>(<ix:nonfraction contextref="FD2018Q1YTD" decimals="2" format="ixt:numdotdecimal" id="d9848945e935-wk-Fact-E7B48DF284ED5DB986620E469F7C9569" name="us-gaap:EarningsPerShareDiluted" scale="0" sign="-" unitref="usdPerShare">0.59</ix:nonfraction></span></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________ </span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">The effect of dilutive securities of </span><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848945e958-wk-Fact-975EA081231D30EAD5A289E47CC3F843" name="us-gaap:AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareAmount" scale="6" unitref="shares">3.0</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:9pt;"> and </span><span style="font-family:inherit;font-size:9pt;"><span><ix:nonfraction contextref="FD2018Q1YTD" decimals="-5" format="ixt:numdotdecimal" id="d9848945e962-wk-Fact-2D1985F42B7BA275EF4789E48A2D36A7" name="us-gaap:AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareAmount" scale="6" unitref="shares">4.1</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:9pt;"> shares in the </span><span style="font-family:inherit;font-size:9pt;">three</span><span style="font-family:inherit;font-size:9pt;"> months ended </span><span style="font-family:inherit;font-size:9pt;">April 30, 2018</span><span style="font-family:inherit;font-size:9pt;"> and </span><span style="font-family:inherit;font-size:9pt;">2017</span><span style="font-family:inherit;font-size:9pt;">, respectively, have been excluded from the calculation of diluted net loss per share as those shares would have been anti-dilutive due to the net loss incurred during those periods.</span></div></td></tr></table></ix:continuation><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-BE444722972D5AF7AC5D1867687CAE3B-2"><br/></ix:continuation></span></div></ix:continuation><div style="line-height:120%;text-indent:32px;font-size:10pt;"><ix:continuation continuedat="TextSelection-B0FF2098BF2453D891DE7489638E02DD-4" id="TextSelection-B0FF2098BF2453D891DE7489638E02DD-3"><span style="font-family:inherit;font-size:10pt;">The computation of diluted net loss per share does not include shares that are anti-dilutive under the treasury stock method because their exercise prices are higher than the average market value of Autodesk’s stock during the period. For the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD_us-gaap_AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareByAntidilutiveSecuritiesAxis_us-gaap_TreasuryStockMember" decimals="-5" format="ixt:numdotdecimal" id="d9848945e1004-wk-Fact-0119A3103CF3C11BA52689D6EBBABFC6" name="us-gaap:AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareAmount" scale="6" unitref="shares">0.2</ix:nonfraction> million</span></span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2018Q1YTD_us-gaap_AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareByAntidilutiveSecuritiesAxis_us-gaap_TreasuryStockMember" decimals="-5" format="ixt:numdotdecimal" id="d9848945e1008-wk-Fact-F51E69B638494BA9802489D6DF595FEC" name="us-gaap:AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareAmount" scale="6" unitref="shares">0.3</ix:nonfraction> million</span></span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-B0FF2098BF2453D891DE7489638E02DD-4"> potentially anti-dilutive shares were excluded from the computation of diluted net loss per share, respectively.</ix:continuation></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="s1787572125DB5196AE5CFCE0B09B83CC"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">18</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">. </span><ix:nonnumeric contextref="FD2019Q1YTD" continuedat="TextSelection-567E472ADD5A57CCBC746AF246D2BBD9-1" escape="true" id="TextSelection-567E472ADD5A57CCBC746AF246D2BBD9-0-wk-Fact-0341BC10A0E65BDDA96BEC535F20513C" name="us-gaap:SegmentReportingDisclosureTextBlock"><span style="font-family:inherit;font-size:10pt;color:#000000;font-style:italic;font-weight:bold;text-decoration:none;">Segments</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;"> </span></ix:nonnumeric></div><ix:continuation continuedat="TextSelection-567E472ADD5A57CCBC746AF246D2BBD9-2" id="TextSelection-567E472ADD5A57CCBC746AF246D2BBD9-1"><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></ix:continuation><div style="line-height:120%;text-indent:30px;font-size:10pt;"><ix:continuation continuedat="TextSelection-567E472ADD5A57CCBC746AF246D2BBD9-3" id="TextSelection-567E472ADD5A57CCBC746AF246D2BBD9-2"><span style="font-family:inherit;font-size:10pt;">Autodesk reports segment information based on the “management” approach. The management approach designates the internal reporting used by management for making decisions, allocating resources and assessing performance as the source of the Company’s reportable segments. The Company's chief operating decision maker ("CODM") allocates resources and assesses the operating performance of the Company as a whole. As such, Autodesk has </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="INF" format="ixt-sec:numwordsen" id="d9849017e520-wk-Fact-AAE6E4B2D8FC5A4E9D5459942FCCD7F9" name="adsk:NumberofSegmentManagers" scale="0" unitref="manager">one</ix:nonfraction></span></span><span style="font-family:inherit;font-size:10pt;"> segment manager (the CODM), and </span><span style="font-family:inherit;font-size:10pt;"><span><ix:nonfraction contextref="FD2019Q1YTD" decimals="INF" format="ixt-sec:numwordsen" id="d9849017e524-wk-Fact-0AE49993A3B1579F836E55C6B7A6CDE1" name="us-gaap:NumberOfOperatingSegments" scale="0" unitref="segment">one</ix:nonfraction></span></span></ix:continuation><span style="font-family:inherit;font-size:10pt;"><ix:continuation id="TextSelection-567E472ADD5A57CCBC746AF246D2BBD9-3"> operating segment.</ix:continuation></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">28</span></div></div><hr style="page-break-after:always"/><div><a id="sA1638DFDF4A0515884EE2C89F162C03F"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 2.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">MANAGEMENT’S DISCUSSION AND ANALYSIS OF FINANCIAL CONDITION AND RESULTS OF OPERATIONS</span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">The discussion in our MD&A and elsewhere in this Form 10-Q contains trend analyses and other forward-looking statements within the meaning of Section 27A of the Securities Act of 1933 and Section 21E of the Securities Exchange Act of 1934. Forward-looking statements are any statements that look to future events and consist of, among other things, our business strategies, including those discussed in “Strategy” and “Overview of the Three Months Ended April 30, 2018 and 2017” below, future net revenue, operating expenses, recurring revenue, annualized recurring revenue, annualized revenue per subscription, other future financial results (by product type and geography) and subscriptions, the effectiveness of our restructuring efforts, the effectiveness of our efforts to successfully manage transitions to new business models and markets, our expectations regarding the continued transition of our business model, expectations for our maintenance plan and subscription plan subscriptions, our ability to increase our subscription base, expected market trends, including the growth of cloud and mobile computing, the effect of unemployment, the availability of credit, our expectations for our restructuring, the effects of global economic conditions, the effects of revenue recognition, the effects of recently issued accounting standards, expected trends in certain financial metrics, including expenses, the impact of acquisitions and investment activities, expectations regarding our cash needs, the effects of fluctuations in exchange rates and our hedging activities on our financial results, our ability to successfully expand adoption of our products, our ability to gain market acceptance of new businesses and sales initiatives, the impact of economic volatility and geopolitical activities in certain countries, particularly emerging economy countries, the timing and amount of purchases under our stock buy-back plan, and the effects of potential non-cash charges on our financial results and the resulting effect on our financial results. In addition, forward-looking statements also consist of statements involving expectations regarding product capability and acceptance, remediation to our controls environment, statements regarding our liquidity and short-term and long-term cash requirements, as well as statements involving trend analyses and statements including such words as “may,” “believe,” “could,” “anticipate,” “would,” “might,” “plan,” “expect,” and similar expressions or the negative of these terms or other comparable terminology. These forward-looking statements speak only as of the date of this Quarterly Report on Form 10-Q and are subject to business and economic risks. As such, our actual results could differ materially from those set forth in the forward-looking statements as a result of a number of factors, including those set forth below in Part II, </span><span style="font-family:inherit;font-size:10pt;font-style:italic;">Item 1A</span><span style="font-family:inherit;font-size:10pt;font-style:italic;">, “</span><span style="font-family:inherit;font-size:10pt;font-style:italic;">Risk Factors</span><span style="font-family:inherit;font-size:10pt;font-style:italic;">,” and in our other reports filed with the U.S. Securities and Exchange Commission. We assume no obligation to update the forward-looking statements to reflect events that occur or circumstances that exist after the date on which they were made, except as required by law.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Note: A glossary of terms used in this Form 10-Q appears at the end of this Item 2.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sEFE0AA40D6005CABA424E5992BCAAB92"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Strategy</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk makes software for people who make things. If you have ever driven a high-performance car, admired a towering skyscraper, used a smartphone, or watched a great film, chances are you have experienced what millions of Autodesk customers are doing with our software. Autodesk gives you the power to make anything.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk was founded during the platform transition from mainframe computers and engineering workstations to personal computers. We developed and sustained a compelling value proposition based upon desktop software for the personal computer. Just as the transition from mainframes to personal computers transformed the industry over 30 years ago, we believe our industry is undergoing a similar transition from the personal computer to cloud, mobile, and social computing. To address this transition, we have accelerated our move to the cloud and mobile devices and are offering more flexible licensing. Our product subscriptions currently represent a hybrid of desktop software and cloud functionality, which provides a device-independent, collaborative design workflow for designers and their stakeholders. Our SaaS offerings, for example, BIM 360, Shotgun, Fusion, and AutoCAD 360 Pro, provide tools, including mobile and social capabilities, to streamline design, collaboration, building and manufacturing and data management processes. We believe that customer adoption of these new offerings will continue to grow as customers across a range of industries begin to take advantage of the scalable computing power and flexibility provided through these new services.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our strategy is to build an enduring relationship with our customers, delivering valuable automation and insight to their design and make processes. Industry collections provide our customers with increased access to a broader selection of Autodesk products and services that exceeds those previously available in suites - simplifying the customer ability to get access to a complete set of tools for their industry. We now offer subscriptions for individual products and industry collections, flexible enterprise business agreements ("EBAs"), and cloud service offerings (collectively referred to as "subscription plan"). These subscription plan offerings are designed to give our customers more flexibility with how they use our products and service offerings and to attract a broader range of customers, such as project-based users and small businesses. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">29</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">With the discontinuation of the sale of most perpetual licenses, we have transitioned away from selling a mix of perpetual licenses and term-based product subscriptions toward a single subscription model. On June 15, 2017, we commenced a program to incentivize maintenance plan customers to move to subscription plan offerings. Through this program we offer discounts to those maintenance customers that move to a subscription plan, while at the same time increasing maintenance plan pricing over time for customers that remain on maintenance.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As we progress through the current stage of the business model transition, annualized recurring revenue ("ARR"), growth of billings, and total subscriptions better reflect business momentum. To analyze progress, we disaggregate our growth between the original maintenance model ("maintenance plan") and the subscription plan model. Maintenance plan subscriptions peaked in the fourth quarter of our fiscal 2016 as we discontinued selling new maintenance plan subscriptions in fiscal 2017, and we expect them to decline slowly over time as maintenance plan customers continue to convert to our subscription plans.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We sell our products and services globally, through a combination of indirect and direct channels. Our indirect channels include value added resellers, direct market resellers, distributors, computer manufacturers, and other software developers. Our direct channels include internal sales resources dedicated to selling in our largest accounts, our highly specialized products, and business transacted through our online Autodesk branded store. The following chart shows our split between indirect and direct channels for the </span><span style="font-family:inherit;font-size:10pt;">three months</span><span style="font-family:inherit;font-size:10pt;"> ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">: </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;"><img alt="chart-2e90622d97515159b61.jpg" src="chart-2e90622d97515159b61.jpg" style="height:434px;width:508px;"/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We anticipate that our channel mix will continue to change as we scale our online Autodesk branded store business and our largest accounts shift towards direct-only business models. However, we expect our indirect channel will continue to transact and support the majority of our customers and revenue as we move beyond the business model transition. We employ a variety of incentive programs and promotions to align our direct and indirect channels with our business strategies. In addition, we have a worldwide user group organization and we have created online user communities dedicated to the exchange of information related to the use of our products.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">One of our key strategies is to maintain an open-architecture design of our software products to facilitate third-party development of complementary products and industry-specific software solutions. This approach enables customers and third parties to customize solutions for a wide variety of highly specific uses. We offer several programs that provide strategic investment funding, technological platforms, user communities, technical support, forums, and events to developers who develop add-on applications for our products. For example, we have established the Autodesk Forge program to support </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">30</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">innovators that build solutions to facilitate the development of a single connected ecosystem for the future of how things are designed, made, and used as well as support ideas that push the boundaries of 3D printing.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In addition to the competitive advantages afforded by our technology, our large global network of distributors, resellers, third-party developers, customers, educational institutions, educators, and students is a key competitive advantage which has been cultivated over an extensive period of time. This network of partners and relationships provides us with a broad and deep reach into volume markets around the world. Our distributor and reseller network is extensive and provides our customers with the resources to purchase, deploy, learn, and support our products quickly and easily. We have a significant number of registered third-party developers who create products that work well with our products and extend them for a variety of specialized applications.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk is committed to helping fuel a lifelong passion for making with students of all ages. We offer free educational licenses of Autodesk software worldwide to students, educators, and accredited educational institutions. We inspire and support beginners with Tinkercad, a simple online 3D design and 3D printing tool. Through Autodesk Design Academy, we provide secondary and postsecondary school markets hundreds of standards-aligned class projects to support design-based disciplines in Science, Technology, Engineering, Digital Arts, and Math (STEAM) while using Autodesk's professional-grade 3D design, engineering and entertainment software used in industry. We also have made Autodesk Design Academy curricula available on Udemy and Coursera. Our intention is to make Autodesk software ubiquitous and the design and making software of choice for those poised to become the next generation of professional users.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our strategy includes improving our product functionality and expanding our product offerings through internal development as well as through the acquisition of products, technology, and businesses. Acquisitions often increase the speed at which we can deliver product functionality to our customers; however, they entail cost and integration challenges and may, in certain instances, negatively impact our operating margins. We continually review these trade-offs in making decisions regarding acquisitions. We currently anticipate that we will continue to acquire products, technology, and businesses as compelling opportunities become available. </span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our strategy depends upon a number of assumptions to successfully make the transition toward new cloud and mobile platforms, including: the related technology and business model shifts; making our technology available to mainstream markets; leveraging our large global network of distributors, resellers, third-party developers, customers, educational institutions, and students; improving the performance and functionality of our products; and adequately protecting our intellectual property. If the outcome of any of these assumptions differs from our expectations, we may not be able to implement our strategy, which could potentially adversely affect our business. For further discussion regarding these and related risks, see </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">Part II</span><span style="font-family:inherit;font-size:10pt;">, </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">Item 1A</span><span style="font-family:inherit;font-size:10pt;">, “</span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">Risk Factors</span><span style="font-family:inherit;font-size:10pt;">.”</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sD557B94DD99B5191A20AB840E3D954DA"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Critical Accounting Policies and Estimates</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our Condensed Consolidated Financial Statements are prepared in conformity with U.S. generally accepted accounting principles ("GAAP"). In preparing our Condensed Consolidated Financial Statements, we make assumptions, judgments and estimates that can have a significant impact on amounts reported in our Condensed Consolidated Financial Statements. We base our assumptions, judgments and estimates on historical experience and various other factors that we believe to be reasonable under the circumstances. Actual results could differ materially from these estimates under different assumptions or conditions. We regularly reevaluate our assumptions, judgments and estimates. Our significant accounting policies are described in Note 1, “Business and Summary of Significant Accounting Policies,” in the Notes to Consolidated Financial Statements in our Form 10-K for the fiscal year ended </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">. In addition, we highlighted those policies that involve a higher degree of judgment and complexity with further discussion in Item 7, “Management’s Discussion and Analysis of Financial Condition and Results of Operations” in our Form 10-K. There have been no material changes to our critical accounting policies and estimates during the </span><span style="font-family:inherit;font-size:10pt;">three months ended April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> as compared to those disclosed in our Form 10-K for the fiscal year ended </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">, except for the adoption of Accounting Standard Codification ("ASC") Topics 606 and 340-40. For changes made to our revenue recognition policy as a result of the adoption of ASC Topics 606 and 340-40, refer to Note </span><span style="font-family:inherit;font-size:10pt;">3</span><span style="font-family:inherit;font-size:10pt;">, "</span><span style="font-family:inherit;font-size:10pt;">Revenue Recognition</span><span style="font-family:inherit;font-size:10pt;">" and Note </span><span style="font-family:inherit;font-size:10pt;">10</span><span style="font-family:inherit;font-size:10pt;">, "</span><span style="font-family:inherit;font-size:10pt;">Deferred Compensation</span><span style="font-family:inherit;font-size:10pt;">," in the Notes to the unaudited Condensed Consolidated Financial Statements of this Quarterly Report on Form 10-Q. We believe these policies are the most critical to aid in fully understanding and evaluating our financial condition and results of operations.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sB7818FC4459C5D39BD0BB75B813AC3C4"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Overview of the </span><span style="font-family:inherit;font-size:10pt;color:#000000;font-weight:bold;text-decoration:none;">Three Months Ended April 30,</span><span style="font-family:inherit;font-size:10pt;"> </span><span style="font-family:inherit;font-size:10pt;color:#000000;font-weight:bold;text-decoration:none;">2018</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;"> and </span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">2017</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;"> </span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><table cellpadding="0" cellspacing="0" style="padding-bottom:4px;font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Total net revenue was </span><span style="font-family:inherit;font-size:10pt;">$559.9 million</span><span style="font-family:inherit;font-size:10pt;">, an increase of </span><span style="font-family:inherit;font-size:10pt;">15 percent</span><span style="font-family:inherit;font-size:10pt;"> compared to the same period in the prior year.</span></div></td></tr></table><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">31</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><table cellpadding="0" cellspacing="0" style="padding-bottom:4px;font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Total ARR was </span><span style="font-family:inherit;font-size:10pt;">$2.13 billion</span><span style="font-family:inherit;font-size:10pt;">, an increase of </span><span style="font-family:inherit;font-size:10pt;">22 percent</span><span style="font-family:inherit;font-size:10pt;"> compared to the same period in the prior year.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="padding-bottom:4px;font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Total subscriptions increased to </span><span style="font-family:inherit;font-size:10pt;">3.82 million</span><span style="font-family:inherit;font-size:10pt;">.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="padding-bottom:4px;font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Total spend (cost of revenue + operating expenses) increased </span><span style="font-family:inherit;font-size:10pt;">2 percent</span><span style="font-family:inherit;font-size:10pt;"> compared to the same period in the prior year.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="padding-bottom:4px;font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We adopted ASC Topic 606 and ASC Topic 340-40 during the first quarter of 2018. Under the modified retrospective transition method, we recorded a cumulative decrease of </span><span style="font-family:inherit;font-size:10pt;">$178.0 million</span><span style="font-family:inherit;font-size:10pt;"> to the opening balance of accumulated deficit at February 1, 2018. See discussion below for additional information regarding certain metrics that were affected by the new standards under the heading “Impact of New Revenue Accounting Standard."</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="padding-bottom:4px;font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Under ASC 605, deferred revenue was </span><span style="font-family:inherit;font-size:10pt;">$1.9 billion</span><span style="font-family:inherit;font-size:10pt;">, an increase of approximately 8 percent compared to the first quarter last year.</span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Revenue Analysis</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Net revenue </span><span style="font-family:inherit;font-size:10pt;">increased</span><span style="font-family:inherit;font-size:10pt;"> during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, as compared to the same period in the prior fiscal year, primarily due to a </span><span style="font-family:inherit;font-size:10pt;">102%</span><span style="font-family:inherit;font-size:10pt;"> increase in subscription revenue, partially offset by a </span><span style="font-family:inherit;font-size:10pt;">31%</span><span style="font-family:inherit;font-size:10pt;"> decrease in maintenance revenue. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Further discussion of the drivers of these results are discussed below under the heading “Results of Operations.” </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We rely significantly upon major distributors and resellers in both the U.S. and international regions, including Tech Data Corporation and its global affiliates (collectively, “Tech Data”). Total sales to Tech Data accounted for </span><span style="font-family:inherit;font-size:10pt;">34%</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">30%</span><span style="font-family:inherit;font-size:10pt;"> of Autodesk’s total net revenue for the </span><span style="font-family:inherit;font-size:10pt;">three months</span><span style="font-family:inherit;font-size:10pt;"> ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, respectively. Our customers through Tech Data are the resellers and end users who purchase our software licenses and services. Should any of our agreements with Tech Data be terminated for any reason, we believe the resellers and end users who currently purchase our products through Tech Data would be able to continue to do so under substantially the same terms from one of our many other distributors without substantial disruption to our revenue. Consequently, we believe our business is not substantially dependent on Tech Data.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Recurring Revenue and Subscriptions</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In order to help better understand our financial performance during and after the business model transition, we use several metrics including recurring revenue, total subscriptions, ARR, and annualized revenue per subscription ("ARPS"). ARR, ARPS, total subscriptions, and recurring revenue are performance metrics and should be viewed independently of revenue and deferred revenue as ARR, ARPS, and recurring revenue are not intended to be combined with those items. Our determination and presentation may differ from that of other companies. Please refer to the Glossary of Terms for the definitions of these metrics.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The following table outlines our recurring revenue metric for the </span><span style="font-family:inherit;font-size:10pt;">three months</span><span style="font-family:inherit;font-size:10pt;"> ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">:</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;text-indent:0px;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="15"></td></tr><tr><td style="width:49%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(In millions, except percentage data) </span></div></td><td colspan="3" rowspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="6" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Change compared to<br/>prior fiscal year</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" rowspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2017</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">$</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">% </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Recurring Revenue</span><span style="font-family:inherit;font-size:9pt;font-style:italic;"> </span><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">531.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">95.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">22</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">435.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">As a percentage of net revenue</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">95</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">N/A</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">N/A</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">90</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> ________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">The acquisition of a business may cause variability in the comparison of recurring revenue in this table above and recurring revenue derived from the revenue reported in the unaudited Condensed Consolidated Statements of Operations.</span><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table><div style="line-height:120%;padding-left:4px;text-align:left;padding-left:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">32</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The following table outlines our ARR, subscriptions and ARPS metrics as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">. For purposes of clarifications, the ARR and ARPS balances in the following table as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> are calculated under ASC Topic 606. For comparison of ARR and ARPS as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> under the old revenue standard, ASC 605, refer to the table under the title "Impact of New Revenue Accounting Standard" further below. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="15"></td></tr><tr><td style="width:61%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" rowspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Balances, April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="6" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Change compared to<br/>prior fiscal year end</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" rowspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Balances, January 31, 2018 (1)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">$</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">% </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ARR</span><span style="font-family:inherit;font-size:8pt;font-style:italic;"> (in millions)</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Subscription plan ARR</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,401.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">226.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">19</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,175.0</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance plan ARR </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">724.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(154.2</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(18</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">879.1</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:24px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total ARR (1)</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2,126.4</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">72.3</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">4</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2,054.1</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Number of Subscriptions</span><span style="font-family:inherit;font-size:8pt;font-style:italic;"> (in thousands)</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Subscription plan</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2,574.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">307.5</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">14</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2,266.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance plan</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,242.6</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(206.3</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(14</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,448.9</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:24px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total subscriptions</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3,816.9</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">101.2</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3,715.7</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:17px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ARPS</span><span style="font-family:inherit;font-size:8pt;font-style:italic;"> (ARR divided by number of Subscriptions) </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Subscription plan ARPS</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">544</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">26</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">518</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance plan ARPS</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">583</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(24</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(4</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">607</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total ARPS (2)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">557</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">553</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> ________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">The acquisition of a business may cause variability in the comparison of ARR reported in this table above and ARR derived from the revenue reported in the Condensed Consolidated Statement of Operations.</span><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">There are small variances between ARR and total subscriptions due in part to the inherent limitation with collecting all subscriptions information. For example, Buzzsaw and Constructware are included with ARR but not in total subscriptions due to these inherent limitations. We do not view these variances as meaningful to amounts or quarterly comparisons presented here for ARPS.</span></div></td></tr></table><div style="line-height:120%;padding-left:4px;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Total ARR </span><span style="font-family:inherit;font-size:10pt;">increase</span><span style="font-family:inherit;font-size:10pt;">d </span><span style="font-family:inherit;font-size:10pt;">4%</span><span style="font-family:inherit;font-size:10pt;"> as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> under ASC 606 as compared to the end of fiscal </span><span style="font-family:inherit;font-size:10pt;">2018</span><span style="font-family:inherit;font-size:10pt;">, primarily due to a </span><span style="font-family:inherit;font-size:10pt;">19%</span><span style="font-family:inherit;font-size:10pt;"> </span><span style="font-family:inherit;font-size:10pt;">increase</span><span style="font-family:inherit;font-size:10pt;"> in subscription plan ARR driven by growth in product subscription. The increase was partially offset by an </span><span style="font-family:inherit;font-size:10pt;">18%</span><span style="font-family:inherit;font-size:10pt;"> </span><span style="font-family:inherit;font-size:10pt;">decrease</span><span style="font-family:inherit;font-size:10pt;"> in maintenance plan ARR driven by the migration from maintenance plan subscriptions to subscription plan subscriptions. Under ASC 605, total ARR increased 6% as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> as compared to the end of fiscal </span><span style="font-family:inherit;font-size:10pt;">2018</span><span style="font-family:inherit;font-size:10pt;"> primarily due to a 21% increase in subscription plan ARR, partially offset by a 15% decrease in maintenance plan ARR. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Subscription plan subscriptions </span><span style="font-family:inherit;font-size:10pt;">increase</span><span style="font-family:inherit;font-size:10pt;">d </span><span style="font-family:inherit;font-size:10pt;">14%</span><span style="font-family:inherit;font-size:10pt;"> or approximately </span><span style="font-family:inherit;font-size:10pt;">307,500</span><span style="font-family:inherit;font-size:10pt;"> as compared to the end of fiscal </span><span style="font-family:inherit;font-size:10pt;">2018</span><span style="font-family:inherit;font-size:10pt;">, driven by growth in all subscription plan types, led by new product subscriptions. Subscription plan subscriptions benefited from approximately </span><span style="font-family:inherit;font-size:10pt;">154,000</span><span style="font-family:inherit;font-size:10pt;"> maintenance subscribers that were converted to product subscription under the maintenance-to-subscription program during the three months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, respectively.</span></div><div style="line-height:120%;padding-left:4px;text-align:left;padding-left:30px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Maintenance plan subscriptions </span><span style="font-family:inherit;font-size:10pt;">decreased</span><span style="font-family:inherit;font-size:10pt;"> </span><span style="font-family:inherit;font-size:10pt;">14%</span><span style="font-family:inherit;font-size:10pt;"> or approximately </span><span style="font-family:inherit;font-size:10pt;">206,300</span><span style="font-family:inherit;font-size:10pt;"> from the end of fiscal </span><span style="font-family:inherit;font-size:10pt;">2018</span><span style="font-family:inherit;font-size:10pt;">, primarily as a result of the maintenance-to-subscription program in which approximately </span><span style="font-family:inherit;font-size:10pt;">154,000</span><span style="font-family:inherit;font-size:10pt;"> maintenance plan subscriptions converted to product subscription during the three months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. The net decrease is expected and we expect to see ongoing declines in maintenance plan subscriptions going forward as part of the business model transition. The rate of decline will vary based on the number of subscriptions subject to renewal, the renewal rate, and our ability to incentivize customers to switch over to EBAs or product subscriptions.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">ARPS as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> was </span><span style="font-family:inherit;font-size:10pt;">$557</span><span style="font-family:inherit;font-size:10pt;"> under ASC 606 and </span><span style="font-family:inherit;font-size:10pt;">$569</span><span style="font-family:inherit;font-size:10pt;"> under ASC 605, a slight increase compared to the end of fiscal </span><span style="font-family:inherit;font-size:10pt;">2018</span><span style="font-family:inherit;font-size:10pt;"> due to an increase in subscription plan ARPS. The increase in subscription plan ARPS was driven by an increase in product subscription ARPS.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">When adjusted for the impact of the maintenance-to-subscription program, subscription plan ARPS and maintenance plan ARPS would have been $543 and $574, respectively.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">33</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our ARPS is currently, and will continue to be, affected by various factors including the maintenance-to-subscription (M2S) program, geography and product mix, promotions, sales linearity within a quarter, pricing changes, and foreign currency. We expect to see ARPS fluctuate up or down on a quarterly basis. As we progress on our business model transition, we expect all of the impacts of these factors to stabilize.</span><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Impact of New Revenue Accounting Standard </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We adopted Accounting Standard Update No 2014-09, which codified new revenue recognition guidance under ASC Topic 606. Previously, we followed revenue accounting guidance under ASC Topic 605. The table below shows what some of our key metrics would have been under ASC Topic 605 (see Note </span><span style="font-family:inherit;font-size:10pt;">2</span><span style="font-family:inherit;font-size:10pt;">, “</span><span style="font-family:inherit;font-size:10pt;">Recently Issued Accounting Standards</span><span style="font-family:inherit;font-size:10pt;">” for more details on our adoption and impacts):</span></div><div style="line-height:120%;text-align:left;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="12"></td></tr><tr><td style="width:65%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2017</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(in millions except ARPS)</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">ASC 606</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">ASC 605</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">ASC 605</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-weight:bold;">Key Income Statement Metrics</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Subscription revenue</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">350.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">356.7</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">173.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance revenue </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">181.2</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">186.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">263.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other revenue </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">28.3</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">30.2</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">48.7</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total net revenue</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">559.9</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">573.5</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">485.7</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gross profit</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">493.1</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">506.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">407.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Spend</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">615.2</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">601.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">605.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net loss</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(82.4</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(60.0</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(129.6</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Basic and diluted net loss per share</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.38</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.27</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.59</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-weight:bold;">ARR</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Subscription plan ARR</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,401.5</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,427.0</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">691.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance plan ARR</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">724.9</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">746.3</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,051.7</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total ARR </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2,126.4</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2,173.3</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,743.6</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-weight:bold;">ARPS</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Subscription plan ARPS</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">544</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">554</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">524</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance plan ARPS</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">583</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">601</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">534</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total ARPS</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">557</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">569</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">530</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-weight:bold;">Net Revenue by Product Family</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Architecture, Engineering and Construction ("AEC")</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">221.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">227.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">185.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">AutoCAD and AutoCAD LT ("ACAD")</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">155.6</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">160.2</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">129.0</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Manufacturing ("MFG")</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">135.4</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">138.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">128.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Media and Entertainment ("M&E")</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">41.8</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">41.7</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">36.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5.0</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">6.0</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total Net Revenue</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">559.9</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">573.5</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">485.7</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;font-weight:bold;">Net Revenue by Geography</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Americas</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">233.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">237.7</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">210.1</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Europe, Middle East and Africa ("EMEA")</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">220.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">228.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">189.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Asia Pacific ("APAC")</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">105.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">107.2</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">85.9</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total Net Revenue</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">559.9</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">573.5</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">485.7</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The adoption of ASC 606 required a change to our reporting around deferred revenue. See discussions below under the heading "Unbilled Deferred Revenue."</span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">34</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Foreign Currency Analysis </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We generate a significant amount of our revenue in the United States, Germany, Japan, the United Kingdom, and Canada. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The following table shows the impact of foreign exchange rate changes on our net revenue and total spend: </span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:42%;"></td><td style="width:15%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:19%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:20%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2018</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Percent change compared to<br/>prior fiscal year</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Constant Currency percent change compared to<br/>prior fiscal year (2)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Positive/Negative/Neutral impact from foreign exchange rate changes</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Revenue</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">15</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">15</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Neutral</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Spend (1)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Negative</span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> ________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Our total spend is defined as cost of revenue plus operating expenses.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Please refer to the Glossary of Terms for the definitions of our constant currency growth rates. </span></div></td></tr></table><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Changes in the value of the U.S. dollar may have a significant effect on net revenue, total spend, and income (loss) from operations in future periods. We use foreign currency contracts to reduce the exchange rate effect on a portion of the net revenue of certain anticipated transactions but do not attempt to completely mitigate the impact of fluctuations of such foreign currency against the U.S. dollar.</span></div><div style="line-height:120%;text-align:left;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Unbilled Deferred Revenue</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The adoption of ASC 606 required a change to the definition of unbilled deferred revenue and new qualitative and quantitative disclosures around our performance obligations. Unbilled deferred revenue represents contractually stated or committed orders under early renewal and multi-year billing plans for subscription, services, license and maintenance for which the associated deferred revenue has not been recognized. Under ASC 606, unbilled deferred revenue is not included as a receivable or deferred revenue on our Consolidated Balance Sheet. See Note </span><span style="font-family:inherit;font-size:10pt;">3</span><span style="font-family:inherit;font-size:10pt;">, “</span><span style="font-family:inherit;font-size:10pt;">Revenue Recognition</span><span style="font-family:inherit;font-size:10pt;">” for more details on Autodesk's performance obligations. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="12"></td></tr><tr><td style="width:69%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:9%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2017</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(in millions)</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">ASC 606</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">ASC 605</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">ASC 605</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Deferred revenue</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,806.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,942.7</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,801.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Unbilled deferred revenue</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">411.5</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">336.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">30.0</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total deferred revenue</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2,217.9</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2,279.3</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1,831.5</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We expect that the amount of billed and unbilled deferred revenue will change from quarter to quarter for several reasons, including the specific timing, duration and size of large customer subscription and support agreements, varying billing cycles of such agreements, the specific timing of customer renewals, and foreign currency fluctuations.</span><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Balance Sheet and Cash Flow Items </span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">At </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, we had $</span><span style="font-family:inherit;font-size:10pt;">1.5 billion</span><span style="font-family:inherit;font-size:10pt;"> in cash and marketable securities. Our cash flow from operations </span><span style="font-family:inherit;font-size:10pt;">decrease</span><span style="font-family:inherit;font-size:10pt;">d </span><span style="font-family:inherit;font-size:10pt;">137%</span><span style="font-family:inherit;font-size:10pt;"> to $</span><span style="font-family:inherit;font-size:10pt;">(16.9) million</span><span style="font-family:inherit;font-size:10pt;">, for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> compared to $</span><span style="font-family:inherit;font-size:10pt;">45.2 million</span><span style="font-family:inherit;font-size:10pt;"> from the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2017</span><span style="font-family:inherit;font-size:10pt;">. We repurchased </span><span style="font-family:inherit;font-size:10pt;">0.2 million</span><span style="font-family:inherit;font-size:10pt;"> shares of our common stock for </span><span style="font-family:inherit;font-size:10pt;">$21.0 million</span><span style="font-family:inherit;font-size:10pt;"> during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. Comparatively, we repurchased 2.2 million shares of our common stock for $192.0 million during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2017</span><span style="font-family:inherit;font-size:10pt;">. Further discussion regarding the balance sheet and cash flow activities are discussed below under the heading “Liquidity and Capital Resources.”</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">35</span></div></div><hr style="page-break-after:always"/><div><a id="sB3D6A5CA09895482A2F1DBF8FC72CA0D"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Results of Operations </span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The revenue and spend balances included in the tables below during the three months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> are calculated under ASC Topic 606. For comparison of subscription revenue, maintenance revenue, other revenue and total spend during the three months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> under ASC 605, refer to the table within Item 2, "Overview" under the title "Impact of New Revenue Accounting Standard." </span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;text-decoration:underline;">Net Revenue</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Income Statement Presentation </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Subscription revenue consists of our term-based product subscriptions, cloud service offerings, and flexible enterprise</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">business arrangements. Revenue from these arrangements is recognized ratably over the contract term. Revenue for our cloud service offerings is recognized ratably over the contract term commencing with the date our service is made available to customers and when all other revenue recognition criteria have been satisfied.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Maintenance revenue consists of renewal fees for existing maintenance plan agreements that were initially purchased with a perpetual software license. Under our maintenance plan, customers are eligible to receive unspecified upgrades, when and if available, and technical support. We recognize maintenance revenue over the term of the agreements, generally between one and three years. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Other revenue consists of revenue from consulting, training and other services, and is recognized over time as the services are performed. Other revenue also includes software license revenue from the sale of our discontinued perpetual licenses. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="17"></td></tr><tr><td style="width:36%;"></td><td style="width:1%;"></td><td style="width:6%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:6%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:6%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:6%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:29%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:Times New Roman;font-size:8pt;font-weight:bold;">Three Months Ended</span></div></td><td rowspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="6" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Change compared to<br/>prior fiscal year</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:Times New Roman;font-size:8pt;font-weight:bold;">Three Months Ended</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td rowspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Management Comments</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(in millions)</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2018</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">$ </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">% </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2017</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net Revenue:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Subscription</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">350.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">177.0</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">102</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">173.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">The increase in subscription revenue is primarily a result of the business model transition as maintenance plan subscriptions migrate to product subscriptions with the M2S program. We also saw growth across all subscription plan types, led by product subscriptions and EBAs.</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance</span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">181.2</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(82.4</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(31</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">263.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">The decrease in maintenance revenue is driven by the migration of maintenance plan subscriptions to product subscriptions with the M2S program as well as the discontinuation of new maintenance agreements. We expect maintenance revenue will slowly decline; however, the rate of decline will vary based on the number of renewals, the renewal rate, and our ability to incentivize maintenance plan customers to switch over to subscription plan offerings.</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:36px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> Total maintenance and subscription revenue </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">531.6</span></div></td><td style="vertical-align:bottom;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">94.6</span></div></td><td style="vertical-align:bottom;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">22</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">437.0</span></div></td><td style="vertical-align:bottom;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other (1)</span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">28.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(20.4</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(42</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">48.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">The decrease in other revenue is driven by the business model transition and the discontinuation of perpetual license sales.</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">559.9</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">74.2</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">15</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">485.7</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Previously labeled as "License and other" in prior periods.</span></div></td></tr></table><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">36</span></div></div><hr style="page-break-after:always"/><div><a id="s85A9D7C59FB25BCFB5DD234B34DB9822"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Net Revenue by Product Family</span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our product offerings are focused in four primary product families: AEC, MFG, ACAD, and M&E.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="17"></td></tr><tr><td style="width:32%;"></td><td style="width:1%;"></td><td style="width:5%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:6%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:6%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:33%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:Times New Roman;font-size:8pt;font-weight:bold;">Three Months Ended</span></div></td><td rowspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="6" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Change compared to<br/>prior fiscal year</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:Times New Roman;font-size:8pt;font-weight:bold;">Three Months Ended</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td rowspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Management Comments</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(in millions)</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2018</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">$ </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">% </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2017</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:24px;text-indent:-24px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net Revenue by Product Family (1):</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:36px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">AEC</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">221.8</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">35.9</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">19</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">185.9</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Up due to an increase in AEC collections and legacy suites driven by the discontinuation of perpetual licenses and the strong results of our M2S program. Contributing to the growth was an increase in revenue from EBAs and individual AEC product offerings driven by the respective increases in subscription additions.</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">ACAD</span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">155.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">26.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">21</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">129.0</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Up due to increases in both AutoCAD LT and AutoCAD driven by increases in subscription additions.</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">MFG</span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">135.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">7.1</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">6</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">128.3</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Up due to an increase in MFG collections and legacy suites driven by the discontinuation of perpetual licenses and the strong results of our M2S program. Contributing to the growth was an increase in revenue from EBAs driven by an increase in subscription additions.</span></div><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">M&E</span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">41.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">15</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">36.5</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Up due to an increase in Animation primarily due to an increase in revenue from EBAs driven by an increase in subscription additions.</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other</span></div></td><td colspan="2" style="vertical-align:top;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5.3</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.7</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(12</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">6.0</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">559.9</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">74.2</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">15</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">485.7</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table></div></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Due to changes in the go-to-market offerings of our AutoCAD product subscription, prior period balances have been adjusted to conform to current period presentation.</span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="s3B7FC61438335BF18DBD7DE3B63FADAE"></a></div><div style="line-height:120%;text-indent:16px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Net Revenue by Geographic Area</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="18"></td></tr><tr><td style="width:42%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:5%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:7%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:13%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(in millions)</span></div></td><td colspan="3" rowspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="6" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Change compared to<br/>prior fiscal year</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Constant Currency Change compared to prior fiscal year</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" rowspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30, 2017</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">$ </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">% </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">% </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net Revenue:</span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:12px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Americas</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">U.S.</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">195.9</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">16.1</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">9</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">*</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">179.8</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:20px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other Americas</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">37.6</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">7.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">24</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">*</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">30.3</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total Americas</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">233.5</span></div></td><td style="vertical-align:bottom;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">23.4</span></div></td><td style="vertical-align:bottom;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">11</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">11</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">210.1</span></div></td><td style="vertical-align:bottom;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">EMEA</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">220.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">31.2</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">16</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">16</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">189.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">APAC</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">105.5</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">19.6</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">23</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">22</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">85.9</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total Net Revenue (1)</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">559.9</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">74.2</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">15</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">15</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">485.7</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Emerging Economies </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">65.2</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">14.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">28</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">27</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">50.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________ </span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Totals may not sum due to rounding. </span></div></td></tr></table><div style="line-height:120%;padding-left:4px;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">* Constant currency data not provided at this level. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We believe that international revenue will continue to comprise a majority of our net revenue. Unfavorable economic conditions in the countries that contribute a significant portion of our net revenue, including in emerging economies such as </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">37</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Brazil, Russia, India, and China, may have an adverse effect on our business in those countries and our overall financial performance. Changes in the value of the U.S. dollar relative to other currencies have significantly affected, and could continue to significantly affect, our financial results for a given period even though we hedge a portion of our current and projected revenue. Increases to the levels of political and economic unpredictability in the global market may impact our future financial results. Additionally, during the first three years of the business model transition, revenue has been impacted as more revenue is recognized ratably rather than upfront and as new product offerings generally have a lower initial purchase price. While the transition to a subscription model has had a broad impact within all markets, it has had a particular impact to emerging economies as sales of perpetual licenses have historically comprised a greater percentage of total emerging economy sales in comparison to mature markets. </span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sA0A338FB18C4539C8E081ABEFE01F17C"></a></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Cost of Revenue and Operating Expenses</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Cost of maintenance and subscription revenue includes the labor costs of providing product support to our maintenance and subscription customers, including allocated IT and facilities costs, professional services fees related to operating our network and cloud infrastructure, royalties, depreciation expense and operating lease payments associated with computer equipment, data center costs, salaries, related expenses of network operations, and stock-based compensation expense. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Cost of other revenue includes labor costs associated with product setup, costs of consulting and training services contracts, and collaborative project management services contracts. Cost of other revenue also includes stock-based compensation expense, direct material and overhead charges, allocated IT and facilities costs, professional services fees and royalties. Direct material and overhead charges include the cost associated with electronic and physical fulfillment.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Cost of revenue, at least over the near term, is affected by the volume and mix of product sales, fluctuations in consulting costs, amortization of developed technology, new customer support offerings, royalty rates for licensed technology embedded in our products and employee stock-based compensation expense. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Marketing and sales expenses include salaries, bonuses, benefits and stock-based compensation expense for our marketing and sales employees, the expense of travel, entertainment and training for such personnel, the costs of programs aimed at increasing revenue, such as advertising, trade shows and expositions, and various sales and promotional programs. Marketing and sales expenses also include labor costs associated with sales and order management, sales and dealer commissions, payment processing fees, the cost of supplies and equipment, gains and losses on our operating expense cash flow hedges, and allocated IT and facilities costs.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Research and development expenses, which are expensed as incurred, consist primarily of salaries, bonuses, benefits and stock-based compensation expense for research and development employees, and the expense of travel, entertainment and training for such personnel, professional services such as fees paid to software development firms and independent contractors, gains and losses on our operating expense cash flow hedges, and allocated IT and facilities costs.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">General and administrative expenses include salaries, bonuses, transition costs, benefits and stock-based compensation expense for our CEO, finance, human resources and legal employees, as well as professional fees for legal and accounting services, certain foreign business taxes, gains and losses on our operating expense cash flow hedges, expense of travel, entertainment and training, net IT and facilities costs, and the cost of supplies and equipment.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">38</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="17"></td></tr><tr><td style="width:27%;"></td><td style="width:1%;"></td><td style="width:5%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:4%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:5%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:5%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:43%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended</span></div></td><td rowspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="6" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Change compared to<br/>prior fiscal year</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td rowspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Management comments</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(in millions)</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2018</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">$ </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">% </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">April 30, 2017</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of revenue:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:36px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Maintenance and subscription</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">50.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(4.5</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(8</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">54.9</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Down primarily due to a decrease in employee-related costs driven by decreased headcount associated with the Fiscal 2018 Plan restructuring.</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other (1)</span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">12.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(5.8</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(31</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">18.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Down primarily due to a decrease in employee-related costs driven by decreased headcount associated with the Fiscal 2018 Plan restructuring.</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:36px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of developed technology</span></div></td><td colspan="2" style="vertical-align:top;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.6</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(1.1</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(23</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">4.7</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Down as previously acquired developed technologies continue to become fully amortized while fewer assets are acquired compared to the prior year.</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total cost of revenue</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">66.8</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(11.4</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(15</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">78.2</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Operating expenses:</span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Marketing and sales</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">276.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">20.7</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">8</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">255.7</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Up due to increased commissions expense, as a result of our adoption of ASC Topic 340-40, and increased employee-related costs from higher headcount.</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Research and development</span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">172.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(14.9</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(8</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">187.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Down primarily due to a decrease in employee-related costs driven by decreased headcount associated with the Fiscal 2018 Plan restructuring.</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:36px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">General and administrative</span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">72.9</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(5.4</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(7</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">78.3</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Down due to a decrease in stock-based compensation expense driven by awards that were accelerated as part of the CEO transition during the first quarter of the prior year.</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of purchased intangibles </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(1.9</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(33</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Down as previously acquired intangible assets continue to become fully amortized and fewer assets are acquired compared to the prior year.</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Restructuring and other facility exit costs, net (2)</span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">22.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">22.8</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">*</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.3</span></div></td><td style="vertical-align:top;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Driven by the Fiscal 2018 Plan to re-balance resources to better align with the Company's strategic priorities and position itself to meet long-term goals. Costs associated with the Fiscal 2018 Plan are principally from employee termination benefits, lease termination costs and other exit costs.</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:52px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total operating expenses</span></div></td><td style="vertical-align:top;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">548.4</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">21.3</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">4</span></div></td><td style="vertical-align:top;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:top;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">527.1</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Previously labeled as "License and other" in prior periods.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">See Note </span><span style="font-family:inherit;font-size:9pt;">13</span><span style="font-family:inherit;font-size:9pt;">, "</span><span style="font-family:inherit;font-size:9pt;">Restructuring charges and other facility exit costs, net</span><span style="font-family:inherit;font-size:9pt;">" in the Notes to Condensed Consolidated Financial Statements for additional information.</span></div></td></tr></table><div style="line-height:120%;padding-left:4px;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">* Percentage is not meaningful.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The following table highlights our expectation for the absolute dollar change and percent of revenue change between the second quarter of fiscal </span><span style="font-family:inherit;font-size:10pt;">2019</span><span style="font-family:inherit;font-size:10pt;">, as compared to the second quarter of fiscal </span><span style="font-family:inherit;font-size:10pt;">2018</span><span style="font-family:inherit;font-size:10pt;">:</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="4"></td></tr><tr><td style="width:59%;"></td><td style="width:20%;"></td><td style="width:1%;"></td><td style="width:20%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Absolute dollar impact</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Percent of net revenue impact</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Cost of Revenue</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Decrease</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Decrease</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Marketing and sales</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Increase</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Decrease</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Research and development</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Decrease</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Decrease</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">General and administrative</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Slight Decrease</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Decrease</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of purchased intangibles </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Decrease</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Relatively Flat</span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">39</span></div></div><hr style="page-break-after:always"/><div><a id="s56CF588623E45B44BAA11FC7539C9F78"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Interest and Other Expense, Net</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The following table sets forth the components of interest and other expense, net:</span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:77%;"></td><td style="width:1%;"></td><td style="width:9%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:9%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(in millions)</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;border-top:1px solid #000000;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Interest and investment expense, net</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(13.2</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(6.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gain (loss) on foreign currency</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2.1</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(1.0</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gain on strategic investments and dispositions</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Other (expense) income</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.1</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.4</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Interest and other expense, net</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(8.5</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(1.8</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-size:10pt;">Interest and other expense, net</span><span style="font-family:inherit;font-size:10pt;"> increased </span><span style="font-family:inherit;font-size:10pt;">$6.7 million</span><span style="font-family:inherit;font-size:10pt;"> during the </span><span style="font-family:Times New Roman;">three months ended</span><span style="font-family:inherit;font-size:10pt;"> </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, as compared to the same period in the prior fiscal year, primarily driven by mark to market losses on deferred compensation plans and increased interest expense resulting from our June 2017 issuance of $500.0 million aggregate principal amount of 3.5% notes due June 15, 2027.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Interest expense and investment income fluctuates based on average cash, marketable securities and debt balances, average maturities and interest rates. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Gains and losses on foreign currency are primarily due to the impact of re-measuring foreign currency transactions and net monetary assets into the functional currency of the corresponding entity. The amount of the gain or loss on foreign currency is driven by the volume of foreign currency transactions and the foreign currency exchange rates for the period.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="s826CB32EFEAD5E04956F0A752ECA66B6"></a></div><div style="line-height:120%;text-indent:18px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Provision for Income Taxes</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We account for income taxes and the related accounts under the liability method. Deferred tax liabilities and assets are determined based on the difference between the financial statement and tax bases of assets and liabilities, using enacted rates expected to be in effect during the year in which the basis differences reverse.</span></div><div style="line-height:120%;text-align:left;text-indent:34px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk had an income tax expense of </span><span style="font-family:inherit;font-size:10pt;">$18.6 million</span><span style="font-family:inherit;font-size:10pt;">, relative to pre-tax losses of </span><span style="font-family:inherit;font-size:10pt;">$63.8 million</span><span style="font-family:inherit;font-size:10pt;"> for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, and an income tax expense of </span><span style="font-family:inherit;font-size:10pt;">$8.2 million</span><span style="font-family:inherit;font-size:10pt;">, relative to pre-tax losses of </span><span style="font-family:inherit;font-size:10pt;">$121.4 million</span><span style="font-family:inherit;font-size:10pt;"> for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2017</span><span style="font-family:inherit;font-size:10pt;">. Income tax expense increased primarily due to the mix of increased worldwide earnings, foreign taxes, and withholding taxes. The variance between April 30, 2017, and April 30, 2018, was mainly due to reversal of foreign withholding tax accruals in April 30, 2017.</span></div><div style="line-height:120%;text-align:left;text-indent:34px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">A valuation allowance is recorded to reduce deferred tax assets when management cannot conclude that it is more likely than not that the net deferred tax asset will be recovered. The valuation allowance is determined by assessing both positive and negative evidence to determine whether it is more likely than not that deferred tax assets are recoverable; such assessment is required on a jurisdiction-by-jurisdiction basis. Significant judgment is required in determining whether the valuation allowance should be recorded against deferred tax assets. In assessing the need for a valuation allowance, we consider all available evidence including past operating results and estimates of future taxable income. Beginning in the second quarter of fiscal 2016, we considered recent cumulative losses in the United States arising from the Company's business model transition as a significant source of negative evidence. Considering this negative evidence and the absence of sufficient positive objective evidence that we would generate sufficient taxable income in our United States tax jurisdiction to realize the deferred tax assets, we determined that it was not more likely than not that the Company would realize the U.S. federal and state deferred tax assets and recorded a full valuation allowance. As we continually strive to optimize our overall business model, tax planning strategies may become feasible whereby management may determine that it is more likely than not that the federal and state deferred tax assets will be realized; as a result, we will continue to evaluate the realizability of our net deferred tax assets each quarter, both in the U.S. and in foreign jurisdictions, based on all available evidence, both positive and negative.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, we had </span><span style="font-family:inherit;font-size:10pt;">$341.3 million</span><span style="font-family:inherit;font-size:10pt;"> of gross unrecognized tax benefits, of which </span><span style="font-family:inherit;font-size:10pt;">$307.9 million</span><span style="font-family:inherit;font-size:10pt;"> represents the amount of unrecognized tax benefits that would reduce our valuation allowance, if recognized. The remaining </span><span style="font-family:inherit;font-size:10pt;">$33.4 million</span><span style="font-family:inherit;font-size:10pt;"> would impact the effective tax rate. It is possible that the amount of unrecognized tax benefits will change in the next twelve months; however, an estimate of the range of the possible change cannot be made at this time.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">40</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our future effective tax rate may be materially impacted by the amount of benefits and charges from tax amounts associated with our foreign earnings that are taxed at rates different from the federal statutory rate, research credits, state income taxes, the tax impact of stock-based compensation, accounting for uncertain tax positions, business combinations, U.S. Manufacturer's deduction, closure of statute of limitations or settlement of tax audits, changes in valuation allowances and changes in tax laws including possible U.S. tax law changes that, if enacted, could significantly impact how U.S. multinational companies are taxed on foreign subsidiary earnings. A significant amount of our earnings is generated by our Europe and APAC subsidiaries. Our future effective tax rates may be adversely affected to the extent earnings are lower than anticipated in countries where we have lower statutory tax rates or we repatriate certain foreign earnings on which U.S. taxes have not previously been provided. </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The Internal Revenue Service is examining the Company's U.S. consolidated federal income tax returns for fiscal years 2014 and 2015. While it is possible that the Company's tax positions may be challenged, the Company believes its positions are consistent with the tax law, and the balance sheet reflects appropriate liabilities for uncertain federal tax positions for the years being examined.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The Tax Act was enacted on December 22, 2017, and provides broad and significant changes to the U.S. tax code and how the U.S. imposes income tax on multinational corporations. The Tax Act requires complex computations to be performed that were not previously provided for in the U.S. tax law. These computations require significant judgments to be made regarding the interpretation of the provisions within the Tax Act, along with preparation and analysis of information not previously required. In conjunction with the Tax Act, the SEC issued SAB 118 that allows us to record provisional amounts until a final assessment can be made within a period not to exceed one year from the date of enactment, which would be during our quarter ending October 31, 2018.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We have not completed our determination of the accounting implications of the Tax Act on our results of operation. There have been no material changes to the Tax Act since January 31, 2018. As additional regulatory guidance is issued and we continue to collect and analyze necessary data, we may make adjustments to provisional amounts previously recorded. We do not anticipate these adjustments to materially impact our provision for income taxes in the period in which the adjustments are made since we are in a full valuation allowance in the U.S. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">41</span></div></div><hr style="page-break-after:always"/><div><a id="s4CBF06D546025B89AAD8F2069D0C0E03"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Other Financial Information</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In addition to our results determined under GAAP discussed above, we believe the following non-GAAP measures are useful to investors in evaluating our operating performance. For the </span><span style="font-family:inherit;font-size:10pt;">three months</span><span style="font-family:inherit;font-size:10pt;"> ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, our gross profit, gross margin, income (loss) from operations, operating margin, net income (loss), diluted net income (loss) per share and diluted shares used in per share calculation on a GAAP and non-GAAP basis were as follows (in millions except for gross margin, operating margin, and per share data):</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:75%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:10%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(Unaudited)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gross profit</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">493.1</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">407.5</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP gross profit</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">500.2</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">416.1</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gross margin</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">88</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">84</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP gross margin</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">89</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">86</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Loss from operations</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(55.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(119.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP income (loss) from operations</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">29.0</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(39.5</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Operating margin</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(10</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(25</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP operating margin</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(8</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net loss</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(82.4</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(129.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP net income (loss)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">14.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(34.8</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">GAAP diluted net loss per share (1)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.38</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.59</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP diluted net income (loss) per share (1)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.06</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.16</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">GAAP diluted shares used in per share calculation</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">218.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">219.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;padding-left:12px;text-indent:-12px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP diluted weighted average shares used in per share calculation</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">221.6</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">219.9</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">_______________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-size:9pt;">Net income (loss) per share was computed independently for each of the periods presented; therefore the sum of the net loss per share amount for the quarters may not equal the total for the year.</span><span style="font-family:inherit;font-size:9pt;"> </span></div></td></tr></table><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">For our internal budgeting and resource allocation process and as a means to evaluate period-to-period comparisons, we use non-GAAP measures to supplement our condensed consolidated financial statements presented on a GAAP basis. These non-GAAP measures do not include certain items that may have a material impact upon our reported financial results. We also use non-GAAP measures in making operating decisions because we believe those measures provide meaningful supplemental information regarding our earning potential and performance for management by excluding certain expenses and charges that may not be indicative of our core business operating results. For the reasons set forth below, we believe these non-GAAP financial measures are useful to investors both because (1) they allow for greater transparency with respect to key metrics used by management in its financial and operational decision-making and (2) they are used by our institutional investors and the analyst community to help them analyze the health of our business. This allows investors and others to better understand and evaluate our operating results and future prospects in the same manner as management, compare financial results across accounting periods and to those of peer companies and to better understand the long-term performance of our core business. We also use some of these measures for purposes of determining company-wide incentive compensation. </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">There are limitations in using non-GAAP financial measures because non-GAAP financial measures are not prepared in accordance with GAAP and may be different from non-GAAP financial measures used by other companies. The non-GAAP financial measures included above are limited in value because they exclude certain items that may have a material impact upon our reported financial results. In addition, they are subject to inherent limitations as they reflect the exercise of judgments by management about which charges are excluded from the non-GAAP financial measures. We compensate for these limitations by analyzing current and future results on a GAAP basis as well as a non-GAAP basis and also by providing GAAP measures in our public disclosures. The presentation of non-GAAP financial information is meant to be considered in addition to, not as a substitute for or in isolation from, the directly comparable financial measures prepared in accordance with GAAP. We urge investors to review the reconciliation of our non-GAAP financial measures to the comparable GAAP financial measures included below, and not to rely on any single financial measure to evaluate our business. </span></div><div style="line-height:120%;text-align:justify;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">42</span></div></div><hr style="page-break-after:always"/><div><a id="sA5BA6DB53A5656BF9F1C905CD6E77625"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Reconciliation of GAAP Financial Measures to Non-GAAP Financial Measures</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(In millions except for gross margin, operating margin, and per share data):</span><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:77%;"></td><td style="width:1%;"></td><td style="width:9%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:9%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(Unaudited)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gross profit</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">493.1</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">407.5</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stock-based compensation expense</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.9</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of developed technologies</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.6</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">4.7</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP gross profit</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">500.2</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">416.1</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gross margin</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">88</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">84</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stock-based compensation expense</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of developed technologies</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP gross margin (2)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">89</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">86</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Loss from operations</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(55.3</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(119.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stock-based compensation expense</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">54.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">59.0</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of developed technologies</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">4.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of purchased intangibles</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.8</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5.7</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">CEO transition costs (1)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">11.0</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Restructuring and other facility exit costs, net</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">22.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.3</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP income (loss) from operations</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">29.0</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(39.5</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Operating margin</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(10</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(25</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stock-based compensation expense</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">10</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">12</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of developed technologies</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of purchased intangibles</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">1</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">CEO transition costs (1)</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">2</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Restructuring and other facility exit costs, net</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">4</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP operating margin (2)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> %</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(8</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)%</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net loss</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(82.4</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(129.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stock-based compensation expense</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">54.4</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">59.0</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of developed technologies</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">4.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of purchased intangibles</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.8</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">5.7</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">CEO transition costs (1)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">11.0</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Restructuring and other facility exit costs, net</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">22.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.3</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gain on strategic investments and dispositions </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(2.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(5.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Discrete tax items</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(7.6</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Income tax effect of non-GAAP adjustments</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">15.2</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">28.0</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP net income (loss)</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">14.4</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(34.8</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">43</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;margin-left:auto;margin-right:auto;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:79%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(Unaudited)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">GAAP diluted net loss per share (3)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.38</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.59</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Stock-based compensation expense</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.25</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.27</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of developed technologies</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.02</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.02</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Amortization of purchased intangibles</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.02</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.03</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">CEO transition costs (1)</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.04</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Restructuring and other facility exit costs, net</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.09</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Gain on strategic investments and dispositions </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.01</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.03</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Discrete tax items</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.03</span></div></td><td style="vertical-align:bottom;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:28px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Income tax effect of non-GAAP adjustments</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.07</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.13</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Non-GAAP diluted net income (loss) per share (3)</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.06</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;border-top:1px solid #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(0.16</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">____________________ </span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-size:9pt;">CEO transition costs include stock-based compensation of $7.8 million related to the acceleration of eligible stock awards in the three months ended April 30, 2017.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Totals may not sum due to rounding.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(3)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-size:9pt;">Net income (loss) per share was computed independently for each of the periods presented; therefore the sum of the net loss per share amount for the quarters may not equal the total for the year.</span><span style="font-family:inherit;font-size:9pt;"> </span></div></td></tr></table><div style="line-height:120%;text-align:justify;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:justify;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our non-GAAP financial measures may exclude the following:</span></div><div style="line-height:120%;text-align:justify;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Stock-based compensation expenses.</span><span style="font-family:inherit;font-size:10pt;"> We exclude stock-based compensation expenses from non-GAAP measures primarily because they are non-cash expenses and management finds it useful to exclude certain non-cash charges to assess the appropriate level of various operating expenses to assist in budgeting, planning and forecasting future periods. Moreover, because of varying available valuation methodologies, subjective assumptions and the variety of award types that companies can use under FASB ASC Topic 718, we believe excluding stock-based compensation expenses allows investors to make meaningful comparisons between our recurring core business operating results and those of other companies.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Amortization of developed technologies and purchased intangibles.</span><span style="font-family:inherit;font-size:10pt;"> We incur amortization of acquisition-related developed technology and purchased intangibles in connection with acquisitions of certain businesses and technologies. Amortization of developed technologies and purchased intangibles is inconsistent in amount and frequency and is significantly affected by the timing and size of our acquisitions. Management finds it useful to exclude these variable charges from our cost of revenues to assist in budgeting, planning and forecasting future periods. Investors should note that the use of intangible assets contributed to our revenues earned during the periods presented and will contribute to our future period revenues as well. Amortization of developed technologies and purchased intangible assets will recur in future periods.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">CEO transition costs.</span><span style="font-family:inherit;font-size:10pt;"> We exclude amounts paid to the Company's former CEOs upon departure under the terms of their transition agreements, including severance payments, acceleration of restricted stock units, and continued vesting of performance stock units, and legal fees incurred with the transition. Also excluded from our non-GAAP measures are recruiting costs related to the search for a new CEO. These costs represent non-recurring expenses and are not indicative of our ongoing operating expenses. We further believe that excluding the CEO transition costs from our non-GAAP results is useful to investors in that it allows for period-over-period comparability.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Goodwill impairment.</span><span style="font-family:inherit;font-size:10pt;"> This is a non-cash charge to write-down goodwill to fair value when there was an indication that the asset was impaired. As explained above, management finds it useful to exclude certain non-cash charges to assess the appropriate level of various operating expenses to assist in budgeting, planning and forecasting future periods.</span></div><div style="line-height:120%;text-align:left;padding-left:29px;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Restructuring and other facility exit costs, net.</span><span style="font-family:inherit;font-size:10pt;"> These expenses are associated with realigning our business strategies based on current economic conditions. In connection with these restructuring actions or other exit actions, we recognize costs related to termination benefits for former employees whose positions were eliminated, the closure of facilities and cancellation of certain contracts. We exclude these charges because these expenses are not reflective of ongoing business and operating results. We believe it is useful for investors to understand the effects of these items on our total operating expenses. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Loss (gain) on strategic investments and dispositions.</span><span style="font-family:inherit;font-size:10pt;"> We exclude gains and losses related to our strategic investments and dispositions from our non-GAAP measures primarily because management finds it useful to exclude these variable gains </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">44</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">and losses on these investments and dispositions in assessing our financial results. Included in these amounts are non-cash unrealized gains and losses on the derivative components, realized gains and losses on the sales or losses on the impairment of these investments and dispositions. We believe excluding these items is useful to investors because these excluded items do not correlate to the underlying performance of our business and these losses or gains were incurred in connection with strategic investments and dispositions which do not occur regularly. </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Discrete tax items.</span><span style="font-family:inherit;font-size:10pt;"> We exclude the GAAP tax provision, including discrete items, from the non-GAAP measure of net (loss) income, and include a non-GAAP tax provision based upon the projected annual non-GAAP effective tax rate. Discrete tax items include income tax expenses or benefits that do not relate to ordinary income from continuing operations in the current fiscal year, unusual or infrequently occurring items, or the tax impact of certain stock-based compensation. Examples of discrete tax items include, but are not limited to, certain changes in judgment and changes in estimates of tax matters related to prior fiscal years, certain costs related to business combinations, certain changes in the realizability of deferred tax assets or changes in tax law. Management believes this approach assists investors in understanding the tax provision and the effective tax rate related to ongoing operations. We believe the exclusion of these discrete tax items provides investors with useful supplemental information about our operational performance.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Establishment of a valuation allowance on certain net deferred tax assets.</span><span style="font-family:inherit;font-size:10pt;"> This is a non-cash charge to record a valuation allowance on certain deferred tax assets. As explained above, management finds it useful to exclude certain non-cash charges to assess the appropriate level of various cash expenses to assist in budgeting, planning and forecasting future periods.</span></div><div style="line-height:120%;text-align:left;padding-left:29px;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Income tax effects on the difference between GAAP and non-GAAP costs and expenses.</span><span style="font-family:inherit;font-size:10pt;"> The income tax effects that are excluded from the non-GAAP measures relate to the tax impact on the difference between GAAP and non-GAAP expenses, primarily due to stock-based compensation, amortization of purchased intangibles and restructuring charges and other facilities exit costs (benefits) for GAAP and non-GAAP measures.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sB9B653B5D21155EAB917010D46714D57"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Liquidity and Capital Resources</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our primary source of cash is from the sale of our software and related services. Our primary use of cash is payment of our operating costs, which consist primarily of employee-related expenses, such as compensation and benefits, as well as general operating expenses for marketing, facilities and overhead costs. In addition to operating expenses, we also use cash to fund our stock repurchase program and invest in our growth initiatives, which include acquisitions of products, technology and businesses. See further discussion of these items below.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">At </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, our principal sources of liquidity were cash, cash equivalents and marketable securities totaling </span><span style="font-family:inherit;font-size:10pt;">$1.5 billion</span><span style="font-family:inherit;font-size:10pt;"> and net accounts receivable of </span><span style="font-family:inherit;font-size:10pt;">$206.7 million</span><span style="font-family:inherit;font-size:10pt;">. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, we have $</span><span style="font-family:inherit;font-size:10pt;">1.6 billion</span><span style="font-family:inherit;font-size:10pt;"> aggregate principal amount of Notes outstanding (see Note </span><span style="font-family:inherit;font-size:10pt;">12</span><span style="font-family:inherit;font-size:10pt;">, "</span><span style="font-family:inherit;font-size:10pt;">Borrowing Arrangements</span><span style="font-family:inherit;font-size:10pt;">," in the Notes to Condensed Consolidated Financial Statements for further discussion). In addition, we have a line of credit facility that permits unsecured short-term borrowings of up to $</span><span style="font-family:inherit;font-size:10pt;">400.0 million</span><span style="font-family:inherit;font-size:10pt;"> with a </span><span style="font-family:inherit;font-size:10pt;">May 2020</span><span style="font-family:inherit;font-size:10pt;"> maturity date, with an option to request an increase in the amount of the credit facility by up to an additional </span><span style="font-family:inherit;font-size:10pt;">$100.0 million</span><span style="font-family:inherit;font-size:10pt;">. This credit agreement contains customary covenants that could restrict the imposition of liens on our assets, and restrict the Company’s ability to incur additional indebtedness or make dispositions of assets if we fail to maintain the financial covenants. The financial covenants consist of a maximum debt to total cash ratio, a fixed charge coverage ratio through April 30, 2018, and after April 30, 2018, a minimum interest coverage ratio. As of </span><span style="font-family:inherit;font-size:10pt;">June 8, 2018</span><span style="font-family:inherit;font-size:10pt;">, we have </span><span style="font-family:inherit;font-size:10pt;">no</span><span style="font-family:inherit;font-size:10pt;"> amounts outstanding under the credit facility. If we are unable to remain in compliance with the covenants, we will not be able to draw on our credit facility. Borrowings under the credit facility and the net proceeds from the offering of the Notes are available for general corporate purposes. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our cash and cash equivalents are held by diversified financial institutions globally. Our primary commercial banking relationship is with Citigroup and its global affiliates. In addition, Citibank N.A., an affiliate of Citigroup, is one of the lead lenders and agent in the syndicate of our </span><span style="font-family:inherit;font-size:10pt;">$400.0 million</span><span style="font-family:inherit;font-size:10pt;"> line of credit. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Long-term cash requirements for items other than normal operating expenses are anticipated for the following: repayment of debt; common stock repurchases; the acquisition of businesses, software products, or technologies complementary to our business; and capital expenditures, including the purchase and implementation of internal-use software applications.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In connection with the company’s closure of certain offices and reduction of workforces worldwide, the company is in discussions with tax authorities regarding the closure of offices and the redeployment/transfer of assets. At this time, the Company cannot estimate the tax implications of these discussions. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">45</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our strategy includes improving our product functionality and expanding our product offerings through internal development as well as through the acquisition of products, technology, and businesses. Acquisitions often increase the speed at which we can deliver product functionality to our customers; however, they entail cost and integration challenges and, in certain instances, negatively impact our operating margins. We continually review these trade-offs in making decisions regarding acquisitions. We currently anticipate that we will continue to acquire products, technology, and businesses as compelling opportunities become available. Our decision to acquire businesses or technology is dependent on our business needs, the availability of suitable sellers and technology, and our own financial condition.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, other than what was previously discussed in this section regarding our latest debt issuance and repayment, there have been no material changes in our contractual obligations or commercial commitments compared to those we disclosed in management’s discussion and analysis of financial condition and results of operations included in our Annual Report on Form 10-K for the fiscal year ended </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our cash, cash equivalents, and marketable securities balances are concentrated in a few locations around the world, with substantial amounts held outside of the United States. As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, approximately </span><span style="font-family:inherit;font-size:10pt;">79%</span><span style="font-family:inherit;font-size:10pt;"> of our total cash or cash equivalents and marketable securities are located in foreign jurisdictions and that percentage will fluctuate subject to business needs. There are several factors that can impact our ability to utilize foreign cash balances, such as foreign exchange restrictions, foreign regulatory restrictions or adverse tax costs. The Tax Act includes a mandatory one-time tax on accumulated earnings of foreign subsidiaries and generally eliminates U.S. taxes on foreign subsidiary distributions in future periods. As a result, earnings in foreign jurisdictions are generally available for distribution to the U.S. with little to no incremental U.S. taxes. We expect to meet our liquidity needs through current cash balances, ongoing cash flows, external borrowings, or a combination. We regularly review our capital structure and consider a variety of potential financing alternatives and planning strategies to ensure we have the proper liquidity available in the locations in which it is needed.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Cash from operations could also be affected by various risks and uncertainties, including, but not limited to the risks detailed in Part II, </span><span style="font-family:inherit;font-size:10pt;">Item 1A</span><span style="font-family:inherit;font-size:10pt;"> titled “</span><span style="font-family:inherit;font-size:10pt;">Risk Factors</span><span style="font-family:inherit;font-size:10pt;">.” However, based on our current business plan and revenue prospects, we believe that our existing balances, our anticipated cash flows from operations and our available credit facility will be sufficient to meet our working capital and operating resource expenditure requirements for at least the next 12 months. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our revenue, earnings, cash flows, receivables, and payables are subject to fluctuations due to changes in foreign currency exchange rates, for which we have put in place foreign currency contracts as part of our risk management strategy. See Part II, Item 7A, “Quantitative and Qualitative Disclosures about Market Risk” for further discussion.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="8"></td></tr><tr><td style="width:79%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:8%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="7" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Three Months Ended April 30,</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(in millions)</span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2018</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">2017</span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net cash (used in) provided by operating activities</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(16.9</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;border-top:1px solid #000000;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">45.2</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net cash provided by investing activities</span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">47.6</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">258.5</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Net cash used in financing activities</span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(11.7</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">(178.8</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-right:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">)</span></div></td></tr></table></div></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Net cash used in operating activities of </span><span style="font-family:inherit;font-size:10pt;">$16.9 million</span><span style="font-family:inherit;font-size:10pt;"> for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> includes our net loss of </span><span style="font-family:inherit;font-size:10pt;">$82.4 million</span><span style="font-family:inherit;font-size:10pt;">.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The primary working capital source of cash was a decrease in accounts receivable from </span><span style="font-family:inherit;font-size:10pt;">$438.2 million</span><span style="font-family:inherit;font-size:10pt;"> as of </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;"> to </span><span style="font-family:inherit;font-size:10pt;">$206.7 million</span><span style="font-family:inherit;font-size:10pt;"> as of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">. The primary working capital uses of cash were decreases in accrued compensation, other accrued liabilities, and deferred revenue.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Net cash provided by investing was </span><span style="font-family:inherit;font-size:10pt;">$47.6 million</span><span style="font-family:inherit;font-size:10pt;"> for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, and was primarily due to the sale and maturities of marketable securities. These cash inflows were partially offset by capital expenditures and purchases of marketable securities.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">At </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, our short-term investment portfolio had an estimated fair value of </span><span style="font-family:inherit;font-size:10pt;">$199.9 million</span><span style="font-family:inherit;font-size:10pt;"> and a cost basis of </span><span style="font-family:inherit;font-size:10pt;">$193.7 million</span><span style="font-family:inherit;font-size:10pt;">. The portfolio fair value consists of </span><span style="font-family:inherit;font-size:10pt;">$83.0 million</span><span style="font-family:inherit;font-size:10pt;"> invested in corporate debt securities, </span><span style="font-family:inherit;font-size:10pt;">$36.0 million</span><span style="font-family:inherit;font-size:10pt;"> invested in U.S. government securities, $</span><span style="font-family:inherit;font-size:10pt;">9.2 million</span><span style="font-family:inherit;font-size:10pt;"> invested in asset backed securities, </span><span style="font-family:inherit;font-size:10pt;">$5.0 million</span><span style="font-family:inherit;font-size:10pt;"> invested in sovereign debt, </span><span style="font-family:inherit;font-size:10pt;">$4.2 million</span><span style="font-family:inherit;font-size:10pt;"> invested in municipal bonds, and </span><span style="font-family:inherit;font-size:10pt;">$3.1 million</span><span style="font-family:inherit;font-size:10pt;"> invested in certificates of deposit.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">46</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">At </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, </span><span style="font-family:inherit;font-size:10pt;">$59.4 million</span><span style="font-family:inherit;font-size:10pt;"> of short-term trading securities were invested in a defined set of mutual funds as directed by the participants in our Deferred Compensation Plan (see Note </span><span style="font-family:inherit;font-size:10pt;">10</span><span style="font-family:inherit;font-size:10pt;">, “</span><span style="font-family:inherit;font-size:10pt;">Deferred Compensation</span><span style="font-family:inherit;font-size:10pt;">,” in the Notes to Condensed Consolidated Financial Statements for further discussion).</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Net cash used in financing activities was </span><span style="font-family:inherit;font-size:10pt;">$11.7 million</span><span style="font-family:inherit;font-size:10pt;"> for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, and was primarily due to the taxes paid for net settlement of equity awards and repurchases of common stock. These cash outflows were offset in part by cash proceeds from the issuance of common stock. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sD8CA2CF1A1B55598871E2B44606B28CE"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Issuer Purchases of Equity Securities</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Autodesk's stock repurchase program provides Autodesk with the ability to offset the dilution from the issuance of stock under our employee stock plans and reduce shares outstanding over time, and has the effect of returning excess cash generated from our business to stockholders. Under the share repurchase program, Autodesk may repurchase shares from time to time in open market transactions, privately-negotiated transactions, accelerated share repurchase programs, tender offers, or by other means. The share repurchase program does not have an expiration date and the pace and timing of repurchases will depend on factors such as cash generation from operations, available surplus, the volume of employee stock plan activity, remaining shares available in the authorized pool, cash requirements for acquisitions, economic and market conditions, stock price and legal and regulatory requirements.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The following table provides information about the repurchase of common stock in open-market transactions during the quarter ended </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">:</span></div><div style="line-height:120%;text-indent:30px;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="13"></td></tr><tr><td style="width:33%;"></td><td style="width:12%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:11%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:18%;"></td><td style="width:1%;"></td><td style="width:1%;"></td><td style="width:18%;"></td><td style="width:1%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-style:italic;">(Shares in millions)</span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Total Number of</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Shares</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Purchased</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="3" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Average Price</span></div><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Paid per Share</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Total Number of Shares Purchased as Part of Publicly Announced Plans or Programs (1)</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;border-bottom:1px solid #000000;padding-top:2px;padding-bottom:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Maximum Number of Shares that May Yet Be Purchased Under the Plans or Programs (2)</span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">February 1 - February 28</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.1</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;background-color:#cceeff;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">110.32</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.1</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">19.6</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">March 1 - March 31</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">116.70</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">—</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">19.6</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">April 1 - April 30</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.1</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td colspan="2" style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">123.65</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.1</span></div></td><td style="vertical-align:bottom;border-bottom:1px solid #000000;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;background-color:#cceeff;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">19.5</span></div></td><td style="vertical-align:bottom;background-color:#cceeff;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Total</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.2</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">$</span></div></td><td style="vertical-align:bottom;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">113.31</span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">0.2</span></div></td><td style="vertical-align:bottom;border-bottom:3px double #000000;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;"><div style="text-align:right;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"><br/></span></div></td><td style="vertical-align:bottom;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> ________________</span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(1)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Represents shares purchased in open-market transactions under the stock repurchase plan approved by the Board of Directors.</span></div></td></tr></table><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:30px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:9pt;padding-left:0px;"><span style="font-family:inherit;font-size:9pt;">(2)</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">These amounts correspond to the plan approved by the Board of Directors in September 2016 that authorized the repurchase of </span><span style="font-family:inherit;font-size:9pt;">30.0 million</span><span style="font-family:inherit;font-size:9pt;"> shares. The plan does not have a fixed expiration date. See Note </span><span style="font-family:inherit;font-size:9pt;">15</span><span style="font-family:inherit;font-size:9pt;">, “</span><span style="font-family:inherit;font-size:9pt;">Common Stock Repurchase Program</span><span style="font-family:inherit;font-size:9pt;">,” in the Notes to Condensed Consolidated Financial Statements for further discussion.</span></div></td></tr></table><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">There were no sales of unregistered securities during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sDF048188D3245715803161067B7710FF"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Off-Balance Sheet Arrangements</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, we did not have any significant off-balance sheet arrangements, as defined in Item 303(a)(4)(ii) of Regulation S-K.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sBD736128E29B5400A3A2417B773D6107"></a></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Glossary of Terms</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Annualized Recurring Revenue (ARR)— </span><span style="font-family:inherit;font-size:10pt;">Represents the annualized value of our average monthly recurring revenue for the preceding three months. "Maintenance plan ARR” captures ARR relating to traditional maintenance attached to perpetual licenses. "Subscription plan ARR" captures ARR relating to subscription offerings. Refer to the definition of recurring revenue below for more details on what is included within ARR. Recurring revenue acquired with the acquisition of a business is captured when total subscriptions are captured in our systems and may cause variability in the comparison of this calculation.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">ARR is currently one of our key performance metrics to assess the health and trajectory of our business. ARR should be viewed independently of revenue and deferred revenue as ARR is a performance metric and is not intended to be combined with any of these items.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Annualized Revenue Per Subscription (ARPS)—</span><span style="font-family:inherit;font-size:10pt;">Is calculated by dividing our annualized recurring revenue by the total number of subscriptions. </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Billings</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Total revenue plus change in deferred revenue from the beginning to the end of the period. </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">47</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Cloud Service Offerings</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Represents individual term-based offerings deployed through web browser technologies or in a hybrid software and cloud configuration. Cloud service offerings that are bundled with other product offerings are not captured as a separate cloud service offering.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Constant Currency (CC) Growth Rates</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">We attempt to represent the changes in the underlying business operations by eliminating fluctuations caused by changes in foreign currency exchange rates as well as eliminating hedge gains or losses recorded within the current and comparative periods. We calculate constant currency growth rates by (i) applying the applicable prior period exchange rates to current period results and (ii) excluding any gains or losses from foreign currency hedge contracts that are reported in the current and comparative periods.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Enterprise Business Agreements (EBAs)</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Represents programs providing enterprise customers with token-based access or a fixed maximum number of seats to a broad pool of Autodesk products over a defined contract term.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Industry Collections</span><span style="font-family:inherit;font-size:10pt;">—Autodesk industry collections are a combination of products and services that target a specific user objective and support a set of workflows for that objective. Our Industry Collections consist of: Autodesk Architecture, Engineering and Construction Collection, Autodesk Product Design Collection, and Autodesk Media and Entertainment Collection. We introduced industry collections effective August 1, 2016 to replace our suites.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Other Revenue</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Consists of revenue from consulting, training and other services, and is recognized over time as the services are performed. Other revenue also includes software license revenue from the sale of our discontinued perpetual licenses. </span><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Subscription Plan</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Comprises our term-based product subscriptions, cloud service offerings, and enterprise business agreements (EBAs). Subscriptions represent a combined hybrid offering of desktop software and cloud functionality which provides a device-independent, collaborative design workflow for designers and their stakeholders. With subscription, customers can use our software anytime, anywhere, and get access to the latest updates to previous versions.</span><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Maintenance Plan</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Our maintenance plans provide our customers with a cost effective and predictable budgetary option to obtain the productivity benefits of our new releases and enhancements when and if released during the term of their contracts. Under our maintenance plans, customers are eligible to receive unspecified upgrades when and if available, and technical support. We recognize maintenance revenue over the term of the agreements, generally between one and three years. </span><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Product Subscription</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Provide customers the most flexible, cost-effective way to access and manage 3D design, engineering, and entertainment software tools. Our product subscriptions currently represent a hybrid of desktop and SaaS functionality, which provides a device-independent, collaborative design workflow for designers and their stakeholders.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Recurring revenue</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Consists of the revenue for the period from our traditional maintenance plans and revenue from our subscription plan offerings. It excludes subscription revenue related to consumer product offerings, select Creative Finishing product offerings, education offerings, and third party products. Recurring revenue acquired with the acquisition of a business is captured when total subscriptions are captured in our systems and may cause variability in the comparison of this calculation. </span><span style="font-family:inherit;font-size:10pt;font-weight:bold;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Subscription revenue</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Includes subscription fees from product subscriptions, cloud service offerings, and enterprise business agreements (EBAs).</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;"> </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Total Subscriptions</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Consists of subscriptions from our maintenance plans and subscription plan offerings that are active and paid as of the fiscal year end date. For certain cloud service offerings and enterprise business agreements (EBAs), subscriptions represent the monthly average activity reported within the last three months of the quarter end date. Total subscriptions do not include education offerings, consumer product offerings, select Creative Finishing product offerings, Autodesk Buzzsaw, Autodesk Constructware, and third party products. Subscriptions acquired with the acquisition of a business are captured once the data conforms to our subscription count methodology and when added, may cause variability in the comparison of this calculation.</span><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Unbilled deferred revenue</span><span style="font-family:inherit;font-size:10pt;font-weight:bold;">—</span><span style="font-family:inherit;font-size:10pt;">Unbilled deferred revenue represents contractually stated or committed orders under early renewal and multi-year billing plans for subscription, services, license and maintenance for which the associated deferred revenue has not been recognized. Under ASC 606, unbilled deferred revenue is not included as a receivable or deferred revenue on our Consolidated Balance Sheet. </span><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">48</span></div></div><hr style="page-break-after:always"/><div><a id="s837CA737FE91585FBFB3D015CCE76395"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 3.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">QUANTITATIVE AND QUALITATIVE DISCLOSURES ABOUT MARKET RISK</span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Foreign currency exchange risk</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our revenue, earnings, cash flows, receivables and payables are subject to fluctuations due to changes in foreign currency exchange rates. Our risk management strategy utilizes foreign currency contracts to manage our exposure to foreign currency volatility that exists as part of our ongoing business operations. We utilize cash flow hedge contracts to reduce the exchange rate impact on a portion of the net revenue or operating expense of certain anticipated transactions. In addition, we use balance sheet hedge contracts to reduce the exchange rate risk associated primarily with foreign currency denominated receivables and payables. As of </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">, we had open cash flow and balance sheet hedge contracts with future settlements within one to twelve months. Contracts were primarily denominated in euros, Japanese yen, Swiss francs, British pounds, Canadian dollars and Australian dollars. We do not enter into any foreign exchange derivative instruments for trading or speculative purposes. The net notional amount of our option and forward contracts was </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">$795.5 million</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">$949.5 million</span><span style="font-family:inherit;font-size:10pt;"> at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;">, respectively.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We use foreign currency contracts to reduce the exchange rate impact on the net revenue and operating expenses of certain anticipated transactions. A sensitivity analysis performed on our hedging portfolio as of </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> indicated that a hypothetical 10% appreciation of the U.S. dollar from its value at </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;"> would increase the fair value of our foreign currency contracts by </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">$67.0 million</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">$57.9 million</span><span style="font-family:inherit;font-size:10pt;">, respectively. A hypothetical 10% depreciation of the dollar from its value at </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">January 31, 2018</span><span style="font-family:inherit;font-size:10pt;"> would decrease the fair value of our foreign currency contracts by </span><span style="font-family:inherit;font-size:10pt;">$50.4 million</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">$83.2 million</span><span style="font-family:inherit;font-size:10pt;">, respectively.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Interest Rate Risk</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Interest rate movements affect both the interest income we earn on our short term investments and the market value of certain longer term securities. At </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, we had </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">$1,035.2 million</span><span style="font-family:inherit;font-size:10pt;"> of cash equivalents and marketable securities, including $</span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">199.9 million</span><span style="font-family:inherit;font-size:10pt;"> classified as short-term marketable securities and $</span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">171.5 million</span><span style="font-family:inherit;font-size:10pt;"> classified as long-term marketable securities. If interest rates were to move up or down by 50 or 100 basis points over a twelve month period, the market value change of our marketable securities would have an unrealized gain or loss of </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">$1.2 million</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">$2.3 million</span><span style="font-family:inherit;font-size:10pt;">, respectively. </span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Other Market Risk</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">From time to time we make direct investments in privately held companies. Privately held company investments generally are considered inherently risky. The technologies and products these companies have under development are typically in the early stages and may never materialize, which could result in a loss of all or a substantial part of our initial investment in these companies. The evaluation of privately held companies is based on information that we request from these companies, which is not subject to the same disclosure regulations as U.S. publicly traded companies, and as such, the basis for these evaluations is subject to the timing and accuracy of the data received from these companies. See Note </span><span style="font-family:inherit;font-size:10pt;">5</span><span style="font-family:inherit;font-size:10pt;">, "</span><span style="font-family:inherit;font-size:10pt;">Financial Instruments</span><span style="font-family:inherit;font-size:10pt;">," for further discussion regarding our privately held investments. </span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sBF7AF9F86CAD554799AAA401B7D0604A"></a></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 4.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">CONTROLS AND PROCEDURES</span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Evaluation of Disclosure Controls and Procedures</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We maintain “disclosure controls and procedures,” as defined in Rule 13a-15(e) and 15d-15(e) under the Securities Exchange Act of 1934, as amended (the “Exchange Act”). Our disclosure controls and procedures are designed to ensure that information required to be disclosed in our Exchange Act reports is (i) recorded, processed, summarized and reported within the time periods specified in the rules of the Securities and Exchange Commission, and (ii) accumulated and communicated to Autodesk management, including our CEO and CFO, to allow timely decisions regarding required disclosure. We conducted an evaluation, under the supervision and with the participation of our CEO and CFO, of the effectiveness of the design and operation of our disclosure controls and procedures as of the end of the period covered by this Quarterly Report on Form 10-Q. Based upon this evaluation, our CEO and CFO have concluded that our disclosure controls and procedures were effective to meet the objective for which they were designed and operated at the reasonable assurance level. </span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">49</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our disclosure controls and procedures include components of our internal control over financial reporting. Our management, including our CEO and CFO, does not expect that our disclosure controls and procedures or our internal control over financial reporting will necessarily prevent all errors and all fraud. A control system, no matter how well conceived and operated, can provide only reasonable, not absolute, assurance that the objectives of the control system are met. Further, the design of a control system must reflect the fact that there are resource constraints, and the benefits of controls must be considered relative to their costs. Because of the inherent limitations in all control systems, no evaluation of controls can provide absolute assurance that all control issues and instances of fraud, if any, within Autodesk have been detected.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">Changes in Internal Control Over Financial Reporting</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">On February 1, 2018, we implemented new and modified existing internal controls based on the adoption of ASC 606 and ASC 340. This resulted in changes to our processes related to revenue recognition and underlying control activities, including information systems. There were no additional changes in our internal controls over financial reporting (as such term is defined in Rules 13a-15(f) and 15d-15(f) under the Exchange Act) during the quarter ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> that have materially affected, or are reasonably likely to materially affect, our internal control over financial reporting.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">50</span></div></div><hr style="page-break-after:always"/><div><a id="sB9813823433A5351B5A8261CA7A66150"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">PART II. OTHER INFORMATION</span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div><a id="s58546DD7D00F51C4AD14ADE6D4543607"></a></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 1.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">LEGAL PROCEEDINGS</span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We are involved in a variety of claims, suits, investigations and proceedings in the normal course of business activities including claims of alleged infringement of intellectual property rights, commercial, employment, piracy prosecution, business practices and other matters. In our opinion, resolution of pending matters is not expected to have a material adverse impact on our consolidated results of operations, cash flows or financial position. Given the unpredictable nature of legal proceedings, there is a reasonable possibility that an unfavorable resolution of one or more such proceedings could in the future materially affect our results of operations, cash flows or financial position in a particular period, however, based on the information known by us as of the date of this filing and the rules and regulations applicable to the preparation of our financial statements, any such amount is either immaterial or it is not possible to provide an estimated amount of any such potential loss.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="s8D7F47F3E16554068FD188D56D4C41C1"></a></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 1A.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">RISK FACTORS</span></div></td></tr></table><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We operate in a rapidly changing environment that involves significant risks, a number of which are beyond our control. In addition to the other information contained in this Form 10-Q, the following discussion highlights some of these risks and the possible impact of these factors on our business, financial condition, and future results of operations. If any of the following risks actually occur, our business, financial condition, or results of operations may be adversely impacted, causing the trading price of our common stock to decline. In addition, these risks and uncertainties may impact the “forward-looking” statements described elsewhere in this Form 10-Q and in the documents incorporated herein by reference. They could affect our actual results of operations, causing them to differ materially from those expressed in “forward-looking” statements. </span></div><div style="line-height:120%;text-align:justify;padding-left:36px;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Global economic and political conditions may further impact our industries, business and financial results.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our overall performance depends largely upon domestic and worldwide economic and political conditions. The United States and other international economies have experienced cyclical downturns from time to time in which economic activity was impacted by falling demand for a variety of goods and services, restricted credit, poor liquidity, decreased government spending, reduced corporate profitability, volatility in credit, equity and foreign exchange markets, bankruptcies and overall uncertainty with respect to the economy. These economic conditions can occur abruptly. If economic growth in countries where we do business slows or if such countries experience further economic recessions, customers may delay or reduce technology purchases. Our customers include government entities, including the U.S. federal government, and if spending cuts impede the ability of governments to purchase our products and services, our revenue could decline. In addition, a number of our customers rely, directly and indirectly, on government spending. </span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Geopolitical trends toward nationalism and protectionism and the weakening or dissolution of international trade pacts may increase the cost of, or otherwise interfere with, conducting business. These trends have increased levels of political and economic unpredictability globally, and may increase the volatility of global financial markets; the impact of such developments on the global economy remains uncertain. Political instability or adverse political developments in any of the countries in which we do business could harm our business, results of operations and financial condition. </span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">A financial sector credit crisis could impair credit availability and the financial stability of our customers, including our distribution partners and channels. A disruption in the financial markets may also have an effect on our derivative counter-parties and could also impair our banking partners, on which we rely for operating cash management. Any of these events could harm our business, results of operations and financial condition.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">If we fail to successfully manage our business model transition to cloud-based products and more flexible product licenses, our results of operations could be negatively impacted.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:28px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">To address the industry transition from personal computer to cloud, mobile, and social computing, we accelerated our move to the cloud and are offering more flexible product licenses. To support our transition, we discontinued selling new perpetual licenses of most individual software products effective February 1, 2016, and discontinued selling new perpetual licenses of suites effective August 1, 2016. On June 15, 2017, we commenced a program to incentivize maintenance plan customers to move to subscription plan offerings. Through this program we offer discounts to those maintenance plan customers that move to subscription plan offerings, while at the same time increasing maintenance plan pricing over time for customers that remain on maintenance.</span></div><div style="line-height:120%;text-align:left;text-indent:28px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:28px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As a result, we expect to derive an increasing portion of our revenues in the future from subscriptions. This subscription model prices and delivers our products in a way that differs from the historical perpetual pricing and delivery methods. These </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">51</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">changes reflect a significant shift from perpetual license sales and distribution of our software in favor of providing our customers the right to access certain of our software in a hosted environment or use downloaded software for a specified subscription period. During the first three years of the transition, revenue, billings, gross margin, operating margin, net income (loss), earnings (loss) per share, deferred revenue, and cash flow from operations have been impacted as more revenue is recognized ratably rather than upfront and as new offerings bring a wider variety of price points.</span></div><div style="line-height:120%;text-align:left;text-indent:28px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our ability to achieve our financial objectives is subject to risks and uncertainties. The new offerings require a considerable investment of technical, financial, legal, and sales resources, and a scalable organization. Market acceptance of such offerings is affected by a variety of factors, including but not limited to: security, reliability, performance, current license terms, customer preference, social/community engagement, customer concerns with entrusting a third party to store and manage their data, public concerns regarding privacy and the enactment of restrictive laws or regulations. Whether our business model transition will prove successful and will accomplish our business and financial objectives is subject to numerous risks and uncertainties, including but not limited to: customer demand, attach and renewal rates, channel acceptance, our ability to further develop and scale infrastructure, our ability to include functionality and usability in such offerings that address customer requirements, tax and accounting implications, pricing, and our costs. In addition, the metrics we use to gauge the status of our business model transition may evolve over the course of the transition as significant trends emerge. If we are unable to successfully establish these new offerings and navigate our business model transition in light of the foregoing risks and uncertainties, our results of operations could be negatively impacted.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Our strategy to develop and introduce new products and services exposes us to risks such as limited customer acceptance, costs related to product defects, and large expenditures, each of which may not result in additional net revenue or could result in decreased net revenue.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Rapid technological changes, as well as changes in customer requirements and preferences, characterize the software industry. Just as the transition from mainframes to personal computers transformed the industry 30 years ago, we believe our industry is undergoing a similar transition from the personal computer to cloud, mobile, and social computing. Customers are also reconsidering the manner in which they license software products, which requires us to constantly evaluate our business model and strategy. In response, we are focused on providing solutions to enable our customers to be more agile and collaborative on their projects. We devote significant resources to the development of new technologies. In addition, we frequently introduce new business models or methods that require a considerable investment of technical and financial resources such as our introduction of flexible license and service offerings. It is uncertain whether these strategies will prove successful or whether we will be able to develop the necessary infrastructure and business models more quickly than our competitors. We are making such investments through further development and enhancement of our existing products and services, as well as through acquisitions of new product lines. Such investments may not result in sufficient revenue generation to justify their costs and could result in decreased net revenue. If we are not able to meet customer requirements, either with respect to our software or hardware products or the manner in which we provide such products, or if we are not able to adapt our business model to meet our customers' requirements, our business, financial condition or results of operations may be adversely impacted.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In particular, a critical component of our growth strategy is to have customers of our AutoCAD and AutoCAD LT products expand their portfolios to include our other offerings and cloud-based functionality. We want customers using individual Autodesk products to expand their portfolio with our other offerings and cloud-based functionality, and we are taking steps to accelerate this migration. At times, sales of licenses of our AutoCAD and AutoCAD LT or individual Autodesk flagship products have decreased without a corresponding increase in industry collections or cloud-based functionality revenue or without purchases of customer seats to our industry collections. Should this continue, our results of operations will be adversely affected. Also, adoption of our cloud and mobile computing offerings and changes in the delivery of our software and services to our customers, such as product subscription offerings, will change the way in which we recognize revenue relating to our software and services, with a potential negative impact on our financial performance. The accounting impact of these offerings and other business decisions are expected to result in an increase in the percentage of our ratable revenue, as well as recurring revenue, making for a more predictable business over time, while potentially reducing our upfront perpetual revenue stream.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our executive management team must act quickly, continuously, and with vision, given the rapidly changing customer expectations and technology advancements inherent in the software industry, the extensive and complex efforts required to create useful and widely accepted products and the rapid evolution of cloud computing, mobile devices, new computing platforms, and other technologies, such as consumer products. Although we have articulated a strategy that we believe will fulfill these challenges, if we fail to execute properly on that strategy or adapt that strategy as market conditions evolve, we may fail to meet our customers' expectations, fail to compete with our competitors' products and technology, and lose the confidence of our channel partners and employees. This in turn could adversely affect our business and financial performance.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">52</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">A significant portion of our revenue is generated through maintenance revenue; if decreases in maintenance revenue are not offset by increases in subscription revenue, our future revenue and financial results will be negatively impacted.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our maintenance customers have no obligation to renew their maintenance contracts after the expiration of their maintenance period, which is typically one year. The discontinuance of our perpetual licenses for most individual software products on February 1, 2016 and for perpetual suites on August 1, 2016 resulted in the loss of future opportunities to sell maintenance. On June 15, 2017, we commenced a program to incentivize maintenance plan customers to move to subscription plan offerings. As a result, we expect customer renewal rates will decline or fluctuate over time as a result of a number of factors, including the overall global economy, the health of their businesses, the perceived value of the maintenance program and planned maintenance pricing increases. If our non-renewing maintenance customers do not transition to subscriptions, our future revenue and financial results will be negatively impacted.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We may not be able to predict subscription renewal rates and their impact on our future revenue and operating results.</span></div><div style="line-height:120%;text-align:justify;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our customers are not obligated to renew their subscriptions for our offerings, and they may elect not to renew. We cannot assure renewal rates, or the mix of subscriptions renewals. Customer renewal rates may decline or fluctuate due to a number of factors, including offering pricing, competitive offerings, customer satisfaction, and reductions in customer spending levels or customer activity due to economic downturns or financial markets uncertainty. If our customers do not renew their subscriptions or if they renew on less favorable terms, our revenues may decline.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Revenue from our offerings may be difficult to predict during our business model transition.</span></div><div style="line-height:120%;text-align:justify;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The discontinuance of our perpetual licenses for most individual software products on February 1, 2016 and for perpetual suites on August 1, 2016 has and will continue to result in the loss of future upfront licensing revenue. This also has frozen the growth of our maintenance revenue because there will be no further opportunities to attach maintenance licensing. On June 15, 2017, we commenced a program to incentivize maintenance plan customers to move to subscription plan offerings. As a result, we expect our maintenance revenue to decline over time, but it may decline more quickly than anticipated due to low maintenance renewals. At the same time, our subscription revenue may not grow as rapidly as anticipated. Our subscription pricing allows customers to use our offerings at a lower initial cost when compared to the sale of a perpetual license. Although our subscriptions are designed to increase the number of customers who purchase offerings and create a recurring revenue stream that is more predictable over time, it creates risks related to the timing of revenue recognition and expected reductions in cash flows in the near term.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Actions that we are taking to restructure our business in alignment with our strategic priorities may not be as effective as anticipated.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">During the fourth quarter of fiscal 2018, we commenced a world-wide restructuring plan to support the Company's strategic priorities of completing the subscription transition; digitizing the Company; and re-imagining manufacturing, construction, and production. Through the restructuring, we seek to reduce our investment in areas not aligned with our strategic priorities, including in areas related to research and development and go-to-market activities. At the same time, we plan to further invest in strategic priority areas related to as digital infrastructure, customer success, and construction.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As a result of these actions, we will incur additional costs in the short term that will have the effect of reducing our GAAP operating margins. We may encounter challenges in the execution of these efforts, and these challenges could impact our financial results. If we are unable to successfully complete our restructuring efforts, our business and operating results may be harmed. </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">53</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We are dependent on international revenue and operations, exposing us to significant regulatory, global economic, intellectual property, collections, currency exchange rate, taxation, political instability and other risks, which could adversely impact our financial results.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We are dependent on our international operations for a significant portion of our revenue. International net revenue represented </span><span style="font-family:inherit;font-size:10pt;">65%</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">63%</span><span style="font-family:inherit;font-size:10pt;"> of our net revenue for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, respectively. Our international revenue, including that from emerging economies, is subject to general economic and political conditions in foreign markets, including conditions in foreign markets resulting from economic and political conditions in the U.S. Our revenue is also impacted by the relative geographical and country mix of our revenue over time. At times, these factors adversely impact our international revenue, and consequently our business as a whole. Our dependency on international revenue makes us much more exposed to global economic and political trends, which can negatively impact our financial results, even if our results in the U.S. are strong for a particular period. Further, some portion of our earnings from our international operations may not be freely transferable to the U.S. due to remittance restrictions, adverse tax consequences or other factors. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We anticipate that our international operations will continue to account for a significant portion of our net revenue, and, as we expand our international development, sales and marketing expertise, will provide significant support to our overall efforts in countries outside of the U.S. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Risks inherent in our international operations include:</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">economic volatility;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">tariffs, quotas, and other trade barriers and restrictions;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">fluctuating currency exchange rates, including risks related to any hedging activities we undertake;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">unexpected changes in regulatory requirements and practices;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">delays resulting from difficulty in obtaining export licenses for certain technology;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">different purchase patterns as compared to the developed world;</span></div></td></tr></table><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">operating in locations with a higher incidence of corruption and fraudulent business practices, particularly in emerging economies;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">increasing enforcement by the U.S. under the Foreign Corrupt Practices Act, and adoption of stricter anti-corruption laws in certain countries, including the United Kingdom;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">difficulties in staffing and managing foreign sales and development operations;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">local competition;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">longer collection cycles for accounts receivable;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">U.S. and foreign tax law changes impacting how multinational companies are taxed;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">tax arrangements with foreign governments, including our ability to meet and renew the terms of those tax arrangements;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">laws regarding the management of and access to data and public networks;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">possible future limitations upon foreign owned businesses;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">increased financial accounting and reporting burdens and complexities;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">inadequate local infrastructure;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">greater difficulty in protecting intellectual property;</span></div></td></tr></table><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">54</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">software piracy; and</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">other factors beyond our control, including popular uprisings, terrorism, war, natural disasters, and diseases.</span></div></td></tr></table><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Some of our business partners also have international operations and are subject to the risks described above. </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The Brexit vote has exacerbated and may further exacerbate many of the risks and uncertainties described above. The proposed withdrawal of the United Kingdom from the European Union could, among other potential outcomes, adversely affect the tax, tax treaty, currency, operational, legal and regulatory regimes to which our businesses in the region are subject. The withdrawal could also, among other potential outcomes, disrupt the free movement of goods, services and people between the United Kingdom and the European Union and significantly disrupt trade between the United Kingdom and the European Union and other parties. Further, uncertainty around these and related issues could lead to adverse effects on the economy of the United Kingdom and the other economies in which we operate. </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In addition, the United States and other countries have from time to time proposed and enacted protectionist trade policies. While the impact of the current U.S. administration’s changes to foreign trade policy remains uncertain, an escalation of protectionist or retaliatory trade measures in either the United States or any other countries in which we do business, such as a change in tariff structures, export compliance or other trade policies, may increase the cost of, or otherwise interfere with, conducting our business.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Even if we are able to successfully manage the risks of international operations, our business may be adversely affected if our business partners are not able to successfully manage these risks.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We are subject to governmental export and import controls that could impair our ability to compete in international markets or subject us to liability if we violate the controls</span><span style="font-family:inherit;font-size:10pt;font-style:italic;font-weight:bold;">.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our offerings are subject to U.S. export controls and economic sanctions laws and regulations that prohibit the shipment of certain products and services without the required export authorizations or export to locations, governments, and persons targeted by U.S. sanctions. While we have processes in place to prevent our offerings from being exported in violation of these laws, including obtaining authorizations as appropriate and screening against U.S. Government and international lists of restricted and prohibited persons, we cannot guarantee that these processes will prevent all violations of export control and sanctions laws. </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We also note that if our channel partners fail to obtain appropriate import, export or re-export licenses or permits, we may also be adversely affected, through reputational harm as well as other negative consequences including government investigations and penalties. We presently incorporate export control and sanctions compliance requirements in our channel partner agreements. Complying with export control and sanctions regulations for a particular sale may be time-consuming and may result in the delay or loss of sales opportunities.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Violations of U.S. sanctions or export control laws can result in fines or penalties. While we have extensive compliance procedures in place, licensing of our product offerings may have been made in potential violation of the export control and economic sanctions laws. We filed a Voluntary Self Disclosure in December 2016 with the U.S. Treasury Department’s Office of Foreign Assets Control (“OFAC”) with respect to the sale of certain licenses in an aggregate amount of less than $700,000. We are currently waiting for OFAC to complete its review of this matter. We could be subject to monetary penalties or other sanctions by OFAC in connection with its review of this issue. </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Our software is highly complex and may contain undetected errors, defects or vulnerabilities, each of which could harm our business and financial performance.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The software products that we offer are complex, and despite extensive testing and quality control, may contain errors, defects or vulnerabilities. Some errors, defects and vulnerabilities in our software products may only be discovered after the product or service has been released. Any errors, defects or vulnerabilities could result in the need for corrective releases to our software products, damage to our reputation, loss of revenue, an increase in product returns or lack of market acceptance of our products, any of which would likely harm our business and financial performance.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Existing and increased competition and rapidly evolving technological changes may reduce our revenue and profits.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">55</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The software industry has limited barriers to entry, and the availability of computing devices with continually expanding performance at progressively lower prices contributes to the ease of market entry. The industry is presently undergoing a platform shift from the personal computer to cloud and mobile computing. This shift further lowers barriers to entry and poses a disruptive challenge to established software companies. The markets in which we compete are characterized by vigorous competition, both by entry of competitors with innovative technologies and by consolidation of companies with complementary products and technologies. In addition, some of our competitors in certain markets have greater financial, technical, sales and marketing, and other resources. Furthermore, a reduction in the number and availability of compatible third-party applications, or our inability to rapidly adapt to technological and customer preference changes, including those related to cloud computing, mobile devices, and new computing platforms, may adversely affect the sale of our products. Because of these and other factors, competitive conditions in the industry are likely to intensify in the future. Increased competition could result in price reductions, reduced net revenue and profit margins and loss of market share, any of which would likely harm our business.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We are exposed to fluctuations in currency exchange rates that could negatively impact our financial results and cash flows.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Because we conduct a substantial portion of our business outside the U.S., we face exposure to adverse movements in foreign currency exchange rates. These exposures may change over time as business practices evolve and economic conditions change. Our exposure to adverse movements in foreign currency exchange rates could have a material adverse impact on our financial results and cash flows.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We use derivative instruments to manage a portion of our cash flow exposure to fluctuations in foreign currency exchange rates. As part of our risk management strategy, we use foreign currency contracts to manage a portion of our exposures of underlying assets, liabilities, and other obligations, which exist as part of our ongoing business operations. These foreign currency instruments have maturities that extend for one to twelve months in the future, and provide us with some protection against currency exposures. However, our attempts to hedge against these risks may not be completely successful, resulting in an adverse impact on our financial results.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The fluctuations of currencies in which we conduct business can both increase and decrease our overall revenue and expenses for any given fiscal period. Although our foreign currency cash flow hedge program extends beyond the current quarter in order to reduce our exposure to foreign currency volatility, we do not attempt to completely mitigate this risk, and in any case, will incur transaction fees in adopting such hedging programs. Such volatility, even when it increases our revenues or decreases our expenses, impacts our ability to accurately predict our future results and earnings.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;padding-bottom:13px;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Security incidents may compromise the integrity of our or our customers’ products, services, data or intellectual property, harm our reputation, damage our competitiveness, create additional liability and adversely impact our financial results.</span></div><div style="line-height:120%;padding-bottom:13px;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As we digitize the Company and use cloud and web base technologies to leverage customer data to deliver the total customer experience, we are exposed to increased security risks and the potential for unauthorized access to, or improper use of our and our customers' information. Like other software products and systems, ours are vulnerable to security incidents. We devote resources to maintain the security and integrity of our systems, products, services and applications (online, mobile and desktop). We accomplish this by enhancing security features, conducting penetration tests, code hardening, releasing security vulnerability updates and accelerating our incident response time. Despite these efforts, we may not prevent security incidents.</span></div><div style="line-height:120%;padding-bottom:13px;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Hackers regularly have targeted our systems, products, services and applications, and we expect them to do so in the future. Security incidents could disrupt the proper functioning of our systems, products or services; cause errors in the output of our customers' work; allow unauthorized access to sensitive, data or intellectual property, including proprietary or confidential information of ours or our customers; or cause other destructive outcomes. </span></div><div style="line-height:120%;padding-bottom:13px;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The risk of a security incident, particularly through cyber attack or cyber intrusion, including by computer hackers, foreign governments and cyber terrorists, has increased as the number, intensity and sophistication of attempted attacks and intrusions from around the world have increased. These threats include but are not limited to identity theft, unauthorized access, DNS attacks, wireless network attacks, viruses and worms, advanced persistent threat (APT), application centric attacks, peer-to-peer attacks, phishing, malicious file uploads, backdoor trojans and distributed denial of service (DDoS) attacks. In addition, third parties may attempt to fraudulently induce our employees, vendors, partners or users to disclose information to gain access to our data or our users’ data and there is the risk of employee, contractor, or vendor error or malfeasance. Despite efforts to create security barriers to such threats, it is virtually impossible for us to entirely eliminate this risk. </span></div><div style="line-height:120%;padding-bottom:13px;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">If any of the foregoing security incidents were to occur, our reputation may suffer, our competitive position may be diminished, customers may stop buying our products and services, we could face lawsuits and potential liability, and our financial performance could be negatively impacted.</span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">56</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Increasing regulatory focus on privacy issues and expanding laws may impact our business or expose us to increased liability.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;padding-bottom:13px;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our strategy to digitize the Company involves increasing our use of cloud and web based technologies and applications to leverage customer data. To accomplish this strategy, we must collect customer data, which may include personal data. Federal, state and foreign government privacy and data security laws apply to the treatment of personal data. Governments, the plaintiffs’ bar, privacy advocates and customers have increased their focus on how companies collect, process, use, store, share and transmit personal data.</span></div><div style="line-height:120%;padding-bottom:13px;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The General Data Protection Regulation ("GDPR") is applicable in all EU member states as of May 25, 2018, and replaces the current EU Data Protection Directive. The GDPR introduces new data protection requirements in the EU and substantial fines for non-compliance. The GDPR increases our responsibility and potential liability in relation to personal data, and we have and will continue to put in place additional processes and programs to demonstrate compliance. Compliance with these laws is costly and could delay or impede the development of new offerings. Any failure to comply with GDPR or other data privacy laws could lead to government enforcement actions and significant penalties. Further, any perceived privacy right violation could result in reputational harm, third-party claims, lawsuits or investigations. Additionally, we store customer information and content and if our customers fail to comply with contractual obligations or applicable laws, it could result in litigation or reputational harm to us. </span></div><div style="line-height:120%;padding-bottom:13px;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">GDPR, other new laws and self-regulatory codes may affect our ability to reach current and prospective customers, to understand how our products and services are being used, to respond to customer requests allowed under the laws, and to implement our new business models effectively. These new laws and regulations would similarly affect our competitors as well as our customers. These requirements could impact demand for our products and services and result in more onerous contract obligations.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We rely on third-parties to provide us with a number of operational and technical services; third-party security incidents could expose us to liability, harm our reputation, damage our competitiveness and adversely impact our financial performance.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;padding-bottom:13px;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We rely on third-parties, such as Amazon Web Services, to provide us with operational and technical services. These third parties may have access to our systems, provide hosting services, or otherwise process data about us o our customers, employees, or partners. Any third party security incident could compromise the integrity of, or availability or result in the theft of, data. In addition, our operations, or the operations of our customers or partners, could be negatively affected in the event of a security breach, and could be subject to the loss or theft of confidential or proprietary information, including source code. Unauthorized access to data and other confidential or proprietary information may be obtained through break-ins, network breaches by unauthorized parties, employee theft or misuse, or other misconduct. If any of the foregoing were to occur, our reputation may suffer, our competitive position may be diminished, customers may buy fewer of our products and services, we could face lawsuits and potential liability, and our financial performance could be negatively impacted. </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Delays in service from third-party service providers could expose us to liability, harm our reputation, damage our competitiveness and adversely impact our financial performance.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">From time to time, we may rely on a single or limited number of suppliers, or upon suppliers in a single country, for the provision of various services and materials that we use in the operation of our business and production of our products. The inability of such third parties to satisfy our requirements could disrupt our business operations or make it more difficult for us to implement our business strategy. If any of these situations were to occur, our reputation could be harmed, we could be subject to third party liability, including under data protection and privacy laws in certain jurisdictions, and our financial performance could be negatively impacted.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">If we do not maintain good relationships with the members of our distribution channel, our ability to generate revenue will be adversely affected. If our distribution channel suffers financial losses, becomes financially unstable or insolvent, or is not provided the right mix of incentives to sell our products, our ability to generate revenue will be adversely affected.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We sell our software products both directly to end-users and through a network of distributors and resellers. For the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">2017</span><span style="font-family:inherit;font-size:10pt;">, approximately </span><span style="font-family:inherit;font-size:10pt;">71%</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">70%</span><span style="font-family:inherit;font-size:10pt;">, respectively, of our revenue was derived from indirect channel sales through distributors and resellers and we expect that the majority of our revenue will continue to be derived from indirect channel sales in the future. Our ability to effectively distribute our products depends in part upon the financial and business condition of our distributor and reseller network. Computer software distributors and resellers typically are not highly capitalized, have previously experienced difficulties during times of economic contraction and experienced difficulties during the past several years. We have processes to ensure that we assess the creditworthiness of distributors and resellers prior to our sales to them. In the past we have taken steps to support them, and may take additional steps in the future, such as extending </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">57</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">credit terms and providing temporary discounts. These steps, if taken, could harm our financial results. If our distributors and resellers were to become insolvent, they would not be able to maintain their business and sales, or provide customer support services, which would negatively impact our business and revenue.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We rely significantly upon major distributors and resellers in both the U.S. and international regions, including the distributor Tech Data. Tech Data accounted for </span><span style="font-family:inherit;font-size:10pt;">34%</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">30%</span><span style="font-family:inherit;font-size:10pt;"> of our total net revenue for the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">April 30, 2017</span><span style="font-family:inherit;font-size:10pt;">, respectively. Although we believe that we are not substantially dependent on Tech Data, if Tech Data were to experience a significant disruption with its business or if our relationship with Tech Data were to significantly deteriorate, it is possible that our ability to sell to end users would be, at least temporarily, negatively impacted. This could in turn negatively impact our financial results.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Over time, we have modified and will continue to modify aspects of our relationship with our distributors and resellers, such as their incentive programs, pricing to them and our distribution model to motivate and reward them for aligning their businesses with our strategy and business objectives. Changes in these relationships and underlying programs could negatively impact their business and harm our business. Further, our distributors and resellers may lose confidence in our business model transition, move to competitive products, or may not have the skills or ability to support customers under the subscription model. The loss of or a significant reduction in business with those distributors or resellers could harm our business. In particular, if one or more of such distributors or resellers were unable to meet their obligations with respect to accounts payable to us, we could be forced to write off such accounts and may be required to delay the recognition of revenue on future sales to these customers. These events could have a material adverse effect on our financial results.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Our financial results fluctuate within each quarter and from quarter to quarter making our future revenue and financial results difficult to predict.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our quarterly financial results have fluctuated in the past and will continue to do so in the future. These fluctuations could cause our stock price to change significantly or experience declines. We also provide investors with quarterly and annual financial forward-looking guidance that could prove to be inaccurate as a result of these fluctuations. In addition to the other factors described in this Part II, Item 1A, some of the factors that could cause our financial results to fluctuate include:</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">general market, economic, business, and political conditions in particular geographies, including Europe, APAC, and emerging economies;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">failure to produce sufficient revenue, billings or subscription growth, and profitability;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">failure to achieve anticipated levels of customer acceptance of our business model transition, including the impact of the end of perpetual licenses and the introduction of our maintenance-to-subscription program;</span></div></td></tr></table><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">restructuring or other accounting charges and unexpected costs or other operating expenses;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">changes in product mix, pricing pressure or changes in product pricing;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">weak or negative growth in one or more of the industries we serve, including AEC, manufacturing, and digital media and entertainment markets;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the success of new business or sales initiatives;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">security breaches, related reputational harm, and potential financial penalties to customers and government entities;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">timing of additional investments in the development of our platform or deployment of our services;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">changes in revenue recognition or other accounting guidelines employed by us and/or established by the Financial Accounting Standards Board or other rule-making bodies;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">fluctuations in foreign currency exchange rates and the effectiveness of our hedging activity;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">failure to achieve and maintain cost reductions and productivity increases;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">dependence on and the timing of large transactions;</span></div></td></tr></table><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">58</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">changes in billings linearity;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">adjustments arising from ongoing or future tax examinations;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the ability of governments around the world to adopt fiscal policies, meet their financial and debt obligations, and to finance infrastructure projects;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">lower renewals of our maintenance program;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">failure to expand our AutoCAD and AutoCAD LT customer base to related design products and services;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">our ability to rapidly adapt to technological and customer preference changes, including those related to cloud computing, mobile devices, new computing platforms, and 3D printing;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the timing of the introduction of new products by us or our competitors;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the financial and business condition of our reseller and distribution channels;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">failure to accurately predict the impact of acquired businesses or to identify and realize the anticipated benefits of acquisitions, and successfully integrate such acquired businesses and technologies;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">perceived or actual technical or other problems with a product or combination of products;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">unexpected or negative outcomes of matters and expenses relating to litigation or regulatory inquiries;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">increases in cloud functionality-related expenses;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">timing of product releases and retirements;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">changes in tax laws or regulations, tax arrangements with foreign governments or accounting rules, such as increased use of fair value measures;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">changes in sales compensation practices;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">failure to effectively implement our copyright legalization programs, especially in developing countries;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">failure to achieve sufficient sell-through in our channels for new or existing products;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">renegotiation or termination of royalty or intellectual property arrangements;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">interruptions or terminations in the business of our consultants or third-party developers;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the timing and degree of expected investments in growth and efficiency opportunities;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">failure to achieve continued success in technology advancements;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">catastrophic events or natural disasters;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">regulatory compliance costs;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">potential goodwill impairment charges related to prior acquisitions; and</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">failure to appropriately estimate the scope of services under consulting arrangements.</span></div></td></tr></table><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We have also experienced fluctuations in financial results in interim periods in certain geographic regions due to seasonality or regional economic or political conditions. In particular, our financial results in Europe during our third quarter are usually affected by a slower summer period, and our APAC operations typically experience seasonal slowing in our third and fourth quarters.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">59</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our operating expenses are based in part on our expectations for future revenue and are relatively fixed in the short term. Accordingly, any revenue shortfall below expectations has had, and in the future could have, an immediate and significant adverse effect on our profitability. Greater than anticipated expenses or a failure to maintain rigorous cost controls would also negatively affect profitability.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Our business could suffer as a result of risks, costs, charges and integration risks associated with strategic acquisitions and investments.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We regularly acquire or invest in businesses, software products and technologies that are complementary to our business through acquisitions, strategic alliances or equity or debt investments. The risks associated with such acquisitions include, among others, the difficulty of assimilating products, operations and personnel, inheriting liabilities such as intellectual property infringement claims, the failure to realize anticipated revenue and cost projections, the requirement to test and assimilate the internal control processes of the acquired business in accordance with the requirements of Section 404 of the Sarbanes-Oxley Act of 2002, and the diversion of management's time and attention. </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In addition, such acquisitions and investments involve other risks such as:</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the inability to retain customers, key employees, vendors, distributors, business partners, and other entities associated with the acquired business;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the potential that due diligence of the acquired business or product does not identify significant problems;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">exposure to litigation or other claims in connection with, or inheritance of claims or litigation risk as a result of, an acquisition, including but not limited to, claims from terminated employees, customers, or other third parties;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the potential for incompatible business cultures;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">significantly higher than anticipated transaction or integration-related costs;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">potential additional exposure to fluctuations in currency exchange rates; and</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the potential impact on relationships with existing customers, vendors, and distributors as business partners as a result of acquiring another business.</span></div></td></tr></table><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We may not be successful in overcoming such risks, and such acquisitions and investments may negatively impact our business. In addition, such acquisitions and investments have in the past and may in the future contribute to potential fluctuations in our quarterly financial results. These fluctuations could arise from transaction-related costs and charges associated with eliminating redundant expenses or write-offs of impaired assets recorded in connection with acquisitions and investments. These costs or charges could negatively impact our financial results for a given period, cause quarter to quarter variability in our financial results or negatively impact our financial results for several future periods.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Because we derive a substantial portion of our net revenue from a small number of products, including our AutoCAD-based software products and collections, if these products are not successful, our revenue will be adversely affected.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We derive a substantial portion of our net revenue from sales of licenses of a limited number of our products, including AutoCAD software, products based on AutoCAD, which include our collections that serve specific markets and products that are interoperable with AutoCAD. Any factor adversely affecting sales of these products, including the product release cycle, market acceptance, product competition, performance and reliability, reputation, price competition, economic and market conditions and the availability of third-party applications, would likely harm our financial results. During the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, combined revenue from our AutoCAD and AutoCAD LT products, not including collections (formerly suites) having AutoCAD or AutoCAD LT as a component, represented </span><span style="font-family:inherit;font-size:10pt;">28%</span><span style="font-family:inherit;font-size:10pt;"> of total net revenue compared to </span><span style="font-family:inherit;font-size:10pt;">27%</span><span style="font-family:inherit;font-size:10pt;"> during the </span><span style="font-family:inherit;font-size:10pt;">three</span><span style="font-family:inherit;font-size:10pt;"> months ended </span><span style="font-family:inherit;font-size:10pt;">April 30, 2017</span><span style="font-family:inherit;font-size:10pt;">.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We are investing in resources to update and improve our information technology systems to digitize the Company and support our business model transition. Should our investments not succeed, or if delays or other issues with new or existing information technology systems disrupt our operations, our business model transition could be compromised and our business could be harmed.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">60</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We rely on our network and data center infrastructure, technology systems and our websites for our development, marketing, operational, support, sales, accounting and financial reporting activities. We continually invest resources to update and improve these systems in order to meet the evolving requirements of our business and customers. In particular, our transition to cloud-based products and a subscription-only business model involves considerable investment in the development of technologies, as well as back-office systems for technical, financial, compliance and sales resources.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Such improvements are often complex, costly and time consuming. In addition, such improvements can be challenging to integrate with our existing technology systems, or may uncover problems with our existing technology systems. Unsuccessful implementation of hardware or software updates and improvements could result in disruption in our business operations, loss of customers, loss of revenue, errors in our accounting and financial reporting or damage to our reputation, all of which could compromise our business model transition.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">If we are not able to adequately protect our proprietary rights, our business could be harmed.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We rely on a combination of patent, copyright and trademark laws, trade secret protections, confidentiality procedures and contractual provisions to protect our proprietary rights. Despite such efforts to protect our proprietary rights, unauthorized parties from time to time have copied aspects of our software products or have obtained and used information that we regard as proprietary. Policing unauthorized use of our software products is time-consuming and costly. We are unable to measure the extent to which piracy of our software products exists and we expect that software piracy will remain a persistent problem, particularly in emerging economies. Furthermore, our means of protecting our proprietary rights may not be adequate.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Additionally, we actively protect the secrecy of our confidential information and trade secrets, including our source code. If unauthorized disclosure of our source code occurs, we could potentially lose future trade secret protection for that source code. The loss of future trade secret protection could make it easier for third-parties to compete with our products by copying functionality, which could adversely affect our financial performance and our reputation. We also seek to protect our confidential information and trade secrets through the use of non-disclosure agreements with our customers, contractors, vendors and partners. However, it is possible that our confidential information and trade secrets may be disclosed or published without our authorization. If this were to occur, it may be difficult and/or costly for us to enforce our rights, and our financial performance and reputation could be negatively impacted.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We may face intellectual property infringement claims that could be costly to defend and result in the loss of significant rights.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As more software patents are granted worldwide, the number of products and competitors in our industry segments grows and the functionality of products in different industry segments overlaps, we expect that software product developers will be increasingly subject to infringement claims. Infringement or misappropriation claims have in the past been, and may in the future be, asserted against us, and any such assertions could harm our business. Additionally, certain patent holders without products have become more aggressive in threatening and pursuing litigation in attempts to obtain fees for licensing the right to use patents. Any such claims or threats, whether with or without merit, have been and could in the future be time-consuming to defend, result in costly litigation and diversion of resources, cause product shipment delays or require us to enter into royalty or licensing agreements. In addition, such royalty or license agreements, if required, may not be available on acceptable terms, if at all, which would likely harm our business.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">From time to time we realign or introduce new business and sales initiatives; if we fail to successfully execute and manage these initiatives, our results of operations could be negatively impacted.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">As part of our effort to accommodate our customers' needs and demands and the rapid evolution of technology, we from time to time evolve our business and sales initiatives such as realigning our development and marketing organizations, offering software as a service, and realigning our internal resources in an effort to improve efficiency. We may take such actions without clear indications that they will prove successful, and at times, we have been met with short-term challenges in the execution of such initiatives. Market acceptance of any new business or sales initiative is dependent on our ability to match our customers' needs at the right time and price. Often we have limited prior experience and operating history in these new areas of emphasis. If any of our assumptions about expenses, revenue or revenue recognition principles from these initiatives proves incorrect, or our attempts to improve efficiency are not successful, our actual results may vary materially from those anticipated, and our financial results will be negatively impacted.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Net revenue, billings, earnings or subscriptions shortfalls or the volatility of the market generally may cause the market price of our stock to decline.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">61</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The market price for our common stock has experienced significant fluctuations and may continue to fluctuate significantly. The market price for our common stock may be affected by a number of factors, including the other factors described in this </span><span style="font-family:inherit;font-size:10pt;">Part II</span><span style="font-family:inherit;font-size:10pt;">, </span><span style="font-family:inherit;font-size:10pt;">Item 1A</span><span style="font-family:inherit;font-size:10pt;"> and the following:</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">shortfalls in our expected financial results, including net revenue, billings, ARR, ARPS, earnings, subscriptions, or other key performance metrics;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">results and future projections related to our business model transition;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">quarterly variations in our or our competitors' results of operations;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">general socio-economic, political or market conditions;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">changes in estimates of future results or recommendations or confusion on the part of analysts and investors about the short-term and long-term impact to our business resulting from our business model transition;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">uncertainty about certain governments' abilities to repay debt or effect fiscal policy;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">the announcement of new products or product enhancements by us or our competitors;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">unusual events such as significant acquisitions, divestitures, regulatory actions, and litigation;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">changes in laws, rules, or regulations applicable to our business;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">outstanding debt service obligations; and</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">other factors, including factors unrelated to our operating performance, such as instability affecting the economy or the operating performance of our competitors.</span></div></td></tr></table><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Significant changes in the price of our common stock could expose us to costly and time-consuming litigation. Historically, after periods of volatility in the market price of a company's securities, a company becomes more susceptible to securities class action litigation. This type of litigation is often expensive and diverts management's attention and resources.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Our business could be adversely affected if we are unable to attract and retain key personnel.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our success and ability to invest and grow depend largely on our ability to attract and retain highly skilled technical, professional, managerial, sales, and marketing personnel. Historically, competition for these key personnel has been intense. The loss of services of any of our key personnel (including key personnel joining our company through acquisitions), the inability to retain and attract qualified personnel in the future, or delays in hiring required personnel, particularly engineering and sales personnel, could make it difficult to meet key objectives, such as timely and effective product introductions and financial goals.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Our investment portfolio consists of a variety of investment vehicles in a number of countries that are subject to interest rate trends, market volatility, and other economic factors. If general economic conditions decline, this could cause the credit ratings of our investments to deteriorate, illiquidity in the financial marketplace, and we may experience a decline in interest income and an inability to sell our investments, leading to impairment in the value of our investments.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">It is our policy to invest our cash, cash equivalents and marketable securities in highly liquid instruments with, and in the custody of, financial institutions with high credit ratings and to limit the amounts invested with any one institution, type of security and issuer. However, we are subject to general economic conditions, interest rate trends and volatility in the financial marketplace that can affect the income that we receive from our investments, the net realizable value of our investments (including our cash, cash equivalents and marketable securities) and our ability to sell them. Any one of these factors could reduce our investment income, or result in material charges, which in turn could impact our overall net income (loss) and earnings (loss) per share.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">From time to time we make direct investments in privately held companies. Privately held company investments are considered inherently risky. The technologies and products these companies have under development are typically in the early stages and may never materialize, which could result in a loss of all or a substantial part of our initial investment in these companies. The evaluation of privately held companies is based on information that we request from these companies, which is </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">62</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">not subject to the same disclosure regulations as U.S. publicly traded companies, and as such, the basis for these evaluations is subject to the timing and accuracy of the data received from these companies.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">A loss on any of our investments may cause us to record an other-than-temporary impairment charge. The effect of this charge could impact our overall net income (loss) and earnings (loss) per share. In any of these scenarios, our liquidity may be negatively impacted, which in turn may prohibit us from making investments in our business, taking advantage of opportunities and potentially meeting our financial obligations as they come due.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We are subject to legal proceedings and regulatory inquiries, and we may be named in additional legal proceedings or become involved in regulatory inquiries in the future, all of which are costly, distracting to our core business and could result in an unfavorable outcome, or a material adverse effect on our business, financial condition, results of operations, cash flows or the trading prices for our securities.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We are involved in legal proceedings and receive inquiries from regulatory agencies. As the global economy has changed and our business has evolved, we have seen an increase in litigation activity and regulatory inquiries. Like many other high technology companies, the number and frequency of inquiries from U.S. and foreign regulatory agencies we have received regarding our business and our business practices, and the business practices of others in our industry, have increased in recent years. In the event that we are involved in significant disputes or are the subject of a formal action by a regulatory agency, we could be exposed to costly and time consuming legal proceedings that could result in any number of outcomes. Any claims or regulatory actions initiated by or against us, whether successful or not, could result in expensive costs of defense, costly damage awards, injunctive relief, increased costs of business, fines or orders to change certain business practices, significant dedication of management time, diversion of significant operational resources, or otherwise harm our business. In any of these cases, our financial results, results of operations, cash flows or the trading prices for our securities could be negatively impacted.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We are subject to risks related to taxation in multiple jurisdictions.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We are a U.S.-based multinational company subject to tax in multiple U.S. and foreign tax jurisdictions. Our effective tax rate is primarily based on our expected geographic mix of earnings, statutory rates, intercompany arrangements, including the manner in which we develop, value and license our intellectual property, and enacted tax rules. Significant judgment is required in determining our effective tax rate and in evaluating our tax positions on a worldwide basis. While we believe our tax positions, including intercompany transfer pricing policies, are consistent with the tax laws in the jurisdictions in which we conduct our business, it is possible that these positions may be overturned by jurisdictional tax authorities and may have a significant impact on our effective tax rate.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In connection with the company’s closure of certain offices and reduction of workforces worldwide, the company is in discussions with tax authorities regarding the closure of offices and the redeployment/transfer of assets. At this time the Company cannot estimate the tax implications of these discussions.</span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Tax laws are dynamic and subject to change as new laws are passed and new interpretations of the law are issued or applied. For example, the U.S. government enacted significant tax law changes in December 2017, the Tax Act, which impacts our tax obligations and effective tax rate beginning in our fiscal 2018 tax year. Increasingly, governmental tax authorities are scrutinizing corporate tax strategies. Many countries in the European Union, as well as other countries and organizations such as the Organization for Economic Cooperation and Development, are actively considering changes to existing tax laws that, if enacted, could increase our tax obligations in many countries where we do business. If U.S. or other foreign tax authorities change applicable tax laws or successfully challenge the manner in which our profits are currently recognized, our overall taxes could increase, and our business, financial condition or results of operations may be adversely impacted.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Uncertainties in the interpretation and application of the Tax Act could materially affect our tax obligations and effective tax rate.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The Tax Act provides broad and significant changes to the U.S. tax code and how the U.S. imposes income tax on multinational corporations. Due to the complexity and varying interpretations of the Tax Act, the U.S. Department of the Treasury and other standard-setting bodies may issue regulations and interpretative guidance that could significantly impact how we will apply the law and our results of operations from the Tax Act. </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The Tax Act requires complex computations to be performed that were not previously provided for in the U.S. tax law. These computations require significant judgments to be made regarding the interpretation of the provisions within the Tax Act along with preparation and analysis of information not previously required. SAB 118 allows for the Company to record </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">63</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">provisional amounts until a final assessment can be made within a period not to exceed one year from the date of enactment, which would be during our quarter ending October 31, 2018. As a result, we recorded a provisional estimate on the effect of the Tax Act in our January 31, 2018, financial statements based on our initial assessment. As additional regulatory guidance is issued and we continue to collect and analyze necessary data, we may make adjustments to provisional amounts previously recorded. We do not anticipate these adjustments to materially impact our provision for income taxes in the period in which an adjustment is made since we have provided for a full valuation allowance against our provision in the U.S.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Changes in existing financial accounting standards or practices, or taxation rules or practices may adversely affect our results of operations.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Changes in existing accounting or taxation rules or practices, new accounting pronouncements or taxation rules, or varying interpretations of current accounting pronouncements or taxation practice could have a significant adverse effect on our results of operations or the manner in which we conduct our business. Further, such changes could potentially affect our reporting of transactions completed before such changes are effective.</span></div><div style="line-height:174%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">For example, in May 2014, the FASB issued ASU 2014-09, Revenue from Contracts with Customers, which supersedes nearly all existing revenue recognition guidance under U.S. GAAP. This standard establishes a principle for recognizing revenue upon the transfer of promised goods or services to customers, in an amount that reflects the expected consideration received in exchange for those goods or services. The standard also provides guidance on the recognition of costs related to obtaining and fulfilling customer contracts. In August 2015, the FASB subsequently issued ASU 2015-14, which deferred the effectiveness of ASU 2014-09, so that it is now effective for annual reporting periods beginning after December 15, 2017, including interim periods within that reporting period. The revised effective date for the Company under the new standard is the beginning of fiscal 2019. We are implementing changes to our policies, procedures and systems in order to successfully adopt the standard. This new standard is both technical and complex, and we expect to incur significant ongoing costs to implement and maintain compliance with this new standard. In addition, there may be greater uncertainty with respect to projecting revenue results from future operations as we work through the new revenue recognition standard. </span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Adoption of ASU 2014-09 along with any other changes in accounting principles or interpretations could have a significant effect on our reported financial results and could affect the reporting of transactions completed before the announcement of a change. Any difficulties in the implementation of new or changed accounting standards including ASU 2014-09 could cause us to fail to meet our financial reporting obligations. If our estimates relating to our critical accounting policies are based on assumptions or judgments that change or prove to be incorrect, our operating results could fall below expectations of securities analysts and investors, resulting in a decline in our stock price. In addition, as we evolve and change our business and sales models, we are currently unable to determine how these potential changes may impact our new models, particularly in the area of revenue recognition.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We are required to evaluate our internal control over financial reporting under Section 404 of the Sarbanes-Oxley Act of 2002 and any adverse results from such evaluation could result in a loss of investor confidence in our financial reports and have an adverse effect on our stock price.</span></div><div style="line-height:174%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Pursuant to Section 404 of the Sarbanes-Oxley Act of 2002, we are required to furnish a report by our management on our internal control over financial reporting. The report contains, among other matters, an assessment of the effectiveness of our internal control over financial reporting as of the end of our fiscal year, including a statement as to whether or not our internal control over financial reporting is effective. This assessment must include disclosure of any material weaknesses in our internal control over financial reporting identified by management. </span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">If our management or independent registered public accounting firm identifies one or more material weaknesses in our internal control over financial reporting, we would be unable to assert that such internal control over financial reporting is effective. If we are unable to assert that our internal control over financial reporting is effective (or if our independent registered public accounting firm is unable to express an opinion that our internal controls are effective), we could lose investor confidence in the accuracy and completeness of our financial reports, which could have an adverse effect on our business and stock price.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">In preparing our financial statements we make certain assumptions, judgments and estimates that affect amounts reported in our consolidated financial statements, which, if not accurate, may significantly impact our financial results.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We make assumptions, judgments and estimates for a number of items, including the fair value of financial instruments, goodwill, long-lived assets and other intangible assets, the realizability of deferred tax assets and the fair value of stock awards. </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">64</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We also make assumptions, judgments and estimates in determining the accruals for employee related liabilities including commissions, bonuses, and sabbaticals; and in determining the accruals for uncertain tax positions, partner incentive programs, product returns reserves, allowances for doubtful accounts, asset retirement obligations and legal contingencies. These assumptions, judgments and estimates are drawn from historical experience and various other factors that we believe are reasonable under the circumstances as of the date of the consolidated financial statements. Actual results could differ materially from our estimates, and such differences could significantly impact our financial results.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We rely on third party technologies and if we are unable to use or integrate these technologies, our product and service development may be delayed and our financial results negatively impacted.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We rely on certain software that we license from third parties, including software that is integrated with internally developed software and used in our products to perform key functions. These third-party software licenses may not continue to be available on commercially reasonable terms, and the software may not be appropriately supported, maintained or enhanced by the licensors. The loss of licenses to, or inability to support, maintain and enhance any such software could result in increased costs, or in delays or reductions in product shipments until equivalent software can be developed, identified, licensed and integrated, which would likely harm our business.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Disruptions with licensing relationships and third party developers could adversely impact our business.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We license certain key technologies from third parties. Licenses may be restricted in the term or the use of such technology in ways that negatively affect our business. Similarly, we may not be able to obtain or renew license agreements for key technology on favorable terms, if at all, and any failure to do so could harm our business.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our business strategy has historically depended in part on our relationships with third-party developers who provide products that expand the functionality of our design software. Some developers may elect to support other products or may experience disruption in product development and delivery cycles or financial pressure during periods of economic downturn. In particular markets, such disruptions have in the past, and would likely in the future, negatively impact these third-party developers and end users, which could harm our business.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Additionally, technology created by outsourced product development, whether outsourced to third parties or developed externally and transferred to us through business or technology acquisitions, has certain additional risks such as effective integration into existing products, adequate transfer of technology know-how and ownership and protection of transferred intellectual property.</span></div><div style="line-height:120%;text-align:left;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">As a result of our strategy of partnering with other companies for product development, our product delivery schedules could be adversely affected if we experience difficulties with our product development partners.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We partner with certain independent firms and contractors to perform some of our product development activities. We believe our partnering strategy allows us to, among other things, achieve efficiencies in developing new products and maintaining and enhancing existing product offerings. Our partnering strategy creates a dependency on such independent developers. Independent developers, including those who currently develop products for us in the U.S. and throughout the world, may not be able or willing to provide development support to us in the future. In addition, use of development resources through consulting relationships, particularly in non-U.S. jurisdictions with developing legal systems, may be adversely impacted by, and expose us to risks relating to, evolving employment, export and intellectual property laws. These risks could, among other things, expose our intellectual property to misappropriation and result in disruptions to product delivery schedules.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">Our business may be significantly disrupted upon the occurrence of a catastrophic event.</span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:30px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our business is highly automated and relies extensively on the availability of our network and data center infrastructure, our internal technology systems and our websites. We also rely on hosted computer services from third parties for services that we provide to our customers and computer operations for our internal use. The failure of our systems or hosted computer services due to a catastrophic event, such as an earthquake, fire, flood, tsunami, weather event, telecommunications failure, power failure, cyber attack, terrorism, or war, could adversely impact our business, financial results and financial condition. We have developed disaster recovery plans and maintain backup systems in order to reduce the potential impact of a catastrophic event, however there can be no assurance that these plans and systems would enable us to return to normal business operations. In addition, any such event could negatively impact a country or region in which we sell our products. This could in turn decrease that country's or region's demand for our products, thereby negatively impacting our financial results.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">If we were required to record an impairment charge related to the value of our long-lived assets, or an additional valuation </span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">65</span></div></div><hr style="page-break-after:always"/><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">allowance against our deferred tax assets, our results of operations would be adversely affected.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Our long-lived assets are tested for impairment if indicators of impairment exist. If impairment testing shows that the carrying value of our long-lived assets exceeds their estimated fair values, we would be required to record a non-cash impairment charge, which would decrease the carrying value of our long-lived assets, as the case may be, and our results of operations would be adversely affected. Our deferred tax assets include net operating loss, amortizable tax assets and tax credit carryforwards that can be used to offset taxable income and reduce income taxes payable in future periods. Each quarter, we assess the need for a valuation allowance, considering both positive and negative evidence to determine whether all or a portion of the deferred tax assets are more likely than not to be realized. In fiscal 2016, we determined that it was more likely than not that the Company would not realize our U.S. deferred tax assets and established a valuation allowance against our U.S. deferred tax assets. We continued to have a full valuation allowance against our U.S. deferred assets in fiscal </span><span style="font-family:inherit;font-size:10pt;">2019</span><span style="font-family:inherit;font-size:10pt;">. Changes in the amount of the valuation allowance could result in a material non-cash expense or benefit in the period in which the valuation allowance is adjusted and our results of operations could be materially affected. We will continue to perform these tests and any future adjustments may have a material effect on our financial condition and results of operations.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-style:italic;">We issued $</span><span style="font-family:inherit;font-size:10pt;font-style:italic;">1.6 billion</span><span style="font-family:inherit;font-size:10pt;font-style:italic;"> aggregate principal amount of unsecured notes in debt offerings and have an existing $</span><span style="font-family:inherit;font-size:10pt;font-style:italic;">400.0 million</span><span style="font-family:inherit;font-size:10pt;font-style:italic;"> revolving credit facility, and expect to incur other debt in the future, which may adversely affect our financial condition and future financial results.</span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">In June 2017, we issued </span><span style="font-family:inherit;font-size:10pt;">$500.0 million</span><span style="font-family:inherit;font-size:10pt;"> aggregate principal amount of </span><span style="font-family:inherit;font-size:10pt;">3.5%</span><span style="font-family:inherit;font-size:10pt;"> notes due </span><span style="font-family:inherit;font-size:10pt;">June 15, 2027</span><span style="font-family:inherit;font-size:10pt;">. In June 2015, we issued </span><span style="font-family:inherit;font-size:10pt;">3.125%</span><span style="font-family:inherit;font-size:10pt;"> notes due </span><span style="font-family:inherit;font-size:10pt;">June 15, 2020</span><span style="font-family:inherit;font-size:10pt;"> in an aggregate principal amount of $</span><span style="font-family:inherit;font-size:10pt;">450.0 million</span><span style="font-family:inherit;font-size:10pt;"> and </span><span style="font-family:inherit;font-size:10pt;">4.375%</span><span style="font-family:inherit;font-size:10pt;"> notes due </span><span style="font-family:inherit;font-size:10pt;">June 15, 2025</span><span style="font-family:inherit;font-size:10pt;"> in an aggregate principal amount of $</span><span style="font-family:inherit;font-size:10pt;">300.0 million</span><span style="font-family:inherit;font-size:10pt;">. In December 2012, we issued </span><span style="font-family:inherit;font-size:10pt;">3.6%</span><span style="font-family:inherit;font-size:10pt;"> notes due </span><span style="font-family:inherit;font-size:10pt;">December 15, 2022</span><span style="font-family:inherit;font-size:10pt;"> in an aggregate principal amount of $</span><span style="font-family:inherit;font-size:10pt;">350.0 million</span><span style="font-family:inherit;font-size:10pt;">. As the debt matures, we will have to expend significant resources to either repay or refinance these notes. For example, in July 2017, we redeemed outstanding senior notes due </span><span style="font-family:inherit;font-size:10pt;">December 15, 2017</span><span style="font-family:inherit;font-size:10pt;"> for a total cash repayment of </span><span style="font-family:inherit;font-size:10pt;">$401.8 million</span><span style="font-family:inherit;font-size:10pt;"> by using the proceeds the from notes we issued in 2017. If we decide to refinance notes in the future, we may be required to do so on different or less favorable terms or we may be unable to refinance the notes at all, both of which may adversely affect our financial condition.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We also have a $</span><span style="font-family:inherit;font-size:10pt;">400.0 million</span><span style="font-family:inherit;font-size:10pt;"> revolving credit facility. As of </span><span style="font-family:inherit;font-size:10pt;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">, we had no outstanding borrowings on the line of credit. Although we have no current plans to borrow under this credit facility, we may use the proceeds of any future borrowing for general corporate purposes, or for future acquisitions or expansion of our business. Our existing and future levels of indebtedness may adversely affect our financial condition and future financial results by, among other things:</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">increasing our vulnerability to adverse changes in general economic, industry and competitive conditions;</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">requiring the dedication of a greater than expected portion of our expected cash from operations to service our indebtedness, thereby reducing the amount of expected cash flow available for other purposes, including capital expenditures and acquisitions; and</span></div></td></tr></table><div style="line-height:120%;text-align:left;padding-left:48px;text-indent:-24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:48px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:24px;"><span style="font-family:inherit;font-size:10pt;">•</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">limiting our flexibility in planning for, or reacting to, changes in our business and our industry.</span></div></td></tr></table><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">This credit agreement contains customary covenants that could restrict the imposition of liens on Autodesk’s assets, and restrict the Company’s ability to incur additional indebtedness or make dispositions of assets if Autodesk fails to maintain the financial covenants. The financial covenants consist of a maximum debt to total cash ratio, a fixed charge coverage ratio through April 30, 2018, and, after April 30, 2018, a minimum interest coverage ratio.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">We are required to comply with the covenants set forth in our unsecured notes and revolving credit facility. Our ability to comply with these covenants may be affected by events beyond our control. If we breach any of the covenants and do not obtain a waiver from the note holders or lenders, then, subject to applicable cure periods, we would not be able to incur additional indebtedness under the credit facility and any outstanding indebtedness may be declared immediately due and payable. In addition, changes by any rating agency to our credit rating may negatively impact the value and liquidity of our securities. Under certain circumstances, if our credit ratings are downgraded or other negative action is taken, the interest rate payable by us under our revolving credit facility could increase. Downgrades in our credit ratings could also restrict our ability to obtain additional financing in the future and could affect the terms of any such financing.</span></div><div style="line-height:120%;text-align:left;text-indent:29px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">66</span></div></div><hr style="page-break-after:always"/><div><a id="s3F8986F4D7D45004ADFF8C362E092062"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 2.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">UNREGISTERED SALES OF EQUITY SECURITIES AND USE OF PROCEEDS</span></div></td></tr></table><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">There were no sales of unregistered securities during the three months ended </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">April 30, 2018</span><span style="font-family:inherit;font-size:10pt;">.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The information concerning issuer purchases of equity securities required by this Item is incorporated by reference herein to the section of this Report entitled “Issuer Purchases of Equity Securities” in Part I, Item 2 above.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sF8412544FF345B0D918E8D4990AB8F0C"></a></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 3.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">DEFAULTS UPON SENIOR SECURITIES</span></div></td></tr></table><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Not applicable.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="s446D171943C5516DB3BCB97B39248037"></a></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 4.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">MINE SAFETY DISCLOSURES</span></div></td></tr></table><div style="line-height:120%;padding-left:24px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Not applicable.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><a id="sDF6A169DDAE55595B0D13EBC1B77A946"></a></div><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 5.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">OTHER INFORMATION</span></div></td></tr></table><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">None.</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">67</span></div></div><hr style="page-break-after:always"/><div><a id="s60AEF7C64191561F9BC1899747EBA515"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><table cellpadding="0" cellspacing="0" style="-sec-extract:summary;font-family:Times New Roman; font-size:10pt;"><tr><td style="width:96px;"></td><td></td></tr><tr><td style="vertical-align:top"><div style="line-height:120%;font-size:10pt;padding-left:0px;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">ITEM 6.</span></div></td><td style="vertical-align:top;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">EXHIBITS</span></div></td></tr></table><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">The Exhibits listed below are filed or incorporated by reference as part of this Form 10-Q.</span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:left;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="3"></td></tr><tr><td style="width:10%;"></td><td style="width:1%;"></td><td style="width:89%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;text-decoration:underline;">Exhibit No.</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Description</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">3.1</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><a href="http://www.sec.gov/Archives/edgar/data/769397/000076939718000006/bylawsasamended-2018xmarch.htm" style="text-decoration:underline;color:#0000FF;-sec-extract:exhibit;"><span style="font-family:inherit;font-size:9pt;">Amended and Restated Bylaws of Registrant (incorporated by reference to Exhibit 3.1 filed with the Registrant’s Current Report on Form 8-K filed on March 21, 2018)</span></a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:6px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:6px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:6px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">10.1*</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><a href="http://www.sec.gov/Archives/edgar/data/769397/000076939718000015/form8-kx2018xmarchx21item5.htm" style="text-decoration:underline;color:#0000FF;-sec-extract:exhibit;"><span style="font-family:inherit;font-size:9pt;">Participants, target awards and payout formulas for fiscal year 2019 under the Registrant's Executive Incentive Plan (incorporated by reference to Item 5.02 of the Registrant's Current Report on Form 8-K filed on March 26, 2018)</span></a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:8px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:8px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:8px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">31.1</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><a href="a4302018ex311.htm" style="text-decoration:underline;color:#0000FF;-sec-extract:exhibit;"><span style="font-family:inherit;font-size:9pt;">Certification of Chief Executive Officer pursuant to Rule 13a-14(a) of the Securities Exchange Act of 1934</span></a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:9px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:9px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:9px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">31.2</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><a href="a4302018ex312.htm" style="text-decoration:underline;color:#0000FF;-sec-extract:exhibit;"><span style="font-family:inherit;font-size:9pt;"> Certification of Chief Financial Officer pursuant to Rule 13a-14(a) of the Securities Exchange Act of 1934</span></a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:8px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:8px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:8px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">32.1 †</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="font-size:9pt;"><a href="a4302018ex321.htm" style="text-decoration:underline;color:#0000FF;-sec-extract:exhibit;"><span style="font-family:inherit;font-size:9pt;">Certification of Chief Executive Officer and Chief Financial Officer pursuant to 18 U.S.C. Section 1350, as adopted pursuant to Section 906 of the Sarbanes-Oxley Act of 2002</span></a></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">101.INS ††</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">XBRL Instance Document - the instance document does not appear in the Interactive Data File because its XBRL tags are embedded within the Inline XBRL document</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">101.SCH ††</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">XBRL Taxonomy Extension Schema</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">101.CAL ††</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">XBRL Taxonomy Extension Calculation Linkbase</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">101.DEF ††</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">XBRL Taxonomy Definition Linkbase</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">101.LAB ††</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">XBRL Taxonomy Extension Label Linkbase</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">101.PRE ††</span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">XBRL Taxonomy Extension Presentation Linkbase</span></div></td></tr></table></div><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:100%;border-collapse:collapse;text-align:left;"><tr><td colspan="2"></td></tr><tr><td style="width:6%;"></td><td style="width:94%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:9px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:9px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">*</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">Denotes a management contract or compensatory plan or arrangement.</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">†</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">The certifications attached as Exhibit 32 that accompany this Quarterly Report on Form 10-Q are not deemed filed with the Securities and Exchange Commission and are not to be incorporated by reference into any filing of Autodesk, Inc. under the Securities Act of 1933, as amended, or the Securities Exchange Act of 1934, as amended, whether made before or after the date of this Form 10-Q, irrespective of any general incorporation language contained in such filing.</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:5px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">††</span></div></td><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;">The financial information contained in these XBRL documents is unaudited.</span></div></td></tr></table></div></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">68</span></div></div><hr style="page-break-after:always"/><div><a id="sD2D7539567F456C2BE18750E00586E18"></a></div><div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div></div><div><br/></div><div style="line-height:120%;text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;font-weight:bold;">SIGNATURES</span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;text-indent:32px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Pursuant to the requirements of the Securities Exchange Act of 1934, the registrant has duly caused this report to be signed on its behalf by the undersigned thereunto duly authorized.</span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">Dated: </span><span style="font-family:inherit;font-size:10pt;color:#000000;text-decoration:none;">June 8, 2018</span><span style="font-family:inherit;font-size:10pt;"> </span></div><div style="line-height:120%;font-size:9pt;"><span style="font-family:inherit;font-size:9pt;"> </span></div><div style="line-height:120%;text-align:right;font-size:10pt;"><div style="padding-left:0px;text-indent:0px;line-height:normal;padding-top:10px;text-align:-moz-right;"><table cellpadding="0" cellspacing="0" style="font-family:Times New Roman;font-size:10pt;width:50.78125%;border-collapse:collapse;text-align:left;margin-left:auto;margin-right:0;"><tr><td colspan="1"></td></tr><tr><td style="width:100%;"></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:20px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">AUTODESK, INC.</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:left;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">(Registrant)</span></div></td></tr><tr><td style="vertical-align:bottom;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="overflow:hidden;height:20px;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"> </span></div></td></tr><tr><td style="vertical-align:bottom;border-bottom:1px solid #000000;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">/s/ PAUL UNDERWOOD </span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Paul Underwood</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">Vice President and Corporate Controller</span></div></td></tr><tr><td style="vertical-align:top;padding-left:2px;padding-top:2px;padding-bottom:2px;padding-right:2px;"><div style="text-align:center;font-size:8pt;"><span style="font-family:inherit;font-size:8pt;font-weight:bold;">(Principal Accounting Officer)</span></div></td></tr></table></div></div><div style="line-height:120%;text-align:right;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;"><br/></span></div><div><br/></div><div style="text-align:center;"><div style="line-height:120%;font-size:10pt;"><span style="font-family:inherit;font-size:10pt;">69</span></div></div>
</xbrl>
</text>
</description></filename></sequence></type></document>
In [16]:
doc_tag = soup.find_all("document")
xbrlInstance = None
count=0
for tag in doc_tag:
desc = tag.find("description")
if desc:
description = desc.get_text().lower()
if (description.startswith("idea: xbrl document")):
if not xbrlInstance:
print("idea doc found")
xml_tags = tag.find("xml")
#self.errorLog.append(xml_tags)
if xml_tags:
xbrlInstance = tag
idea doc found
In [16]:
all_tags = xbrlInstance.findAll()
for tag in all_tags:
if 'us-gaap:earningspersharebasic' in tag.name:
print(tag)
<us-gaap:earningspersharebasic contextref="FD2019Q3QTD" decimals="2" id="d3042864e2625-wk-Fact-DAC486E2516F59659312E1E677E66D31" unitref="usdPerShare">-0.11</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2018Q3QTD" decimals="2" id="d3042864e2645-wk-Fact-95FAD29989D15CF39D67B82685601A65" unitref="usdPerShare">-0.55</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2019Q3YTD" decimals="2" id="d3042864e2665-wk-Fact-32314BBBE162585F9DD2615D66AEA3BF" unitref="usdPerShare">-0.67</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2018Q3YTD" decimals="2" id="d3042864e2686-wk-Fact-ED8AA2BB420750BEBA5E2CC8E86B8453" unitref="usdPerShare">-1.79</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2019Q3QTD" decimals="2" id="d3054825e2342-wk-Fact-DAC486E2516F59659312E1E677E66D31" unitref="usdPerShare">-0.11</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2019Q3QTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="2" id="d3054825e2362-wk-Fact-CB6405CC71705633BCA3CCE5AC2FCA67" unitref="usdPerShare">0.03</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2019Q3QTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="2" id="d3054825e2381-wk-Fact-CEDD03E72C1C5905B106764B5ED4B718" unitref="usdPerShare">-0.08</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2019Q3YTD" decimals="2" id="d3054825e2402-wk-Fact-32314BBBE162585F9DD2615D66AEA3BF" unitref="usdPerShare">-0.67</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2019Q3YTD_us-gaap_AdjustmentsForNewAccountingPronouncementsAxis_us-gaap_AccountingStandardsUpdate201409Member_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_DifferenceBetweenRevenueGuidanceInEffectBeforeAndAfterTopic606Member" decimals="2" id="d3054825e2422-wk-Fact-C5412152460F504E8AEBFD5B181077E2" unitref="usdPerShare">0.19</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2019Q3YTD_us-gaap_InitialApplicationPeriodCumulativeEffectTransitionAxis_us-gaap_CalculatedUnderRevenueGuidanceInEffectBeforeTopic606Member" decimals="2" id="d3054825e2442-wk-Fact-ABE3C0796A23584C9B81105D7F25BCE5" unitref="usdPerShare">-0.48</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2019Q3QTD" decimals="2" id="d3048646e1234-wk-Fact-DAC486E2516F59659312E1E677E66D31" unitref="usdPerShare">-0.11</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2018Q3QTD" decimals="2" id="d3048646e1254-wk-Fact-95FAD29989D15CF39D67B82685601A65" unitref="usdPerShare">-0.55</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2019Q3YTD" decimals="2" id="d3048646e1274-wk-Fact-32314BBBE162585F9DD2615D66AEA3BF" unitref="usdPerShare">-0.67</us-gaap:earningspersharebasic>
<us-gaap:earningspersharebasic contextref="FD2018Q3YTD" decimals="2" id="d3048646e1295-wk-Fact-ED8AA2BB420750BEBA5E2CC8E86B8453" unitref="usdPerShare">-1.79</us-gaap:earningspersharebasic>
In [13]:
all_10Ks =pd.read_csv("TestData\\nvda_all_10ks.csv", parse_dates=['date'], dtype={'cik':str, 'conm':str, 'type':str,'path':str})
all_10Qs =pd.read_csv("TestData\\nvda_all_10qs.csv", parse_dates=['date'], dtype={'cik':str, 'conm':str, 'type':str,'path':str})
cik conm type date \
0 1045810 NVIDIA CORP 10-K 2016-03-17
1 1045810 NVIDIA CORP 10-K 2017-03-01
2 1045810 NVIDIA CORP 10-K 2018-02-28
path
0 edgar/data/1045810/0001045810-16-000205.txt
1 edgar/data/1045810/0001045810-17-000027.txt
2 edgar/data/1045810/0001045810-18-000010.txt cik object
conm object
type object
date datetime64[ns]
path object
dtype: object
In [ ]:
In [ ]:
In [ ]:
In [21]:
import datetime as dt
(dt.datetime(2016,12, 31) - dt.datetime(2018,6, 30)).days
Out[21]:
-546
In [32]:
9.35-1.68- 2.11- 3.38
Out[32]:
2.1800000000000006
In [13]:
229234 - 45408- 52896- 78351
Out[13]:
52579
In [44]:
import pandas as pd
all_10Qs =pd.read_csv("TestData\\nvda_all_10qs.csv", parse_dates=['date'], dtype={'cik':str, 'conm':str, 'type':str,'path':str})
In [50]:
all_10Qs[all_10Qs.date == "2017-05-23"].index[0]
Out[50]:
1
In [10]:
from datetime import datetime, timedelta
datetime.now() - timedelta(days=5*365.25)
Out[10]:
datetime.datetime(2014, 10, 26, 6, 23, 2, 630704)
In [14]:
currentDate = date(2019,2,1)
oldestDate = datetime(currentDate.year, currentDate.month, currentDate.day) - timedelta(days=5*365.25)
print(oldestDate.isoformat())
2014-01-31T18:00:00
In [ ]:
In [2]:
import requests
from bs4 import BeautifulSoup as BSoup
import pandas as pd
In [ ]:
ticker = "NVDA"
## Read in the file
f = open ("1045810_NVIDIA-CORP_10-Q_2017-08-23", "r")
lines = f.readlines ()
f.close ()
ser = pd.Series (lines)
#print (ser)
#this denotes where the actual 10-Q starts. I think the 10-Q part is enclosed by <document> tags
html_idxs = (ser[ser == '<TYPE>10-Q\n'])
#get the line number (== index number):
print ("html_idxs: {}".format(html_idxs.index.values))
#and the corresponding line
print (lines[html_idxs.index.values[0]])
#html_idxs_end = (ser['<\TYPE>' in ser])
#print ("html_idxs_end: {}".format (html_idxs_end.index.values))
#print (lines[html_idxs_end.index.values[0]])
#now I can parse the 10-Q with beautifulsoup:
## Find a way to determine which lines to parse automatically. Really, I only need the html-tag, i.e. lines 55-63
## (see NVDA_finstat_test.hmtl)
soup = Bsoup ("".join (lines[55:63]), "lxml") #find the end of the section by searching for /Document?
#collect all div-tags for future use
all_divs = soup.find_all ("div")
#find the div-tag that contains 'ITEM 1.  FINANCIAL STATEMENTS' which indicates the start of the
#income statement's table
#will this work on all filings???
print ("found {} occurrences". format (len(all_divs)))
tables = soup.find_all ("table")
print ("found {} tables".format (len(tables)))
#iterate over the div-tags, not sure if there is a better way. I think everything is is div tags.
flag = False
count = 0
for f in all_divs:
#find beginning of financial statements
if (f.get_text().startswith ("ITEM 1.") and "FINANCIAL STATEMENTS" in f.get_text()):
flag = True
#print (count)
if (flag):
#print (f.get_text())
if ("three months ended" in f.text.lower()):
## At this point, we found the div-tag with the income-statement table
## Try to use pandas
#print((f.find_all('div', text='$')))
for ff in f.find_all('div',text='$'):
ff.decompose()
## Almost! Just need to get rid of the '$', which are offsetting the affected rows by several columns
## This removes the '$' (use re.compile for other currency symbols?), now what about the paren's denoting negative numbers?
tableDf=pd.read_html(str(f))
print(tableDf)
## Manual method
trs = f.find_all("tr")
#print (len(trs))
#print(trs[2].get_text())
for t in trs:
tlist = [item.get_text() for item in t.find_all("td")]
print(" || ".join(tlist))
#print (trs)
break
#print ("\n")
count += 1
<description> XBRL INSTANCE DOCUMENT. Inside the description-tag is the <XBRL>, which contains the XBRL-data for the instance document. Note that there are several XBRL- tags containing the various XBRL documents (schema, extension, linkbases, ...). <xbrli:context id="FI2017Q4">
<xbrli:entity>
<xbrli:identifier scheme="http://www.sec.gov/CIK">0001045810</xbrli:identifier>
</xbrli:entity>
<xbrli:period>
<xbrli:instant>2017-01-29</xbrli:instant>
</xbrli:period>
</xbrli:context>
### Interesting classifiers:
In [6]:
g=open("SECDATA\\AUTODESK INC\\769397_AUTODESK INC_10-Q_2018-08-000000", "r")
wholeFile = g.read ()
g.close ()
soup = BSoup (wholeFile, "lxml")
#print(soup)
In [7]:
sec_header = soup.find("sec-header")
print(sec_header)
doc_tag = soup.find_all("document")
#print(doc_tag)
None
In [32]:
import os
path=os.path.join(os.getcwd(), os.path.join("SECDATA", "AUTODESK INC"))
print(path)
print(os.listdir(path))
C:\Users\Carola\jupyternbs\SECDATA\AUTODESK INC
['769397_AUTODESK INC_10-K_2013-03-000000', '769397_AUTODESK INC_10-K_2014-03-000000', '769397_AUTODESK INC_10-K_2015-03-000000', '769397_AUTODESK INC_10-K_2016-03-000000', '769397_AUTODESK INC_10-K_2017-03-000000', '769397_AUTODESK INC_10-K_2018-03-000000', '769397_AUTODESK INC_10-Q_2013-06-000000', '769397_AUTODESK INC_10-Q_2013-09-000000', '769397_AUTODESK INC_10-Q_2013-12-000000', '769397_AUTODESK INC_10-Q_2014-06-000000', '769397_AUTODESK INC_10-Q_2014-09-000000', '769397_AUTODESK INC_10-Q_2014-12-000000', '769397_AUTODESK INC_10-Q_2015-05-000000', '769397_AUTODESK INC_10-Q_2015-08-000000', '769397_AUTODESK INC_10-Q_2015-12-000000', '769397_AUTODESK INC_10-Q_2016-06-000000', '769397_AUTODESK INC_10-Q_2016-08-000000', '769397_AUTODESK INC_10-Q_2016-12-000000', '769397_AUTODESK INC_10-Q_2017-05-000000', '769397_AUTODESK INC_10-Q_2017-08-000000', '769397_AUTODESK INC_10-Q_2017-12-000000', '769397_AUTODESK INC_10-Q_2018-06-000000', '769397_AUTODESK INC_10-Q_2018-08-000000']
Content source: cielling/jupyternbs
Similar notebooks: