Unix Technical Forum

SEO

vBulletin Search Engine Optimization


Go Back   Unix Technical Forum > Database Server Software > PostgreSQL > pgsql Bugs

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 04-10-2008, 10:29 AM
Harry Liu
 
Posts: n/a
Default BUG #2859: related with BUG #2568: autovacuum locks tables and do nothing


The following bug has been logged online:

Bug reference: 2859
Logged by: Harry Liu
Email address: hliu@mixedsignals.com
PostgreSQL version: 8.1.0
Operating system: Linux sentry145.gpi.local 2.6.17-gentoo-r7-MSI #27 SMP
PREEMPT Wed Dec 6 19:22:31 PST 2006 i686 Intel(R) Pentium(R) 4 CPU 3.20GHz
GenuineIntel GNU/Lin
Description: related with BUG #2568: autovacuum locks tables and do
nothing
Details:

Hi, we encountered similar issue like bug #2568.

After autovacuum finished vacuuming two index on the table, it stops there
when try to vacuum the table itself. (appmgr_alert_log_data)

ShareUpdateExclusiveLock is granted to autovacuum for the table and two
indexes on the table (there are more indexes on that table.)

There are other process trying to access the table at the same time.
One is waiting for rowexclusive lock,
another is waiting for share lock.(in our stored procedure, we explicitly
lock the table in share mode. it is the only table get locked in that stored
procedure/transaction.)

Looks like the share lock approach messed things up (or triggered some
bug?)

Here is the content of pg_locks join with pg_class:
*************************************
transactionid | page | objid | granted | relation | transaction | pid |
mode | locktype | relname
---------------+------+-------+---------+----------+-------------+-------+--
------------------------+---------------+---------------------------------
167615582 | | | t | | 167615582 | 1809 |
ExclusiveLock | transactionid |
| | | t | 1259 | 167615582 | 1809 |
AccessShareLock | relation | pg_class
| | | t | 10342 | 167615582 | 1809 |
AccessShareLock | relation | pg_locks
| | | t | 397073 | 167612689 | 22980 |
AccessShareLock | relation | appmgr_alert_log_data_combo_idx
| | | t | 206237 | 167612689 | 22980 |
AccessShareLock | relation | svc_data
| | | t | 129912 | 167612689 | 22980 |
AccessShareLock | relation | alerts_source_info
| | | t | 129172 | 167612689 | 22980 |
AccessShareLock | relation | program_provider_mappings
| | | t | 129194 | 167612689 | 22980 |
AccessShareLock | relation | xds_data
| | | t | 129877 | 167612689 | 22980 |
AccessShareLock | relation | alerts
| | | t | 337269 | 167612689 | 22980 |
AccessShareLock | relation | super_group
| | | t | 337174 | 167612689 | 22980 |
AccessShareLock | relation | appmgr_alert_log_data
| | | f | 337174 | 167612689 | 22980 |
RowExclusiveLock | relation | appmgr_alert_log_data
| | | t | 129057 | 167612689 | 22980 |
AccessShareLock | relation | programs_pids_lookup
| | | t | 129159 | 167612689 | 22980 |
AccessShareLock | relation | providers
| | | t | 373858 | 167612689 | 22980 |
AccessShareLock | relation | alert_snapshot
| | | t | 129011 | 167612689 | 22980 |
AccessShareLock | relation | programs
| | | t | 129277 | 167612689 | 22980 |
AccessShareLock | relation | bfs_downloads
167612689 | | | t | | 167612689 | 22980 |
ExclusiveLock | transactionid |
| | | f | 337174 | 167612692 | 27793 |
ShareLock | relation | appmgr_alert_log_data
167612692 | | | t | | 167612692 | 27793 |
ExclusiveLock | transactionid |
| | | t | 373656 | 167612690 | 27794 |
ShareUpdateExclusiveLock | relation | appmgr_alert_log_data_pkey
| | | t | 337174 | 167612690 | 27794 |
ShareUpdateExclusiveLock | relation | appmgr_alert_log_data
| | | t | 397073 | 167612690 | 27794 |
ShareUpdateExclusiveLock | relation | appmgr_alert_log_data_combo_idx
167612690 | | | t | | 167612690 | 27794 |
ExclusiveLock | transactionid |
| | | f | 337174 | 167612782 | 27830 |
ShareLock | relation | appmgr_alert_log_data
167612782 | | | t | | 167612782 | 27830 |
ExclusiveLock | transactionid |
167612877 | | | t | | 167612877 | 27860 |
ExclusiveLock | transactionid |
| | | f | 337174 | 167612877 | 27860 |
ShareLock | relation | appmgr_alert_log_data
| | | f | 337174 | 167612963 | 27904 |
ShareLock | relation | appmgr_alert_log_data
167612963 | | | t | | 167612963 | 27904 |
ExclusiveLock | transactionid |
167613049 | | | t | | 167613049 | 27917 |
ExclusiveLock | transactionid |
| | | f | 337174 | 167613049 | 27917 |
ShareLock | relation | appmgr_alert_log_data
167613135 | | | t | | 167613135 | 27938 |
ExclusiveLock | transactionid |
| | | f | 337174 | 167613135 | 27938 |
ShareLock | relation | appmgr_alert_log_data
167613245 | | | t | | 167613245 | 27994 |
ExclusiveLock | transactionid |
| | | f | 337174 | 167613245 | 27994 |
ShareLock | relation | appmgr_alert_log_data
| | | f | 337174 | 167613340 | 28011 |
ShareLock | relation | appmgr_alert_log_data
167613340 | | | t | | 167613340 | 28011 |
ExclusiveLock | transactionid |
167613435 | | | t | | 167613435 | 28055 |
ExclusiveLock | transactionid |
| | | f | 337174 | 167613435 | 28055 |
ShareLock | relation | appmgr_alert_log_data

**************************************

pid 27794 is autovacuum

db log for your reference:
*******************************************
<27793:2006-12-20 22:19:03 PST>LOG: connection received: host=[local]

<27793:2006-12-20 22:19:03 PST>LOG: connection authorized: user=apache
database=previsesentry
<23175:2006-12-20 22:19:03 PST>DEBUG: forked new backend, pid=27793
socket=7
<27793:2006-12-20 22:19:03 PST>LOG: statement: SELECT session_data
FROM php_sessions WHERE session_id = '992f763fe91f1b4ebd00ab2a906a5596'
<27794:2006-12-20 22:19:03 PST>LOG: autovacuum: processing
database "previsesentry"
<27793:2006-12-20 22:19:03 PST>LOG: duration: 53.625 ms

<22980:2006-12-20 22:19:03 PST>LOG: duration: 113.043 ms

<27793:2006-12-20 22:19:03 PST>LOG: statement: SELECT *
FROM describe_table('public', 'sessions')
<22980:2006-12-20 22:19:03 PST>LOG: statement: SELECT
bw5s('1166681938','1166681943','{{4,99,0,0,1,0},{5 ,99,0,0,1,0},{6,99,0,0,1,0
},{7,99,0,0,1,0},{12,7121,1,1,0,0},{13,7121,1,1,0, 0},{14,7121,1,1,0,0},{15,7
121,1,1,0,0},{20,99,1,1,0,0},{21,99,1,1,0,0},{22,9 9,1,1,0,0},{23,99,1,1,0,0}
}','{{880,0},{880,0},{880,0},{880,0},{163,0},{163, 0},{163,0},{163,0}}','{{55
,2647383},{55,2647383},{55,2647383},{55,2647383},{ 3,864046},{3,864046},{3,86
3746},{3,864046}}','{{4094,0},{4094,0},{4094,0},{4 094,0}}','{}');

<27793:2006-12-20 22:19:03 PST>LOG:
duration: 20.946 ms
<27793:2006-12-20 22:19:03 PST>LOG:
statement: SELECT id FROM public.sessions WHERE fingerprint =
'cf39274f8f19a7db6963bacc7a06e7a2' <27794:2006-12-20
22:19:03 PST>DEBUG: autovac: will VACUUM ANALYZE appmgr_alert_log_data

<27793:2006-12-20 22:19:03 PST>LOG: duration: 75.745 ms

<27793:2006-12-20 22:19:03 PST>LOG: statement: SELECT * FROM
public.sessions WHERE id='79371'::int8
<27793:2006-12-20 22:19:03 PST>LOG: duration: 0.654 ms

<27793:2006-12-20 22:19:03 PST>LOG: statement: SELECT *
FROM describe_table('public', 'users')
<22980:2006-12-20 22:19:03 PST>LOG: duration: 102.083
ms
<22980:2006-12-20 22:19:03 PST>LOG: statement:
SELECT
bfs_bitrate_5sec('1166681938','1166681943','{{24,6 ,1},{25,6,1},{26,6,1},{27,
6,1},{28,6,1},{29,6,1}}','{{113,2,8,0,84908},{113, 2,8,0,84908},{113,2,8,0,84
908},{113,2,8,0,84908},{113,2,8,0,84908},{113,2,8, 0,84908}}');
<27793:2006-12-20 22:19:03 PST>LOG: duration:
4.496 ms
<27793:2006-12-20 22:19:03 PST>LOG:
statement: SELECT * FROM public.users WHERE id='4'::int8
<27793:2006-12-20 22:19:03 PST>LOG:
duration: 1.584 ms
<27793:2006-12-20 22:19:03
PST>LOG: statement: SELECT * FROM runtime_info_view
<27793:2006-12-20
22:19:03 PST>LOG: duration: 1.480 ms

<27793:2006-12-20 22:19:03 PST>LOG: statement: SELECT * FROM
system_settings_view
<27793:2006-12-20 22:19:03 PST>LOG: duration: 2.078 ms

<27793:2006-12-20 22:19:03 PST>LOG: statement: SELECT *
FROM ports_view
<22980:2006-12-20 22:19:03 PST>LOG: duration: 19.252
ms
<22980:2006-12-20 22:19:03 PST>LOG: statement:
SELECT
tbl_bw5s('1166681938','1166681943','{{4,99,0,0,0,0 ,1},{5,99,0,0,0,0,1},{6,99
,0,0,0,0,1},{7,99,0,0,0,0,1},{12,7121,0,0,0,0,1},{ 13,7121,0,0,0,0,1},{14,712
1,0,0,0,0,1},{15,7121,0,0,0,0,1},{20,99,0,0,0,0,5} ,{21,99,0,0,0,0,5},{22,99,
0,0,0,0,5},{23,99,0,0,0,0,5}}','{}','{}','{}','{}' ,'{{4094,197,0,114993},{40
94,197,0,114993},{4094,197,0,114993},{4094,197,0,1 14993},{880,252,0,257722},
{880,252,0,257722},{880,252,0,257722},{880,252,0,2 57722},{163,252,0,31808},{
4090,152,0,28168},{4094,194,2395,2052},{4094,195,0 ,899},{4090,197,0,95423},{
163,252,0,31808},{4090,152,0,28168},{4094,194,2395 ,2052},{4094,195,0,899},{4
090,197,0,95423},{163,252,0,31808},{4090,152,0,281 68},{4094,194,2395,2052},{
4094,195,0,899},{4090,197,0,95423},{163,252,0,3180 8},{4090,152,0,28168},{409
4,194,2395,2052},{4094,195,0,899},{4090,197,0,9542 3}}');
<27793:2006-12-20 22:19:03 PST>LOG:
duration: 8.682 ms
<27793:2006-12-20 22:19:03 PST>LOG:
statement: SELECT * FROM appmgr_settings_view;
<27794:2006-12-20 22:19:03
PST>DEBUG: autovac: will ANALYZE port_etr_state_offline
<27794:2006-12-20
22:19:03 PST>DEBUG: autovac: will ANALYZE programs_bandwidth_1min_23935

<27794:2006-12-20 22:19:03 PST>DEBUG: autovac: will ANALYZE
transport_tables_bw_1min_23938
<27794:2006-12-20 22:19:03 PST>DEBUG: autovac: will
ANALYZE pids_bandwidth_5sec_23940
<27794:2006-12-20 22:19:03 PST>DEBUG: autovac:
will ANALYZE bfs_downloads
<27794:2006-12-20 22:19:03 PST>DEBUG:
autovac: will ANALYZE pid_state_offline
<27793:2006-12-20 22:19:03 PST>LOG:
duration: 37.176 ms
<27793:2006-12-20 22:19:03 PST>LOG:
statement: SELECT * FROM system_modules_view;
<22980:2006-12-20 22:19:03
PST>LOG: duration: 111.007 ms

<22980:2006-12-20 22:19:03 PST>LOG: statement: SELECT
alert_state('1166681943','14033','38415','6815','{ {0,1061894,2642,3,600,732}
,{0,1061894,2638,2,600,732},{0,1061894,2634,1,600, 732},{0,1061894,2630,0,600
,732},{1,776080,2688,7,99,1},{1,776080,2673,6,99,1 },{0,1262445,2685,6,99,13}
,{0,1262445,2700,7,99,13},{1,776080,2643,4,99,1},{ 1,776080,2658,5,99,1},{0,1
262445,2670,5,99,13},{0,1262445,2655,4,99,13},{0,1 164271,2855,23,99,12},{0,1
164571,2816,20,99,12},{0,1164271,2842,22,99,12},{0 ,1164571,2829,21,99,12},{0
,1059793,2852,23,99,7},{0,1060093,2813,20,99,7},{0 ,1060093,2826,21,99,7},{0,
1059793,2839,22,99,7}}');
<27794:2006-12-20 22:19:03 PST>DEBUG: vacuuming
"public.appmgr_alert_log_data"
<27793:2006-12-20 22:19:03 PST>LOG: duration: 89.749 ms
<27793:2006-12-20 22:19:03 PST>LOG: statement: SELECT page, script, active,
label FROM pages
<27793:2006-12-20 22:19:03 PST>LOG: duration: 1.003 ms
<27793:2006-12-20 22:19:03 PST>LOG: statement: SELECT
clear_appmgr_alert_log('{{18725808,t,f},{18725809, t,f},{18725812,t,f},{18725
813,t,f},{18725914,t,f},{18725915,t,f},{18725916,t ,f},{18725917,t,f},{187259
94,t,f},{18725995,t,f},{18725996,t,f},{18725997,t, f},{18725998,t,f},{1872599
9,t,f},{18726000,t,f},{18726001,t,f},{18726002,t,f },{18726003,t,f},{18726004
,t,f},{18726005,t,f},{18726010,t,f},{18726011,t,f} ,{18726012,t,f},{18726013,
t,f},{18726014,f,NULL},{18726015,f,NULL},{18726016 ,f,NULL},{18726017,f,NULL}
,{18726018,f,NULL},{18726019,f,NULL},{18726020,f,N ULL},{18726021,f,NULL},{18
726022,f,NULL},{18726023,f,NULL},{18726024,f,NULL} ,{18726025,f,NULL},{187260
26,f,NULL},{18726027,f,NULL},{18726028,f,NULL},{18 726029,f,NULL},{18726030,f
,NULL},{18726031,f,NULL},{18726032,f,NULL},{187260 33,f,NULL},{18726034,f,NUL
L},{18726035,f,NULL},{18726036,f,NULL},{18726037,f ,NULL},{18726038,f,NULL},{
18726039,f,NULL},{18726040,f,NULL},{18726041,f,NUL L},{18726042,f,NULL},{1872
6043,f,NULL},{18726044,f,NULL},{18726045,f,NULL},{ 18726046,f,NULL},{18726047
,f,NULL},{18726048,f,NULL},{18726049,f,NULL},{1872 6050,f,NULL},{18726051,f,N
ULL},{18726052,f,NULL},{18726053,f,NULL},{18726054 ,f,NULL},{18726055,f,NULL}
,{18726056,f,NULL},{18726057,f,NULL},{18726058,f,N ULL},{18726059,f,NULL},{18
726060,f,NULL},{18726061,f,NULL},{18726062,f,NULL} ,{18726063,f,NULL},{187260
64,f,NULL},{18726065,f,NULL},{18726066,f,NULL},{18 726067,f,NULL},{18726068,f
,NULL},{18726069,f,NULL},{18726070,f,NULL},{187260 71,f,NULL},{18726072,f,NUL
L},{18726073,f,NULL},{18726074,f,NULL},{18726075,f ,NULL},{18726076,f,NULL},{
18726077,f,NULL},{18726078,f,f},{18726079,f,f},{18 726080,f,f},{18726081,f,f}
,{18726082,f,f},{18726083,f,f},{18726084,f,f},{187 26085,f,f},{18726086,f,NUL
L},{18726087,f,NULL},{18726088,f,NULL},{18726089,f ,NULL},{18726090,f,f},{187
26091,f,f},{18726092,f,f},{18726093,f,f},{18726094 ,f,f},{18726095,f,f},{1872
6096,f,f},{18726097,f,f},{18726098,f,NULL},{187260 99,f,NULL},{18726100,f,NUL
L},{18726101,f,NULL},{18726102,f,f},{18726103,f,f} ,{18726104,f,f},{18726105,
f,f},{18726106,f,NULL},{18726107,f,NULL},{18726108 ,f,NULL},{18726109,f,NULL}
,{18726110,f,NULL},{18726111,f,NULL},{18726112,f,N ULL},{18726113,f,NULL},{18
726114,f,NULL},{18726115,f,NULL},{18726116,f,NULL} ,{18726117,f,NULL},{187261
18,f,NULL},{18726119,f,NULL},{18726120,f,NULL},{18 726121,f,NULL},{18726122,f
,NULL},{18726123,f,NULL},{18726124,f,NULL},{187261 25,f,NULL},{18726126,f,NUL
L},{18726127,f,NULL},{18726128,f,NULL},{18726129,f ,NULL},{18726130,f,NULL},{
18726131,f,NULL},{18726132,f,NULL},{18726133,f,NUL L},{18726134,f,NULL},{1872
6135,f,NULL},{18726136,f,NULL},{18726137,f,NULL},{ 18726138,f,NULL},{18726139
,f,NULL},{18726140,f,NULL},{18726141,f,NULL},{1872 6142,f,NULL},{18726143,f,N
ULL},{18726144,f,NULL},{18726145,f,NULL},{18726146 ,f,NULL},{18726147,f,NULL}
,{18726148,f,NULL},{18726149,f,NULL},{18726150,f,N ULL},{18726151,f,NULL},{18
726152,f,NULL},{18726153,f,NULL},{18726154,f,NULL} ,{18726155,f,NULL},{187261
56,f,NULL},{18726157,f,NULL},{18726158,f,NULL},{18 726159,f,NULL},{18726160,f
,NULL},{18726161,f,NULL},{18726162,f,NULL},{187261 63,f,NULL},{18726164,f,NUL
L},{18726165,f,NULL},{18726166,f,NULL},{18726167,f ,NULL},{18726168,f,NULL},{
18726169,f,NULL},{18726170,f,NULL},{18726171,f,NUL L},{18726172,f,NULL},{1872
6173,f,NULL},{18726174,f,NULL},{18726175,f,NULL},{ 18726176,f,f},{18726177,f,
f},{18726178,f,NULL},{18726179,f,NULL},{18726180,f ,f},{18726181,f,f},{187261
82,f,f},{18726183,f,f},{18726184,f,f},{18726185,f, f},{18726186,f,f},{1872618
7,f,f},{18726188,f,f},{18726189,f,f}}',0);
<27794:2006-12-20 22:19:03 PST>DEBUG: index "appmgr_alert_log_data_pkey"
now contains 495 row versions in 866 pages
<27794:2006-12-20 22:19:03 PST>DETAIL: 3236 index row versions were
removed.
843 index pages have been deleted, 838 are currently reusable.
CPU 0.00s/0.00u sec elapsed 0.00 sec.
<27794:2006-12-20 22:19:04 PST>DEBUG: index
"appmgr_alert_log_data_combo_idx" now contains 235 row versions in 21 pages
<27794:2006-12-20 22:19:04 PST>DETAIL: 642 index row versions were
removed.
3 index pages have been deleted, 3 are currently reusable.
CPU 0.00s/0.00u sec elapsed 0.20 sec.
<27817:2006-12-20 22:20:01 PST>LOG: connection received: host=[local]
<27817:2006-12-20 22:20:01 PST>LOG: connection authorized: user=postgres
database=previsesentry
<23175:2006-12-20 22:20:01 PST>DEBUG: forked new backend, pid=27817
socket=7
<27817:2006-12-20 22:20:01 PST>LOG: statement: select CASE WHEN
use_absolute_limit THEN 62283 - disk_free_mb_limit ELSE (62283 *
(db_pct_size_limit/100))::int END as db_mb_limit from
system_truncate_settings order by id desc limit 1;
<27817:2006-12-20 22:20:01 PST>LOG: duration: 27.859 ms
<27817:2006-12-20 22:20:01 PST>LOG: disconnection: session time: 0:00:00.03
user=postgres database=previsesentry host=[local]
<23175:2006-12-20 22:20:01 PST>DEBUG: server process (PID 27817) exited
with exit code 0
<27820:2006-12-20 22:20:01 PST>LOG: connection received: host=[local]
<23175:2006-12-20 22:20:01 PST>DEBUG: forked new backend, pid=27820
socket=7
<27820:2006-12-20 22:20:01 PST>LOG: connection authorized: user=postgres
database=previsesentry
<27820:2006-12-20 22:20:01 PST>LOG: statement: select
delete_range_tables();
*********************************

inside the log,
pid 22980 was always there, that's our intension.
it called function alert_state which need rowexclusive lock for
appmgr_alert_log_data.
pid 27793 called function clear_appmgr_alert_log_data, which is trying to
lock appmgr_alert_log_data in share mode.

appmgr_alert_log_data has been inserted/updated/deleted a lot. Several
thousand records will be inserted/updated/deleted every minute, and it has
been like this for weeks.

The database files are not corrupted, we can successfully do other things
not need conflick lock on appmgr_alert_log_data under this lock situation.
Also, after shut down and restart postgres, all tables and content are
fine.

Let me know if you need more information.

Thanks,

Harry Liu

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 04-10-2008, 10:29 AM
Tom Lane
 
Posts: n/a
Default Re: BUG #2859: related with BUG #2568: autovacuum locks tables and do nothing

"Harry Liu" <hliu@mixedsignals.com> writes:
> PostgreSQL version: 8.1.0


> After autovacuum finished vacuuming two index on the table, it stops there
> when try to vacuum the table itself. (appmgr_alert_log_data)


Try a more recent release ... this looks a bit like a problem that we
fixed in 8.1.1.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 09:15 PM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
UnixAdminTalk.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906