#include #include #include // #include #define gc getchar//_unlocked #define pc putchar//_unlocked #define ll long long #define ld long double #define pb push_back #define mp make_pair #define pp pair #define ppl pair #define bigint boost::multiprecision::cpp_int #define finp ios_base::sync_with_stdio(0);cin.tie(0); #define bc __builtin_popcountll #define afor(i,a,b) for(int i=a;i<=b;++i) #define bfor(i,a,b) for(int i=a;i>=b;--i) #define vi vector #define vpp vector #define vll vector using namespace std; using namespace __gnu_pbds; char putnb[20]; void putn(ll n) {if(!n)pc('0');if(n<0)pc('-'),n=0-n;int pi=0;while(n)putnb[pi++]=(n%10)+'0',n/=10;while(pi)pc(putnb[--pi]);} void sci(int *x) {register char c = gc();*x = 0;for(; (c<48)||(c>57);c = gc());for(; (c>47)&&(c<58);c = gc())*x = (int)((((*x)<<1) + ((*x)<<3)) + c - 48);} void scll(ll *x) {register char c = gc();*x = 0;for(; (c<48)||(c>57);c = gc());for(; (c>47)&&(c<58);c = gc())*x = (ll)((((*x)<<1) + ((*x)<<3)) + c - 48);} ll fp(ll a,ll b,ll c) {if(b==0)return 1%c; if(b==1)return a%c; ll ret=fp(a,b/2,c); ret=(ret*ret)%c; if(b&1)ret=(ret*a)%c; return ret;} const ll mod=1e9 +7; const ll mod2=1999999973; const ll inf=1e18; const int infs=1e9 + 1000; const int N=100000; const long double PI = acos(-1); template using ordered_set = tree, rb_tree_tag, tree_order_statistics_node_update>; int main() { finp; int q; cin>>q; while(q--) { vpp v; int n; cin>>n; int minx = infs; int maxx = 0 - infs; int miny = minx; int maxy = maxx; afor(i,1,n) { int x,y; cin>>x>>y; v.pb({x,y}); minx = min(minx,x); miny = min(miny,y); maxx = max(maxx,x); maxy = max(maxy,y); } bool f= true; for(auto i:v) { if(i.first == minx || i.first==maxx || i.second==miny || i.second==maxy)continue; f = false; break; } if(f)cout<<"YES\n"; else cout<<"NO\n"; } return 0; }