import java.io.*;
import java.util.*;
import java.math.BigInteger;
public class Main {
static int N = 100010;
static int mod = (int)(1e9+7);
static int n;
static int[] a = new int[N];
static long[] tr = new long[N];
static int lowbit(int x) {
return x & -x;
}
static void add(int x, long v) {
for(int i=x;i<N;i+=lowbit(i)){
tr[i] += v;
}
}
static long query(int x) {
long res = 0;
for(int i=x;i>0;i-=lowbit(i)) {
res += tr[i];
}
return res;
}
static void solve() {
n = in.nextInt();
long ans = 0, cnt = 1;
for(int i=1;i<=n;i++) {
a[i] = in.nextInt();
add(a[i],1);
ans += i-query(a[i]);
}
for(int i=2;i<n;i++) {
cnt = cnt*2%mod;
}
out.println(ans%mod*cnt%mod);
}
public static void main(String[] args) {
solve();
out.flush();
}
static FastReader in = new FastReader();
static PrintWriter out = new PrintWriter(System.out);
static class FastReader {
static BufferedReader br;
static StringTokenizer st;
FastReader() {
br = new BufferedReader(new InputStreamReader(System.in));
}
String next() {
String str = "";
while (st == null || !st.hasMoreElements()) {
try {
str = br.readLine();
} catch (IOException e) {
throw new RuntimeException(e);
}
st = new StringTokenizer(str);
}
return st.nextToken();
}
int nextInt() {
return Integer.parseInt(next());
}
double nextDouble() {
return Double.parseDouble(next());
}
long nextLong() {
return Long.parseLong(next());
}
}
}