<?php
 namespace blobfolio\wp\wh\vendor\phone\data; class dataCL extends data { const CODE = 'CL'; const PREFIX = 56; const REGION = 'South America'; const PATTERNS = array( '12300\d{6}|6\d{9,10}|[2-9]\d{8}', ); const TYPES = array( '(?:2(?:1962|3(?:2\d\d|300))|80[1-9]\d\d)\d{4}|(?:22|3[2-5]|[47][1-35]|5[1-3578]|6[13-57]|8[1-9]|9[2-9])\d{7}'=>array( 'fixed', 'mobile', ), '(?:123|8)00\d{6}'=>array( 'toll_free', ), '600\d{7,8}'=>array( 'shared_cost', ), '44\d{7}'=>array( 'voip', ), ); const FORMATS = array( '(\d{4})'=>'$1', '(\d{5})(\d{4})'=>'$1 $2', '(\d{2})(\d{3})(\d{4})'=>'$1 $2 $3', '(\d)(\d{4})(\d{4})'=>'$1 $2 $3', '(\d{3})(\d{3})(\d{3,4})'=>'$1 $2 $3', '(\d{4})(\d{3})(\d{4})'=>'$1 $2 $3', '(\d{3})(\d{3})(\d{2})(\d{3})'=>'$1 $2 $3 $4', ); } 