L157
UK Watchdog: Smugglers to Exploit Border if no Brexit Deal
Smugglers and other organized criminals are likely to exploit gaps in border enforcement if Britain leaves the European Union without an agreement, a watchdog warned Wednesday, amid a growing chorus of warnings about the disruptive impact of a "no-deal" Brexit.
Britain is due to leave the EU on March 29, but London and Brussels have not reached an agreement on divorce terms and a smooth transition to a new relationship. The stalemate has heightened fears that the U.K. might leave without a deal in place, leading to chaos at ports and economic turmoil.
The National Audit Office said in a report that political uncertainty and delays in negotiations with the EU have hampered preparations for new border arrangements, and the government is now racing to bolster computer systems, increase staffing and build new infrastructure to track goods.
The office said that 11 of 12 major projects may not be delivered on time or at "acceptable quality," with those who rely on the border "paying the price." It added that "organized criminals and others are likely to be quick to exploit any perceived weaknesses or gaps in the enforcement regime."
"This, combined with the U.K.'s potential loss of access to EU security, law enforcement and criminal justice tools, could create security weaknesses which the government would need to address urgently,'' the office's report said.
Meanwhile, the Financial Times reported that Transport Secretary Chris Grayling had raised at a Cabinet meeting on Tuesday the idea of chartering ships to bring in food and medicines through alternative ports if new customs checks led to gridlock on the main shipping route between Dover in England and Calais in France.
"We remain confident of reaching an agreement with the EU, but it is only sensible for government and industry to prepare for a range of scenarios," the Department for Transport said in a statement.
Prime Minister Theresa May said this week that a divorce deal is "95 percent" done, but the two sides still have a "considerable" gap over the issue of the border between the U.K.'s Northern Ireland and EU member Ireland. Britain and the EU agree there must be no barriers that could disrupt businesses and residents on both sides of the border and undermine Northern Ireland's hard-won peace process. But so far, each side has rejected the other's solution.
May has attempted to break the impasse by suggesting that a post-Brexit transition period, currently due to end in December 2020, could be extended to give more time for new trade and customs arrangements to be put in place that would eliminate the need for border checks.
EU has said it is open to the proposal, but the idea has infuriated May's political opponents on both sides of Britain's Brexit divide.
Pro-Brexit politicians see it as an attempt to bind the country to the bloc indefinitely, while pro-EU politicians say it is a sign of May's weak bargaining hand and an attempt to stall for time.
On Wednesday, May will try to stem a growing revolt within her Conservative Party over her Brexit blueprint. She'll address the 1922 Committee, a grouping of backbench Conservative legislators with a key role in deciding who leads the party.
Under Conservative rules, a vote of no-confidence in the leader is triggered if 15 percent of party lawmakers write to the 1922 Committee requesting one. The required number currently stands at 48; only committee chief Graham Brady knows how many have been submitted.
L157的更多相关文章
- web安全之sql注入布尔注入
条件: 当一个页面,存在注入,没显示位,没有数据库出错信息,只能通过页面返回正常不正常进行判断进行sql注入. 了解的函数 exists() 用于检查 子查询是 ...
- Netty服务端Channel的创建与初始化
Netty创建服务端Channel时,从服务端 ServerBootstrap 类的 bind 方法进入,下图是创建服务端Channel的函数调用链.在后续代码中通过反射的方式创建服务端Channel ...
- WeihanLi.Npoi 1.16.0 Release Notes
WeihanLi.Npoi 1.16.0 Release Notes Intro 最近有网友咨询如何设置单元格样式,在之前的版本中是不支持的,之前主要考虑的是数据,对于导出的样式并没有支持,这个 is ...
- vue2.x核心源码深入浅出,我还是去看源码了
平常的工作就是以vue2.x进行开发,因为我是个实用主义者,以前我就一直觉得,你既然选择了这个框架开发你首先就要先弄懂这玩意怎么用,也就是先熟悉vue语法和各种api,而不是去纠结实现它的原理是什么. ...
随机推荐
- JS类、对象、方法、prototype、_proto_
案例代码: function People(name) { //对象属性 this.name = name; //对象方法 this.Introduce = function() { alert(&q ...
- 20145329 《Java程序设计》课程总结
每周读书笔记链接汇总 •第一周读书笔记 http://www.cnblogs.com/jdy1453/p/5248592.html •第二周读书笔记 http://www.cnblogs.com/jd ...
- eclipse 工程没有build path
项目的.project文件添加: <buildSpec><buildCommand><name>org.eclipse.jdt.core.javabuilder&l ...
- 剑指Offer——最长不包含重复字符的子字符串
Solution 动态规划. f(i)表示包含第i个字符的最长子串. 如果第i个字符没在之前出现过,那么f(i) = f(i - 1) + 1 如果第i个字符在之前出现过,这个时候应该分两种情况,假设 ...
- Lucene 的 Scoring 评分机制
转自: http://www.oschina.net/question/5189_7707 Lucene 评分体系/机制(lucene scoring)是 Lucene 出名的一核心部分.它对用户来 ...
- Linux 实用操作命令
1. ssh远程连接服务器命令 ssh [username@]hostname 2. 查看远程服务器近期登陆记录 last 3. 用户及其主目录的创建 1. useradd –d /home/lb ...
- Grunt Part 1
Grunt Part 1 Objectives and Outcomes In this exercise, you will learn to use Grunt, the task runner. ...
- 关于javascript以及jquery如何打开文件
其实很简单, <input type="file" id="file" mce_style="display:none"> 这个 ...
- 通栏banner自适应各个设备
思路:图片不要设置为div的background,因为你设置了background-size,但是div的height没设置一样没用,除非你搞个js判断,动态刷新. 换一种思路,直接用<img& ...
- 如何高效的使用 Git
-- 代码昨天还是运行好好的今天就不行了. 代码被删了. 突然出现了一个奇怪的 bug,但是没人知道怎么回事. 如果你出现过上面的任何一种情况,那本篇文章就是为你准备的. 除了知道 git add, ...