#include using namespace std; typedef long long ll; #define REP(i,n) for(int i=0,_n=(int)(n);i<_n;++i) #define ALL(v) (v).begin(),(v).end() #define CLR(t,v) memset(t,(v),sizeof(t)) templateostream& operator<<(ostream& os,const pair&a){return os<<"("<void chmin(T&a,const T&b){if(a>b)a=b;} templatevoid chmax(T&a,const T&b){if(avoid pv(T a,T b){for(T i=a;i!=b;++i)cerr<<(*i)<<" ";cerr<void pv(T a,T b){} #endif ll nextLong() { ll x; scanf("%lld", &x); return x;} int main2() { int N = nextLong(); ll M = nextLong(); vector A(N), dp(N+1); REP(i, N) A[i] = nextLong(); const ll INF = 1LL << 61; for (int n = N-1; n >= 0; n--) { ll val = -INF; chmax(val, A[n] - M - dp[n+1]); if (A[n] > 1) chmax(val, (A[n]-1) - 1 + M + dp[n+1]); dp[n] = val; } ll ans = dp[0]; cout << (ans > 0 ? "First" : "Second") << endl; return 0; } int main() { #ifdef LOCAL for (;!cin.eof();cin>>ws) #endif main2(); return 0; }