#include using namespace std; typedef long long int ll; typedef pair P; typedef vector VI; typedef vector VVI; const ll MOD = 1000000007; const ll INF = 1e18; #define REP(i, n) for(int i = 0; i < n; i++) #define ALL(v) v.begin(), v.end() ll power(ll x, ll y) { if (y==0) return 1; else if (y==1) return x%MOD; else if (y%2==0) { ll pow=power(x,y/2); return (pow*pow)%MOD; } else { ll pow=power(x,y/2); return ((pow*pow)%MOD)*x%MOD; } } ll divid(ll x, ll y) { return ((x%MOD)*power(y,MOD-2))%MOD; } int main() { int h, w; cin >> h >> w; VVI a(h,VI(w)); VI fy(h,1), fx(w,1); ll prd=1; REP(i,h)REP(j,w){ cin >> a[i][j]; fy[i]=fy[i]*a[i][j]%MOD; fx[j]=fx[j]*a[i][j]%MOD; prd=prd*a[i][j]%MOD; } int q; cin >> q; int r, c; while(q--){ cin >> r >> c; r--; c--; ll ans=prd; ans=divid(ans,fy[r]); ans=divid(ans,fx[c]); ans=ans*a[r][c]%MOD; cout << ans << endl; } return 0; }