The following (technically) works with your dropbox-file. I just excluded your formula from the example.
As https://tex.stackexchange.com/users/9057/schweinebacke mentioned your formula is bigger than the maximum width so you need to introduce line breaks. It is quite easy to find the spots with syntax highlighting.
\documentclass{scrartcl}
\usepackage[paperwidth=16383.99999pt,paperheight=100cm,margin=1in]{geometry}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\begin{document}
\begin{align*}
1=1\forall 1 \\\textup{Your formula here}
\end{align*}
\end{document}
Your might try gather instead of align in case you prefer a centered alignment.
Here is an image of the beauty:

So if anyone knows how to extend \maxdimen, this would be welcomed. Compare What's the absolute largest paper size permissible with pdflatex?.
Note 16383.99999pt*2.54/72.27*cm/pt≈5.75831741726858m.
\maxdimen(about 575.75 cm). So it is greater than the maximum width. – Schweinebacke Jul 17 '17 at 14:46{...}^2do you need to use exactly that input or could such things be marked up as (say)\power{...}{2}which would allow a suitable breakable version to be defined. – David Carlisle Jul 17 '17 at 20:14