;==============================================================================
;	$Revision: 1.3 $
;
;	This is an example data import file for Soccer ScoreSheet using the
;	fixed width data format - all data must line up exactly in vertical
;	columns.
;
;	This FIXed example is identical in data content to the SDF.TXT format
;	provided.
;
;	Notes:
;	1) Maximum record (line) width is 80 characters.
;
;	SOCCER.INI settings for this example:
;
;		[Import]
;		Method=0
;		Order=A-B-C-D-E-F
;		FixLenA=3
;		FixLenB=3
;		FixLenC=24
;		FixLenD=2
;		FixLenE=24
;		FixLenF=2
;
;	Field descriptions:
;		The fields are described below in the order in which they appear
;		in the data below, left to right. This order can be changed around
;		by re-configuring the 'Order' parameter above - for example
;		changing to 'CEABDF' would infer the home team name would be
;		followed by the away team name and so on.
;
;		1) Coupon number - if not blank then match is assigned as being
;			a coupon entry
;		2) Match status:
;				0 - not yet played
;				1 - League match
;				2 - Cup #1
;				3 - Cup #2
;				4 - Cup #3
;				5 - VOID
;		3) Home team name
;		4) Home team score
;		5) Away team name
;		6) Away team score
;
;	Data representation (in columns):
;
;		+++++++++1+++++++++2+++++++++3+++++++++4+++++++++5+++++++++6+++++
;		Aaa.Bbb.Cccccccccccccccccccccccc.Dd.Eeeeeeeeeeeeeeeeeeeeeeee.Ff
;
;	In the above representation the capital letter specifies the
;	placeholder for the data item, and the following lower case letters
;	reserve the space in the string for the value. A period '+' should
;	be interpreted here as a space - not read by the application as
;	meaningful data.
;
;==============================================================================
  1   1 Everton                   1 Liverpool                 1
  2   2 Charlton                  1 Athletic                  0
      3 Manchester Utd            2 Manchester City           2
  3   5 Southampton               3 Wimbledon                 3

