<?xml version="1.0" encoding="utf-8" standalone="no"?>
<TfrxReport Version="2023.1.3" DotMatrixReport="False" EngineOptions.NewSilentMode="simReThrow" IniFile="\Software\eStream\SQL Payroll\Fast Reports" PreviewOptions.Buttons="167935" PreviewOptions.Zoom="1" PreviewOptions.PictureCacheInFile="True" PrintOptions.Printer="Default" PrintOptions.PrintOnSheet="0" ReportOptions.CreateDate="39055.5949710648" ReportOptions.Description.Text="Datamap={CE5F27EE-7BD9-432D-8CE9-1E21305D021F}&#13;&#10;GUID={E78D5174-929D-4568-8858-E82840B43AD4}" ReportOptions.LastChange="45146.7711138889" ScriptLanguage="PascalScript" ScriptText.Text="const MaxInt = 2147483647;&#13;&#10;&#13;&#10;function StringReplace(const S, OldPattern, NewPattern: string;&#13;&#10;  iReplaceAll: boolean=true; iIgnoreCase :boolean=true): string;&#13;&#10;var&#13;&#10;  SearchStr, Patt, NewStr: string;&#13;&#10;  Offset: Integer;&#13;&#10;begin&#13;&#10;// Usage StringReplace(&#60;Main.&#34;DOB&#34;&#62;,'/','')&#13;&#10;  if iIgnoreCase then begin&#13;&#10;    SearchStr := UpperCase(S);&#13;&#10;    Patt := UpperCase(OldPattern);&#13;&#10;  end else begin&#13;&#10;    SearchStr := S;&#13;&#10;    Patt := OldPattern;&#13;&#10;  end;&#13;&#10;  NewStr := S;&#13;&#10;  Result := '';&#13;&#10;  while SearchStr &#60;&#62; '' do begin&#13;&#10;    Offset := Pos(Patt, SearchStr);&#13;&#10;    if Offset = 0 then begin&#13;&#10;      Result := Result + NewStr;&#13;&#10;      Break;&#13;&#10;    end;&#13;&#10;    Result := Result + Copy(NewStr, 1, Offset - 1) + NewPattern;&#13;&#10;    NewStr := Copy(NewStr, Offset + Length(OldPattern), MaxInt);&#13;&#10;    if not iReplaceAll then begin&#13;&#10;      Result := Result + NewStr;&#13;&#10;      Break;&#13;&#10;    end;&#13;&#10;    SearchStr := Copy(SearchStr, Offset + Length(Patt), MaxInt);&#13;&#10;  end;&#13;&#10;end;&#13;&#10;&#13;&#10;function ValueOfDeltdStr(const AStr: string; const AIndex: integer): string;&#13;&#10;var S: TStringList;&#13;&#10;begin&#13;&#10;  S := TStringList.Create;&#13;&#10;  try&#13;&#10;    S.Delimiter       := '=';&#13;&#10;    S.DelimitedText   := AStr;&#13;&#10;    if AIndex &#60; S.Count then Result := S[AIndex]&#13;&#10;    else Result := '';&#13;&#10;  finally&#13;&#10;    S.Free;&#13;&#10;  end;&#13;&#10;end;&#13;&#10;&#13;&#10;function GetSectionInfo(const ASection:String):String;&#13;&#10;var lSLi, lSLo, fl : TStringList;&#13;&#10;    i, j : integer;&#13;&#10;    s : string;&#13;&#10;begin&#13;&#10;  lSLi := TStringList.Create;&#13;&#10;  lSLo := TStringList.Create;&#13;&#10;  fl   := TStringList.Create;&#13;&#10;  try&#13;&#10;    lSLi.Text := RichTextToPlainText(&#60;plEMailTpl.&#34;Body&#34;&#62;);&#13;&#10;    //showmessage(lSLi.Text);&#13;&#10;    //showmessage(IntToStr(lSLi.Count));&#13;&#10;    i := -1;&#13;&#10;    while i &#60; lSLi.Count-1 do begin&#13;&#10;      inc(i);&#13;&#10;      if Pos('[', UpperCase(lSLi[i])) &#62; 0 then begin&#13;&#10;        fl.Values[s] := lSLo.Text;&#13;&#10;        s := lSLi[i];&#13;&#10;        Delete(s, 1, 1);//Del [&#13;&#10;        Delete(s, Length(s), 1); //Del ]&#13;&#10;        lSLo.Clear;&#13;&#10;      end else&#13;&#10;        lSLo.Add(lSLi[i]);&#13;&#10;    end;&#13;&#10;    if Trim(lSLo.Text) &#60;&#62; '' then&#13;&#10;      fl.Values[s] := lSLo.Text;&#13;&#10;&#13;&#10;    Result := Trim(fl.Values[ASection]);&#13;&#10;//    showmessage(fl.Values['[Body]']);&#13;&#10;//    showmessage(fl.Values['[PDFName]']);&#13;&#10;  finally&#13;&#10;    lSLi.Free;&#13;&#10;    lSLo.Free;&#13;&#10;    fl.Free;&#13;&#10;  end;&#13;&#10;end;&#13;&#10;&#13;&#10;function GetPvtPassword(const ACode:String):String;&#13;&#10;var lSL : TStringList;&#13;&#10;    i : integer;&#13;&#10;begin&#13;&#10;  lSL := TStringList.Create;&#13;&#10;  try&#13;&#10;    lSL.Text := GetSectionInfo('PrivatePassword');&#13;&#10;    i := -1;&#13;&#10;    while i &#60; lSL.Count-1 do begin&#13;&#10;      inc(i);&#13;&#10;      if ValueOfDeltdStr(lSL[i], 0) = ACode then begin&#13;&#10;        Result := ValueOfDeltdStr(lSL[i], 1);&#13;&#10;        i := lSL.Count-1;&#13;&#10;      end;&#13;&#10;    end;&#13;&#10;  finally&#13;&#10;    lSL.Free;&#13;&#10;  end;&#13;&#10;end;&#13;&#10;&#13;&#10;function GetPassword2:String;&#13;&#10;var s: string;&#13;&#10;begin&#13;&#10;  Result := '';&#13;&#10;  s := GetSectionInfo('UseName2');&#13;&#10;  if s &#60;&#62; '1' then  begin&#13;&#10;    s := GetPvtPassword(&#60;Employee.&#34;Code&#34;&#62;);&#13;&#10;    if Trim(s) = '' then&#13;&#10;      s := GetFldInfo(GetSectionInfo('GlobalPassword'));&#13;&#10;    if Trim(s) &#60;&#62; '' then&#13;&#10;      Result := s;&#13;&#10;  end else&#13;&#10;    Result := Trim(&#60;Employee.&#34;Name2&#34;&#62;);&#13;&#10;end;&#13;&#10;&#13;&#10;&#13;&#10;function GetPassword:String;&#13;&#10;begin&#13;&#10;  if Trim(&#60;Employee.&#34;Name2&#34;&#62;) &#60;&#62; '' then&#13;&#10;    Result := Trim(&#60;Employee.&#34;Name2&#34;&#62;) else&#13;&#10;    Result := &#60;plEMailTpl.&#34;PDFPassWord&#34;&#62;;&#13;&#10;end;&#13;&#10;&#13;&#10;function GetFldInfo(const AStr:String):String;&#13;&#10;var D : TfrxDataSet;&#13;&#10;    nStr : String;&#13;&#10;    lSL,lPL : TStringList;&#13;&#10;    i, j : integer;&#13;&#10;begin&#13;&#10;  nStr := AStr;&#13;&#10;  lSL := TStringList.Create;&#13;&#10;  lPL := TStringList.Create;&#13;&#10;  with lPL do begin //Available Pipeline&#13;&#10;    Add('Main');&#13;&#10;    Add('Profile');&#13;&#10;    Add('Employee');&#13;&#10;    Add('Process');&#13;&#10;    Add('plEMailTpl');&#13;&#10;  end;&#13;&#10;  try&#13;&#10;    for j:=0 to lPL.Count -1 do begin&#13;&#10;      D := Report.GetDataSet(lPL[j]);&#13;&#10;      D.GetFieldList(lSL);&#13;&#10;      for i:=0 to lSL.Count -1 do begin&#13;&#10;        if D.IsBlobField(lSL[i]) then&#13;&#10;          nStr := StringReplace(nStr, '&#60;'+ lPL[j] + '.' + lSL[i] + '&#62;',D.Value(lSL[i])) else&#13;&#10;         nStr := StringReplace(nStr, '&#60;'+ lPL[j] + '.' + lSL[i] + '&#62;',D.DisplayText(lSL[i]));&#13;&#10;      end;&#13;&#10;    end;&#13;&#10;    nStr := StringReplace(nStr, 'GetMonth', GetMonth);&#13;&#10;    nStr := StringReplace(nStr, 'GetTitle', GetTitle);&#13;&#10;    Result := StringReplace(nStr, 'UseNameICPass', UseNameICPass);;&#13;&#10;  finally&#13;&#10;    lSL.Free;&#13;&#10;    lPL.Free;&#13;&#10;  end;&#13;&#10;end;&#13;&#10;&#13;&#10;//For E-Mail Client (Batch)&#13;&#10;procedure OnGetEmailSettings(EmailSettings: TStrings);&#13;&#10;var vEmail, vName: Variant;&#13;&#10;    D1, D2: TfrxDataSet;&#13;&#10;    lSubject : String;&#13;&#10;begin&#13;&#10;  lSubject := GetTitle;&#13;&#10;&#13;&#10;  D1 := Report.GetDataSet('Employee');&#13;&#10;  D2 := Report.GetDataSet('plEMailTpl');&#13;&#10;  vEmail := D1.Value['Email'];&#13;&#10;  if vEmail = Null then vEmail := '';&#13;&#10;&#13;&#10;  vName := D1.Value['Name'];&#13;&#10;  if vName = Null then vName := '';&#13;&#10;&#13;&#10;  if (vName &#60;&#62; '' ) and (vEmail &#60;&#62; '') then begin&#13;&#10;    EmailSettings.Values['Recipients'] := vEmail;&#13;&#10;&#13;&#10;    if D2.RecordCount &#62; 0 then begin&#13;&#10;      EmailSettings.Values['CC']         := GetSectionInfo('CC');//&#60;plEMailTpl.&#34;CC&#34;&#62;;&#13;&#10;      EmailSettings.Values['BCC']        := GetSectionInfo('BCC');//&#60;plEMailTpl.&#34;BCC&#34;&#62;;&#13;&#10;      if Trim(GetSectionInfo('Subject')) &#60;&#62; '' then&#13;&#10;        EmailSettings.Values['Subject']    := GetFldInfo(GetSectionInfo('Subject')) else //&#60;plEMailTpl.&#34;Subject&#34;&#62;); else&#13;&#10;        EmailSettings.Values['Subject']    := lSubject;&#13;&#10;      EmailSettings.Values['Body']       := GetFldInfo(GetSectionInfo('Body'));//RichTextToPlainText(&#60;plEMailTpl.&#34;Body&#34;&#62;));&#13;&#10;      if Trim(GetSectionInfo('PDFFileName')) &#60;&#62; '' then//Trim(&#60;plEMailTpl.&#34;PDFFileName&#34;&#62;) &#60;&#62; '' then&#13;&#10;        EmailSettings.Values['FileName']    := GetFldInfo(GetSectionInfo('PDFFileName'));//&#60;plEMailTpl.&#34;PDFFileName&#34;&#62;);&#13;&#10;      if Trim(GetPassword2) &#60;&#62; '' then&#13;&#10;        EmailSettings.Values['PDFPassword'] := Trim(GetPassword2);&#13;&#10;    end else begin&#13;&#10;      EmailSettings.Values['Recipients'] := vEmail;&#13;&#10;      EmailSettings.Values['Subject']    := lSubject;&#13;&#10;      EmailSettings.Values['Body']       := 'Dear Sir/Madam,' + #13#10 +&#13;&#10;                                            'Please check the attachment for ' + lSubject + #13#10#13#10 +&#13;&#10;                                            'Best Regards,' + #13#10 +&#13;&#10;                                            &#60;Profile.&#34;CompanyName&#34;&#62;;&#13;&#10;    end;&#13;&#10;  end;&#13;&#10;  //ID uses for display on progress dialog&#13;&#10;  EmailSettings.Values['ID']        := vName;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure Setup;&#13;&#10;var SQL : String;&#13;&#10;begin&#13;&#10;  SQL := 'SELECT Mobile As Subject, Note As Body, '+&#13;&#10;         'Phone1 As CC, Phone2 As BCC, Name2 As PDFPassWord, Address4 As PDFFileName ' +&#13;&#10;         'FROM HR_Emp  ' +&#13;&#10;         'WHERE Code=''EMAIL'' ';&#13;&#10;  AddDataSet('plEMailTpl', ['Subject', 'Body', 'PDFPassWord', 'PDFFileName', 'CC', 'BCC'])&#13;&#10;  .GetDBData(SQL);&#13;&#10;&#13;&#10;  SQL := 'SELECT Employee, Sum(Cast(LeaveDay As REAL)) TLeaveDay FROM UnpaidLeave ' +&#13;&#10;         'GROUP BY Employee';&#13;&#10;  AddDataSet('plTLeaveDay', ['Employee', 'TLeaveDay'])&#13;&#10;  .GetLocalData(SQL)&#13;&#10;  .SetDisplayFormat(['TLeaveDay'],&#60;Option.&#34;DayDisplayFormat&#34;&#62;)&#13;&#10;  .LinkTo('Main', 'Employee', 'Employee');&#13;&#10;&#13;&#10;  SQL := 'SELECT Employee, Entitle, BFDays, YTD, Taken, Balance FROM Leave ' +&#13;&#10;         ' WHERE LeaveType = ''AL'' ';&#13;&#10;  AddDataSet('pl_Leave', ['Employee', 'Entitle', 'BFDays', 'YTD', 'Taken', 'Balance'])&#13;&#10;  .GetLocalData(SQL)&#13;&#10;  .LinkTo('Main', 'Employee', 'Employee');&#13;&#10;end;&#13;&#10;&#13;&#10;function GetMonth:String;&#13;&#10;var lPYear : string;&#13;&#10;begin&#13;&#10;  lPYear := IntToStr(&#60;Process.&#34;PayYear&#34;&#62;);&#13;&#10;  case &#60;Process.&#34;PayMonth&#34;&#62; of&#13;&#10;    1: Result := 'JAN ' + lPYear;&#13;&#10;    2: Result := 'FEB ' + lPYear;&#13;&#10;    3: Result := 'MAR ' + lPYear;&#13;&#10;    4: Result := 'APR ' + lPYear;&#13;&#10;    5: Result := 'MAY ' + lPYear;&#13;&#10;    6: Result := 'JUNE '+ lPYear;&#13;&#10;    7: Result := 'JULY '+ lPYear;&#13;&#10;    8: Result := 'AUG ' + lPYear;&#13;&#10;    9: Result := 'SEPT '+ lPYear;&#13;&#10;   10: Result := 'OCT ' + lPYear;&#13;&#10;   11: Result := 'NOV ' + lPYear;&#13;&#10;   12: Result := 'DEC ' + lPYear;&#13;&#10; end;&#13;&#10;end;&#13;&#10;&#13;&#10;function GetTitle:String;&#13;&#10;begin&#13;&#10;  Result := 'Payslip For ' + GetMonth;&#13;&#10;end;&#13;&#10;&#13;&#10;function UseNameICPass:String;&#13;&#10;var lPass: String;&#13;&#10;begin&#13;&#10;  lPass := UpperCase(Copy(&#60;Employee.&#34;Name&#34;&#62;, 1, 1)) + '@';&#13;&#10;  if Trim(&#60;Employee.&#34;NewIC&#34;&#62;) &#60;&#62; '' then&#13;&#10;    lPass := lPass + Copy(&#60;Employee.&#34;NewIC&#34;&#62;, Length(&#60;Employee.&#34;NewIC&#34;&#62;)-5, 6) else&#13;&#10;    lPass := lPass + Copy(&#60;Employee.&#34;Passport&#34;&#62;, Length(&#60;Employee.&#34;Passport&#34;&#62;)-5, 6);&#13;&#10;&#13;&#10; Result := lPass;&#13;&#10;end;&#13;&#10;&#13;&#10;procedure MasterData1OnBeforePrint(Sender: TfrxComponent);&#13;&#10;begin&#13;&#10; MmPayPeriod.Text := GetTitle;&#13;&#10;&#13;&#10; if Trim(&#60;Employee.&#34;NewIC&#34;&#62;) &#60;&#62; '' then&#13;&#10;   MmEEName.Text := '  NAME : ' + &#60;Employee.&#34;Name&#34;&#62; + ' (I/C NO : ' + FormatMaskText('000000-00-0000;0;',&#60;Employee.&#34;NewIC&#34;&#62;) + ')' else&#13;&#10;   MmEEName.Text := '  NAME : ' + &#60;Employee.&#34;Name&#34;&#62; + ' (PASSPORT NO : ' + &#60;Employee.&#34;Passport&#34;&#62; + ')';&#13;&#10;end;&#13;&#10;&#13;&#10;procedure MmMTDBalOnBeforePrint(Sender: TfrxComponent);&#13;&#10;Var  EJY, EJM, PorateDay,  BalM, PayMonth, A  : Variant;&#13;&#10;begin&#13;&#10;    EJY := Yearof(&#60;Employee.&#34;JoinDate&#34;&#62;);&#13;&#10;&#13;&#10; if &#60;Leave.&#34;LeaveType&#34;&#62; = 'AL' then begin&#13;&#10;    if EJY = &#60;Process.&#34;PayYear&#34;&#62; then begin&#13;&#10;       EJM       := MonthOf(&#60;Employee.&#34;JoinDate&#34;&#62;);&#13;&#10;       BalM      := 12-EJM + 1;&#13;&#10;       PayMonth  := &#60;Process.&#34;PayMonth&#34;&#62; - EJM + 1;&#13;&#10;       PorateDay := simpleroundto((&#60;pl_Leave.&#34;Entitle&#34;&#62; * PayMonth / BalM), -2) + &#60;pl_Leave.&#34;BFDays&#34;&#62;;&#13;&#10;       MmMTDBal.Text := FormatFloat('#,0.00;-#,0.00',porateDay - &#60;pl_Leave.&#34;YTD&#34;&#62;  );&#13;&#10;    end else begin&#13;&#10;       A := simpleroundto(( &#60;pl_Leave.&#34;Entitle&#34;&#62; / 12 *  &#60;Process.&#34;PayMonth&#34;&#62;),-2);&#13;&#10;       PorateDay := (&#60;pl_Leave.&#34;BFDays&#34;&#62; + A) - simpleroundto(&#60;pl_Leave.&#34;YTD&#34;&#62;,-2);&#13;&#10;       MmMTDBal.Text := FormatFloat('#,0.00;-#,0.00',porateDay );&#13;&#10;    end;&#13;&#10; end else&#13;&#10;    MmMTDBal.Text :=  FormatFloat('#,0.00;-#,0.00',&#60;Leave.&#34;Balance&#34;&#62;);&#13;&#10;end;&#13;&#10;&#13;&#10;begin&#13;&#10;&#13;&#10;end.">
  <Datasets>
    <item DataSet="Main" DataSetName="Main"/>
    <item DataSet="Process" DataSetName="Process"/>
    <item DataSet="PTInfo" DataSetName="PTInfo"/>
    <item DataSet="MTD" DataSetName="MTD"/>
    <item DataSet="MTDPaid" DataSetName="MTDPaid"/>
    <item DataSet="YTD" DataSetName="YTD"/>
    <item DataSet="Wages" DataSetName="Wages"/>
    <item DataSet="Allowance" DataSetName="Allowance"/>
    <item DataSet="Overtime" DataSetName="Overtime"/>
    <item DataSet="OvertimeSummary" DataSetName="OvertimeSummary"/>
    <item DataSet="Commission" DataSetName="Commission"/>
    <item DataSet="Claim" DataSetName="Claim"/>
    <item DataSet="PaidLeave" DataSetName="PaidLeave"/>
    <item DataSet="Director" DataSetName="Director"/>
    <item DataSet="Bonus" DataSetName="Bonus"/>
    <item DataSet="AdvancePaid" DataSetName="AdvancePaid"/>
    <item DataSet="Compensation" DataSetName="Compensation"/>
    <item DataSet="Loan" DataSetName="Loan"/>
    <item DataSet="Deduction" DataSetName="Deduction"/>
    <item DataSet="CP38" DataSetName="CP38"/>
    <item DataSet="UnpaidLeave" DataSetName="UnpaidLeave"/>
    <item DataSet="AdvanceDeduct" DataSetName="AdvanceDeduct"/>
    <item DataSet="TaxBenefit" DataSetName="TaxBenefit"/>
    <item DataSet="TaxDeduction" DataSetName="TaxDeduction"/>
    <item DataSet="Leave" DataSetName="Leave"/>
    <item DataSet="LeaveAttendance" DataSetName="LeaveAttendance"/>
    <item DataSet="LeaveAttendanceHeader" DataSetName="LeaveAttendanceHeader"/>
    <item DataSet="OutstandingLoan" DataSetName="OutstandingLoan"/>
    <item DataSet="Parameter" DataSetName="Parameter"/>
    <item DataSet="Employee" DataSetName="Employee"/>
    <item DataSet="Bank" DataSetName="Bank"/>
    <item DataSet="System" DataSetName="System"/>
    <item DataSet="Profile" DataSetName="Profile"/>
    <item DataSet="User" DataSetName="User"/>
    <item DataSet="Option" DataSetName="Option"/>
  </Datasets>
  <TfrxDataPage Name="Data" HGuides.Text="" VGuides.Text="" Height="1000" Left="0" Top="0" Width="1000"/>
  <TfrxReportPage Name="Page1" HGuides.Text="" VGuides.Text="" PaperWidth="215.9" PaperHeight="139.7" PaperSize="256" LeftMargin="1.3" RightMargin="2.5" TopMargin="2.5" BottomMargin="2.5" ColumnWidth="0" ColumnPositions.Text="" Frame.Typ="0" LargeDesignHeight="True" MirrorMode="0">
    <TfrxMasterData Name="MasterData1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Height="468.66172" Left="0" ParentFont="False" Top="18.89765" Width="801.638313" OnBeforePrint="MasterData1OnBeforePrint" ColumnWidth="0" ColumnGap="0" DataSet="Main" DataSetName="Main" RowCount="0" Stretched="True">
      <TfrxMemoView Name="MmPayPeriod" AllowVectorExport="True" Left="661.41775" Top="37.7953" Width="109.60637" Height="49.13389" StretchMode="smActualHeight" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-16" Font.Name="Tahoma" Font.Style="1" Frame.Typ="0" Fill.BackColor="16777215" HAlign="haRight" ParentFont="False" Text=""/>
      <TfrxPictureView Name="Picture1" AllowVectorExport="True" Left="15.11812" Top="11.33859" Width="90.70872" Height="79.37013" Center="True" DataField="Logo" DataSet="Profile" DataSetName="Profile" Frame.Typ="0" HightQuality="False" Transparent="False" TransparentColor="16777215"/>
      <TfrxShapeView Name="Shape1" AllowVectorExport="True" Left="105.82684" Top="37.7953" Width="555.59091" Height="49.13389" Frame.Typ="0" Shape="skRoundRectangle"/>
      <TfrxMemoView Name="MmEEName" AllowVectorExport="True" Left="105.82684" Top="37.7953" Width="404.40971" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="  NAME : , I/C NO"/>
      <TfrxMemoView Name="Memo5" AllowVectorExport="True" Left="105.82684" Top="52.91342" Width="211.65368" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="  DEPT :  [Employee.&#34;Department&#34;]"/>
      <TfrxMemoView Name="Memo6" AllowVectorExport="True" Left="510.23655" Top="37.7953" Width="151.1812" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="SOCSO : [Employee.&#34;SOCSONo&#34;]"/>
      <TfrxMemoView Name="Memo7" AllowVectorExport="True" Left="510.23655" Top="52.91342" Width="151.1812" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="EPF : [Employee.&#34;EPFNo&#34;]"/>
      <TfrxMemoView Name="Memo8" AllowVectorExport="True" Left="510.23655" Top="68.03154" Width="151.1812" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="TAX : [Employee.&#34;TaxNo&#34;]"/>
      <TfrxMemoView Name="Memo11" AllowVectorExport="True" Left="105.82684" Top="68.03154" Width="211.65368" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="  BANK A/C NO : [Employee.&#34;BankAccNo&#34;]"/>
      <TfrxSubreport Name="Subreport1" AllowVectorExport="True" Left="11.33859" Top="265.68522" Width="389.29159" Height="75.5906" Page="Page2" PrintOnParent="True"/>
      <TfrxLineView Name="Line1" AllowVectorExport="True" Left="11.33859" Top="344.05535" Width="759.68553" Height="0" Color="0" Frame.Typ="4" Frame.Width="2"/>
      <TfrxMemoView Name="Memo17" AllowVectorExport="True" Left="124.72449" Top="343.93723" Width="64.25201" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="10" GapY="3" HAlign="haCenter" ParentFont="False" Text="EPF ee"/>
      <TfrxMemoView Name="Memo18" AllowVectorExport="True" Left="188.9765" Top="343.93723" Width="64.25201" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="10" Frame.RightLine.Width="2" GapY="3" HAlign="haCenter" ParentFont="False" Text="EPF er"/>
      <TfrxMemoView Name="Memo22" AllowVectorExport="True" Left="60.47248" Top="343.93723" Width="64.25201" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="10" Frame.RightLine.Width="2" GapY="3" HAlign="haCenter" ParentFont="False" Text="PCB"/>
      <TfrxMemoView Name="Memo23" AllowVectorExport="True" Left="124.72449" Top="370.39394" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTD.&#34;MTDEmployeeEPF&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo24" AllowVectorExport="True" Left="253.22851" Top="370.39394" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTD.&#34;MTDEmployeeSOCSO&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo25" AllowVectorExport="True" Left="60.47248" Top="370.39394" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" Frame.RightLine.Width="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10; -1*(&#60;MTD.&#34;MTDPCB&#34;&#62; +&#13;&#10;      &#60;MTD.&#34;MTDPCB_Bonus&#34;&#62; +&#13;&#10;      &#60;MTD.&#34;MTDPCB_Director&#34;&#62; + &#13;&#10;      &#60;MTD.&#34;MTDPCB_Additional&#34;&#62;))]"/>
      <TfrxMemoView Name="Memo26" AllowVectorExport="True" Left="188.9765" Top="370.39394" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" Frame.RightLine.Width="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTD.&#34;MTDEmployerEPF&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo27" AllowVectorExport="True" Left="317.48052" Top="370.39394" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" Frame.RightLine.Width="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTD.&#34;MTDEmployerSOCSO&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo30" AllowVectorExport="True" Left="15.11812" Top="88.48825" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haCenter" ParentFont="False" Text="Earnings"/>
      <TfrxMemoView Name="Memo31" AllowVectorExport="True" Left="139.84261" Top="88.48825" Width="68.03154" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="RM"/>
      <TfrxMemoView Name="Memo32" AllowVectorExport="True" Left="15.11812" Top="103.3859" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="Basic Salary"/>
      <TfrxMemoView Name="Memo33" AllowVectorExport="True" Left="139.84261" Top="103.3859" Width="68.03154" Height="15.11812" DataField="Wages" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[Main.&#34;Wages&#34;]"/>
      <TfrxMemoView Name="Memo34" AllowVectorExport="True" Left="15.11812" Top="133.50402" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;Allowance&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Allowance"/>
      <TfrxMemoView Name="Memo35" AllowVectorExport="True" Left="139.84261" Top="133.50402" Width="68.03154" Height="15.11812" DataField="Allowance" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;Allowance&#34;]"/>
      <TfrxMemoView Name="Memo36" AllowVectorExport="True" Left="15.11812" Top="148.62214" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;Overtime&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Over time"/>
      <TfrxMemoView Name="Memo37" AllowVectorExport="True" Left="139.84261" Top="148.62214" Width="68.03154" Height="15.11812" DataField="Overtime" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;Overtime&#34;]"/>
      <TfrxMemoView Name="Memo38" AllowVectorExport="True" Left="15.11812" Top="163.74026" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;Commission&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Commission"/>
      <TfrxMemoView Name="Memo39" AllowVectorExport="True" Left="139.84261" Top="163.74026" Width="68.03154" Height="15.11812" DataField="Commission" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;Commission&#34;]"/>
      <TfrxMemoView Name="Memo40" AllowVectorExport="True" Left="15.11812" Top="193.9765" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;Bonus&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Bonus"/>
      <TfrxMemoView Name="Memo41" AllowVectorExport="True" Left="139.84261" Top="193.9765" Width="68.03154" Height="15.11812" DataField="Bonus" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;Bonus&#34;]"/>
      <TfrxMemoView Name="Memo42" AllowVectorExport="True" Left="15.11812" Top="209.09462" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;Director&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Director Fee"/>
      <TfrxMemoView Name="Memo43" AllowVectorExport="True" Left="139.84261" Top="209.09462" Width="68.03154" Height="15.11812" DataField="Director" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;Director&#34;]"/>
      <TfrxMemoView Name="Memo44" AllowVectorExport="True" Left="15.11812" Top="224.21274" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;PaidLeave&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Paid Leave"/>
      <TfrxMemoView Name="Memo45" AllowVectorExport="True" Left="139.84261" Top="224.21274" Width="68.03154" Height="15.11812" DataField="PaidLeave" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;PaidLeave&#34;]"/>
      <TfrxMemoView Name="Memo48" AllowVectorExport="True" Left="15.11812" Top="248.11039" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="Total Earning"/>
      <TfrxMemoView Name="Memo49" AllowVectorExport="True" Left="139.84261" Top="248.11039" Width="68.03154" Height="15.11812" DataField="GrossPay" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;GrossPay&#34;]"/>
      <TfrxMemoView Name="Memo50" AllowVectorExport="True" Left="220.14997" Top="88.48825" Width="128.50402" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haCenter" ParentFont="False" Text="Deductions"/>
      <TfrxMemoView Name="Memo51" AllowVectorExport="True" Left="348.65399" Top="88.48825" Width="68.03154" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="RM"/>
      <TfrxMemoView Name="Memo52" AllowVectorExport="True" Left="220.14997" Top="103.3859" Width="128.50402" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;EmployeeEPF&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="EPF Employee"/>
      <TfrxMemoView Name="Memo53" AllowVectorExport="True" Left="348.65399" Top="103.3859" Width="68.03154" Height="15.11812" DataField="EmployeeEPF" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;EmployeeEPF&#34;]"/>
      <TfrxMemoView Name="Memo54" AllowVectorExport="True" Left="220.14997" Top="118.94496" Width="128.50402" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;EmployeeSOCSO&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="SOCSO Employee"/>
      <TfrxMemoView Name="Memo55" AllowVectorExport="True" Left="348.65399" Top="118.94496" Width="68.03154" Height="15.11812" DataField="EmployeeSOCSO" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;EmployeeSOCSO&#34;]"/>
      <TfrxMemoView Name="Memo56" AllowVectorExport="True" Left="220.14997" Top="149.50402" Width="128.50402" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;PCB&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Income Tax PCB"/>
      <TfrxMemoView Name="Memo57" AllowVectorExport="True" Left="348.65399" Top="149.50402" Width="68.03154" Height="15.11812" DataField="PCB" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;PCB&#34;]"/>
      <TfrxMemoView Name="Memo58" AllowVectorExport="True" Left="220.14997" Top="164.62214" Width="128.50402" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;CP38&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Income Tax CP 38"/>
      <TfrxMemoView Name="Memo59" AllowVectorExport="True" Left="348.65399" Top="164.62214" Width="68.03154" Height="15.11812" DataField="CP38" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;CP38&#34;]"/>
      <TfrxMemoView Name="Memo60" AllowVectorExport="True" Left="220.14997" Top="179.74026" Width="128.50402" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;UnpaidLeave&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Unpaid Leave([plTLeaveDay.&#34;TLeaveDay&#34;] d)"/>
      <TfrxMemoView Name="Memo61" AllowVectorExport="True" Left="348.65399" Top="179.74026" Width="68.03154" Height="15.11812" DataField="UnpaidLeave" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;UnpaidLeave&#34;]"/>
      <TfrxMemoView Name="Memo62" AllowVectorExport="True" Left="220.14997" Top="194.85838" Width="128.50402" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;Deduction&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Deduction"/>
      <TfrxMemoView Name="Memo63" AllowVectorExport="True" Left="348.65399" Top="194.85838" Width="68.03154" Height="15.11812" DataField="Deduction" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;Deduction&#34;]"/>
      <TfrxMemoView Name="Memo64" AllowVectorExport="True" Left="220.14997" Top="209.9765" Width="128.50402" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;AdvanceDeduct&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Advance"/>
      <TfrxMemoView Name="Memo65" AllowVectorExport="True" Left="348.65399" Top="209.9765" Width="68.03154" Height="15.11812" DataField="AdvanceDeduct" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;AdvanceDeduct&#34;]"/>
      <TfrxMemoView Name="Memo66" AllowVectorExport="True" Left="220.14997" Top="225.09462" Width="128.50402" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;Loan&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Loan"/>
      <TfrxMemoView Name="Memo67" AllowVectorExport="True" Left="348.65399" Top="225.09462" Width="68.03154" Height="15.11812" DataField="Loan" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;Loan&#34;]"/>
      <TfrxMemoView Name="Memo68" AllowVectorExport="True" Left="317.48052" Top="419.52783" Width="86.92919" Height="26.45671" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Tahoma" Font.Style="1" Frame.Typ="13" Frame.BottomLine.Style="fsDouble" ParentFont="False" VAlign="vaCenter" Text=" Net Pay"/>
      <TfrxMemoView Name="Memo69" AllowVectorExport="True" Left="404.40971" Top="419.52783" Width="105.82684" Height="26.45671" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-13" Font.Name="Tahoma" Font.Style="1" Frame.Typ="12" Frame.BottomLine.Style="fsDouble" HAlign="haRight" HideZeros="True" ParentFont="False" VAlign="vaCenter" Text="RM [FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;, &#60;Main.&#34;NetPay&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo13" AllowVectorExport="True" Left="220.14997" Top="248.11039" Width="128.50402" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="Total Deduction"/>
      <TfrxMemoView Name="Memo14" AllowVectorExport="True" Left="348.65399" Top="248.11039" Width="68.03154" Height="15.11812" DataField="GrossDeduction" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;GrossDeduction&#34;]"/>
      <TfrxLineView Name="Line2" AllowVectorExport="True" Left="215.43321" Top="88.48825" Width="0" Height="177.63791" Color="0" Frame.Typ="0" Diagonal="True"/>
      <TfrxLineView Name="Line3" AllowVectorExport="True" Left="425.37044" Top="88.48825" Width="0" Height="177.63791" Color="0" Frame.Typ="0" Frame.Width="2" Diagonal="True"/>
      <TfrxLineView Name="Line4" AllowVectorExport="True" Left="15.11812" Top="264.90569" Width="755.906" Height="0" Color="0" Frame.Typ="0" Diagonal="True"/>
      <TfrxSubreport Name="Subreport2" AllowVectorExport="True" Left="400.63018" Top="265.68522" Width="370.39394" Height="75.5906" Page="Page3" PrintOnParent="True"/>
      <TfrxLineView Name="Line5" AllowVectorExport="True" Left="400.63018" Top="263.90569" Width="0" Height="79.37013" Color="0" Frame.Typ="0" Diagonal="True"/>
      <TfrxSubreport Name="Subreport3" AllowVectorExport="True" Left="427.08689" Top="88.48825" Width="343.93723" Height="18.89765" Page="Page4"/>
      <TfrxMemoView Name="Memo83" AllowVectorExport="True" Left="124.72449" Top="381.73253" Width="64.25201" Height="15.11812" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;YTD.&#34;YTDEmployeeEPF&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo84" AllowVectorExport="True" Left="253.22851" Top="381.73253" Width="64.25201" Height="15.11812" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;YTD.&#34;YTDEmployeeSOCSO&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo85" AllowVectorExport="True" Left="60.47248" Top="381.73253" Width="64.25201" Height="15.11812" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" Frame.RightLine.Width="2" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*(&#60;YTD.&#34;YTDPCB&#34;&#62; + &#60;YTD.&#34;YTDPCB_Bonus&#34;&#62; +&#13;&#10;    &#60;YTD.&#34;YTDPCB_Director&#34;&#62;+&#60;YTD.&#34;YTDPCB_Additional&#34;&#62;))]"/>
      <TfrxMemoView Name="Memo86" AllowVectorExport="True" Left="188.9765" Top="381.73253" Width="64.25201" Height="15.11812" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" Frame.RightLine.Width="2" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;YTD.&#34;YTDEmployerEPF&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo87" AllowVectorExport="True" Left="317.48052" Top="381.73253" Width="64.25201" Height="15.11812" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" Frame.RightLine.Width="2" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;YTD.&#34;YTDEmployerSOCSO&#34;&#62;)]"/>
      <TfrxLineView Name="Line7" AllowVectorExport="True" Left="510.23655" Top="344.05535" Width="0" Height="102.04731" Color="0" Frame.Typ="0" Diagonal="True"/>
      <TfrxMemoView Name="Memo93" AllowVectorExport="True" Left="510.23655" Top="376.73253" Width="105.82684" Height="18.89765" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text=" APPROVED BY :"/>
      <TfrxMemoView Name="Memo94" AllowVectorExport="True" Left="510.23655" Top="419.52783" Width="105.82684" Height="26.45671" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" VAlign="vaCenter" Text=" RECEIVED BY :"/>
      <TfrxLineView Name="Line8" AllowVectorExport="True" Left="616.06339" Top="395.63018" Width="154.96073" Height="0" Color="0" Frame.Typ="4"/>
      <TfrxLineView Name="Line9" AllowVectorExport="True" Left="616.06339" Top="445.98454" Width="154.96073" Height="0" Color="0" Frame.Typ="4"/>
      <TfrxMemoView Name="Memo96" AllowVectorExport="True" Left="11.33859" Top="445.98454" Width="759.68553" Height="22.67718" StretchMode="smActualHeight" DataField="Message" DataSet="Parameter" DataSetName="Parameter" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" WordWrap="False" Text="[Parameter.&#34;Message&#34;]"/>
      <TfrxRichView Name="Rich1" AllowVectorExport="True" Left="105.82684" Top="15.89765" Width="665.19728" Height="18.89765" Frame.Typ="0" GapX="2" GapY="1" PropData="0852696368456469740A130100007B5C727466315C616E73695C616E7369637067313235325C64656666305C6E6F7569636F6D7061745C6465666C616E67313033337B5C666F6E7474626C7B5C66305C666E696C5C666368617273657430205461686F6D613B7D7B5C66315C666E696C205461686F6D613B7D7D0D0A7B5C2A5C67656E657261746F722052696368656432302031302E302E32323030307D5C766965776B696E64345C756331200D0A5C706172645C625C66305C6673323420205C6631205B3C50726F66696C652E22436F6D70616E794E616D65223E5D5C663020205C62305C6673313420285B5C6631203C50726F66696C652E2252656769737465724E6F223E5C6630205D295C625C66315C667332345C7061720D0A7D0D0A00"/>
      <TfrxMemoView Name="Memo2" AllowVectorExport="True" Left="317.48052" Top="52.91342" Width="192.75603" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="EMPLOYEE NO : [Employee.&#34;Code&#34;]  "/>
      <TfrxMemoView Name="Memo9" AllowVectorExport="True" Left="15.11812" Top="178.85838" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;Claim&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Claim"/>
      <TfrxMemoView Name="Memo10" AllowVectorExport="True" Left="139.84261" Top="178.85838" Width="68.03154" Height="15.11812" DataField="Claim" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;Claim&#34;]"/>
      <TfrxMemoView Name="Memo114" AllowVectorExport="True" Left="60.47248" Top="359.05535" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" Frame.RightLine.Width="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10; -1*(&#60;MTDPaid.&#34;MTDPCB&#34;&#62; + &#13;&#10;      &#60;MTDPaid.&#34;MTDPCB_Bonus&#34;&#62; +&#13;&#10;      &#60;MTDPaid.&#34;MTDPCB_Director&#34;&#62; +&#13;&#10;      &#60;MTDPaid.&#34;MTDPCB_Additional&#34;&#62;))]"/>
      <TfrxMemoView Name="Memo19" AllowVectorExport="True" Left="253.22851" Top="343.93723" Width="64.25201" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="10" GapY="3" HAlign="haCenter" ParentFont="False" Text="SOCSO ee"/>
      <TfrxMemoView Name="Memo28" AllowVectorExport="True" Left="317.48052" Top="343.93723" Width="64.25201" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="10" Frame.RightLine.Width="2" GapY="3" HAlign="haCenter" ParentFont="False" Text="SOCSO er"/>
      <TfrxMemoView Name="Memo29" AllowVectorExport="True" Left="124.72449" Top="359.05535" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTDPaid.&#34;MTDEmployeeEPF&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo115" AllowVectorExport="True" Left="253.22851" Top="359.05535" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTDPaid.&#34;MTDEmployeeSOCSO&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo116" AllowVectorExport="True" Left="188.9765" Top="359.05535" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" Frame.RightLine.Width="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTDPaid.&#34;MTDEmployerEPF&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo117" AllowVectorExport="True" Left="317.48052" Top="359.05535" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" Frame.RightLine.Width="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTDPaid.&#34;MTDEmployerSOCSO&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo20" AllowVectorExport="True" Left="7.55906" Top="370.39394" Width="52.91342" Height="11.33859" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="Current Mth"/>
      <TfrxMemoView Name="Memo21" AllowVectorExport="True" Left="11.33859" Top="359.05535" Width="49.13389" Height="11.33859" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="Mid. Paid"/>
      <TfrxMemoView Name="Memo89" AllowVectorExport="True" Left="11.33859" Top="381.73253" Width="49.13389" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="YTD"/>
      <TfrxMemoView Name="Memo15" AllowVectorExport="True" Left="15.11812" Top="118.94496" Width="124.72449" Height="15.11812" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;AdvancePaid&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="Advance"/>
      <TfrxMemoView Name="Memo16" AllowVectorExport="True" Left="139.84261" Top="118.94496" Width="68.03154" Height="15.11812" DataField="AdvancePaid" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;AdvancePaid&#34;]"/>
      <TfrxMemoView Name="Memo4" AllowVectorExport="True" Left="220.14997" Top="134.06308" Width="128.50402" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" Highlight.Font.Charset="1" Highlight.Font.Color="16777215" Highlight.Font.Height="-11" Highlight.Font.Name="Tahoma" Highlight.Font.Style="0" Highlight.Condition="&#60;Main.&#34;EmployeeEIS&#34;&#62;=0" Highlight.FillType="ftBrush" Highlight.Frame.Typ="0" ParentFont="False" Text="EIS Employee"/>
      <TfrxMemoView Name="Memo91" AllowVectorExport="True" Left="348.65399" Top="134.06308" Width="68.03154" Height="15.11812" DataField="EmployeeEIS" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" HideZeros="True" ParentFont="False" Text="[Main.&#34;EmployeeEIS&#34;]"/>
      <TfrxMemoView Name="Memo92" AllowVectorExport="True" Left="381.73253" Top="370.39394" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTD.&#34;MTDEmployeeEIS&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo101" AllowVectorExport="True" Left="445.98454" Top="370.39394" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTD.&#34;MTDEmployerEIS&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo102" AllowVectorExport="True" Left="381.73253" Top="381.73253" Width="64.25201" Height="15.11812" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;YTD.&#34;YTDEmployeeEIS&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo103" AllowVectorExport="True" Left="445.98454" Top="381.73253" Width="64.25201" Height="15.11812" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaBottom" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;YTD.&#34;YTDEmployerEIS&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo104" AllowVectorExport="True" Left="381.73253" Top="343.93723" Width="64.25201" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="10" GapY="3" HAlign="haCenter" ParentFont="False" Text="EIS ee"/>
      <TfrxMemoView Name="Memo118" AllowVectorExport="True" Left="445.98454" Top="343.93723" Width="64.25201" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="8" GapY="3" HAlign="haCenter" ParentFont="False" Text="EIS er"/>
      <TfrxMemoView Name="Memo119" AllowVectorExport="True" Left="381.73253" Top="359.05535" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="2" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTDPaid.&#34;MTDEmployeeEIS&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo120" AllowVectorExport="True" Left="445.98454" Top="359.05535" Width="64.25201" Height="11.33859" DataSet="Main" DataSetName="Main" Font.Charset="1" Font.Color="-16777208" Font.Height="-9" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[FormatFloat(&#60;Option.&#34;PayrollValueDisplayFormat&#34;&#62;,&#13;&#10;-1*&#60;MTDPaid.&#34;MTDEmployerEIS&#34;&#62;)]"/>
      <TfrxMemoView Name="Memo121" AllowVectorExport="True" Left="11.33859" Top="419.52783" Width="49.13389" Height="26.45671" Font.Charset="1" Font.Color="-16777208" Font.Height="-7" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" VAlign="vaCenter" Text="ee : Employee&#13;&#10;er : Employer"/>
    </TfrxMasterData>
  </TfrxReportPage>
  <TfrxReportPage Name="Page2" HGuides.Text="" VGuides.Text="" PaperWidth="215.9" PaperHeight="139.7" PaperSize="256" LeftMargin="1.3" RightMargin="2.5" TopMargin="2.5" BottomMargin="2.5" ColumnWidth="0" ColumnPositions.Text="" Frame.Typ="0" LargeDesignHeight="True" MirrorMode="0">
    <TfrxMasterData Name="MasterData2" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="7.55906" Left="0" Top="56.69295" Width="801.638313" ColumnWidth="0" ColumnGap="0" DataSet="Allowance" DataSetName="Allowance" RowCount="0" Stretched="True">
      <TfrxMemoView Name="Memo1" AllowVectorExport="True" Left="3.77953" Top="0" Width="275.90569" Height="7.55906" StretchMode="smActualHeight" DataField="Description" DataSet="Allowance" DataSetName="Allowance" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="[Allowance.&#34;Description&#34;]"/>
      <TfrxMemoView Name="Memo12" AllowVectorExport="True" Left="279.68522" Top="0" Width="90.70872" Height="7.55906" StretchMode="smActualHeight" DataField="Amount" DataSet="Allowance" DataSetName="Allowance" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[Allowance.&#34;Amount&#34;]"/>
    </TfrxMasterData>
    <TfrxHeader Name="Header1" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="15.11812" Left="0" Top="18.89765" Width="801.638313" Stretched="True">
      <TfrxMemoView Name="Memo47" AllowVectorExport="True" Left="279.68522" Top="0" Width="90.70872" Height="15.11812" StretchMode="smActualHeight" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Amount"/>
      <TfrxMemoView Name="Memo46" AllowVectorExport="True" Left="3.77953" Top="0" Width="275.90569" Height="15.11812" StretchMode="smActualHeight" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Allowance"/>
    </TfrxHeader>
  </TfrxReportPage>
  <TfrxReportPage Name="Page3" HGuides.Text="" VGuides.Text="" PaperWidth="215.9" PaperHeight="139.7" PaperSize="256" LeftMargin="1.3" RightMargin="2.5" TopMargin="2.5" BottomMargin="2.5" ColumnWidth="0" ColumnPositions.Text="" Frame.Typ="0" LargeDesignHeight="True" MirrorMode="0">
    <TfrxMasterData Name="MasterData3" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="7.55906" Left="0" Top="56.69295" Width="801.638313" ColumnWidth="0" ColumnGap="0" DataSet="Deduction" DataSetName="Deduction" RowCount="0" Stretched="True">
      <TfrxMemoView Name="Memo70" AllowVectorExport="True" Left="15.11812" Top="0" Width="264.5671" Height="7.55906" StretchMode="smActualHeight" DataSet="Allowance" DataSetName="Allowance" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="[Deduction.&#34;Description&#34;]"/>
      <TfrxMemoView Name="Memo71" AllowVectorExport="True" Left="279.68522" Top="0" Width="90.70872" Height="7.55906" StretchMode="smActualHeight" DataField="Amount" DataSet="Deduction" DataSetName="Deduction" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[Deduction.&#34;Amount&#34;]"/>
    </TfrxMasterData>
    <TfrxHeader Name="Header2" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="15.11812" Left="0" Top="18.89765" Width="801.638313" Stretched="True">
      <TfrxMemoView Name="Memo72" AllowVectorExport="True" Left="279.68522" Top="0" Width="90.70872" Height="15.11812" StretchMode="smActualHeight" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Amount"/>
      <TfrxMemoView Name="Memo73" AllowVectorExport="True" Left="15.11812" Top="0" Width="264.5671" Height="15.11812" StretchMode="smActualHeight" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haCenter" ParentFont="False" VAlign="vaCenter" Text="Deduction"/>
    </TfrxHeader>
  </TfrxReportPage>
  <TfrxReportPage Name="Page4" HGuides.Text="" VGuides.Text="" PaperWidth="215.9" PaperHeight="139.7" PaperSize="256" LeftMargin="1.3" RightMargin="2.5" TopMargin="2.5" BottomMargin="2.5" ColumnWidth="0" ColumnPositions.Text="" Frame.Typ="0" LargeDesignHeight="True" MirrorMode="0">
    <TfrxMasterData Name="MasterData5" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="15.11812" Left="0" Top="68.03154" Width="801.638313" ColumnWidth="0" ColumnGap="0" DataSet="Leave" DataSetName="Leave" RowCount="0" Stretched="True">
      <TfrxMemoView Name="LeaveLeaveType" AllowVectorExport="True" Left="3.77953" Top="0" Width="79.37013" Height="15.11812" StretchMode="smMaxHeight" DataField="Description" DataSet="Leave" DataSetName="Leave" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" WordWrap="False" Text="[Leave.&#34;Description&#34;]"/>
      <TfrxMemoView Name="LeaveBFDays" AllowVectorExport="True" Left="83.14966" Top="0" Width="34.01577" Height="15.11812" StretchMode="smMaxHeight" DataField="BFDays" DataSet="Leave" DataSetName="Leave" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[Leave.&#34;BFDays&#34;]"/>
      <TfrxMemoView Name="LeaveTaken" AllowVectorExport="True" Left="200.33086" Top="0" Width="45.35436" Height="15.11812" StretchMode="smMaxHeight" DataField="Taken" DataSet="Leave" DataSetName="Leave" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[Leave.&#34;Taken&#34;]"/>
      <TfrxMemoView Name="LeaveBalance" AllowVectorExport="True" Left="245.66945" Top="0" Width="49.13389" Height="15.11812" StretchMode="smMaxHeight" DataField="Balance" DataSet="Leave" DataSetName="Leave" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[Leave.&#34;Balance&#34;]"/>
      <TfrxMemoView Name="LeaveEntitle" AllowVectorExport="True" Left="116.84261" Top="0" Width="41.57483" Height="15.11812" StretchMode="smMaxHeight" DataField="Entitle" DataSet="Leave" DataSetName="Leave" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[Leave.&#34;Entitle&#34;]"/>
      <TfrxMemoView Name="Memo88" AllowVectorExport="True" Left="157.9765" Top="0" Width="41.57483" Height="15.11812" StretchMode="smMaxHeight" DataField="YTD" DataSet="Leave" DataSetName="Leave" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" WordWrap="False" Text="[Leave.&#34;YTD&#34;]"/>
      <TfrxMemoView Name="MmMTDBal" AllowVectorExport="True" Left="294.80334" Top="0" Width="45.35436" Height="15.11812" OnBeforePrint="MmMTDBalOnBeforePrint" DisplayFormat.FormatStr="%2.2f" DisplayFormat.Kind="fkNumeric" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text=""/>
    </TfrxMasterData>
    <TfrxHeader Name="Header4" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="26.45671" Left="0" Top="18.89765" Width="801.638313" Stretched="True">
      <TfrxMemoView Name="Memo3" AllowVectorExport="True" Left="3.77953" Top="0" Width="79.37013" Height="26.45671" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" ParentFont="False" Text="Leave Type"/>
      <TfrxMemoView Name="Memo97" AllowVectorExport="True" Left="83.14966" Top="0" Width="34.01577" Height="26.45671" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="B/F"/>
      <TfrxMemoView Name="Memo98" AllowVectorExport="True" Left="200.33086" Top="0" Width="45.35436" Height="26.45671" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="MTD"/>
      <TfrxMemoView Name="Memo99" AllowVectorExport="True" Left="245.66945" Top="0" Width="49.13389" Height="26.45671" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="Bal."/>
      <TfrxMemoView Name="Memo100" AllowVectorExport="True" Left="116.84261" Top="0" Width="41.57483" Height="26.45671" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="Entitle"/>
      <TfrxMemoView Name="Memo90" AllowVectorExport="True" Left="157.9765" Top="0" Width="41.57483" Height="26.45671" DisplayFormat.DecimalSeparator="." Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="YTD"/>
      <TfrxMemoView Name="Memo128" AllowVectorExport="True" Left="294.80334" Top="0" Width="45.35436" Height="26.45671" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text=" [ FormatDateTime('mmm YY' ,  &#60;Process.&#34;ProcDate&#34;&#62;)]&#13;&#10;Limit"/>
    </TfrxHeader>
    <TfrxHeader Name="Header3" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="15.11812" Left="0" Top="105.82684" Width="801.638313" Stretched="True">
      <TfrxMemoView Name="Memo74" AllowVectorExport="True" Left="268.34663" Top="0" Width="75.5906" Height="15.11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Amount"/>
      <TfrxMemoView Name="Memo75" AllowVectorExport="True" Left="3.77953" Top="0" Width="79.37013" Height="15.11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" ParentFont="False" VAlign="vaCenter" Text="Overtime"/>
      <TfrxMemoView Name="Memo76" AllowVectorExport="True" Left="83.14966" Top="0" Width="68.03154" Height="15.11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Units"/>
      <TfrxMemoView Name="Memo77" AllowVectorExport="True" Left="151.1812" Top="0" Width="49.13389" Height="15.11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="Rate"/>
      <TfrxMemoView Name="Memo78" AllowVectorExport="True" Left="200.31509" Top="0" Width="68.03154" Height="15.11812" Font.Charset="1" Font.Color="0" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" VAlign="vaCenter" Text="P.Rate"/>
    </TfrxHeader>
    <TfrxMasterData Name="MasterData4" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="15.11812" Left="0" Top="143.62214" Width="801.638313" ColumnWidth="0" ColumnGap="0" DataSet="Overtime" DataSetName="Overtime" RowCount="0" Stretched="True">
      <TfrxMemoView Name="Memo79" AllowVectorExport="True" Left="83.14966" Top="0" Width="68.03154" Height="15.11812" StretchMode="smMaxHeight" DataField="WorkUnit" DataSet="Overtime" DataSetName="Overtime" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[Overtime.&#34;WorkUnit&#34;]"/>
      <TfrxMemoView Name="Memo80" AllowVectorExport="True" Left="151.1812" Top="0" Width="49.13389" Height="15.11812" StretchMode="smMaxHeight" DataField="Rate" DataSet="Overtime" DataSetName="Overtime" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[Overtime.&#34;Rate&#34;]"/>
      <TfrxMemoView Name="Memo81" AllowVectorExport="True" Left="268.34663" Top="0" Width="75.5906" Height="15.11812" StretchMode="smMaxHeight" DataField="Amount" DataSet="Overtime" DataSetName="Overtime" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[Overtime.&#34;Amount&#34;]"/>
      <TfrxMemoView Name="Memo82" AllowVectorExport="True" Left="3.77953" Top="0" Width="79.37013" Height="15.11812" StretchMode="smMaxHeight" DataSet="Overtime" DataSetName="Overtime" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text=" [Overtime.&#34;Description&#34;]"/>
      <TfrxMemoView Name="Memo95" AllowVectorExport="True" Left="200.31509" Top="0" Width="68.03154" Height="15.11812" StretchMode="smMaxHeight" DataField="PayRate" DataSet="Overtime" DataSetName="Overtime" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[Overtime.&#34;PayRate&#34;]"/>
    </TfrxMasterData>
    <TfrxHeader Name="Header5" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="15.11812" Left="0" Top="181.41744" Width="801.638313" Stretched="True">
      <TfrxMemoView Name="Memo105" AllowVectorExport="True" Left="3.77953" Top="0" Width="79.37013" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" ParentFont="False" Text="Pay Year"/>
      <TfrxMemoView Name="Memo106" AllowVectorExport="True" Left="83.14966" Top="0" Width="181.41744" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" ParentFont="False" Text="Description"/>
      <TfrxMemoView Name="Memo107" AllowVectorExport="True" Left="264.5671" Top="0" Width="79.37013" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="Amount"/>
    </TfrxHeader>
    <TfrxMasterData Name="MasterData6" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="15.11812" Left="0" Top="219.21274" Width="801.638313" ColumnWidth="0" ColumnGap="0" DataSet="Bonus" DataSetName="Bonus" RowCount="0" Stretched="True">
      <TfrxMemoView Name="BonusPayYear" AllowVectorExport="True" Left="3.77953" Top="0" Width="79.37013" Height="15.11812" DataSet="Bonus" DataSetName="Bonus" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text=" [Bonus.&#34;PayYear&#34;]"/>
      <TfrxMemoView Name="BonusDescription" AllowVectorExport="True" Left="83.14966" Top="0" Width="181.41744" Height="15.11812" DataField="Description" DataSet="Bonus" DataSetName="Bonus" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="[Bonus.&#34;Description&#34;]"/>
      <TfrxMemoView Name="BonusAmount" AllowVectorExport="True" Left="264.5671" Top="0" Width="79.37013" Height="15.11812" DataField="Amount" DataSet="Bonus" DataSetName="Bonus" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[Bonus.&#34;Amount&#34;]"/>
    </TfrxMasterData>
    <TfrxHeader Name="Header6" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="18.89765" Left="0" Top="257.00804" Width="801.638313" Stretched="True">
      <TfrxMemoView Name="Memo108" AllowVectorExport="True" Left="90.70872" Top="0" Width="173.85838" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" ParentFont="False" Text="Description"/>
      <TfrxMemoView Name="Memo109" AllowVectorExport="True" Left="264.5671" Top="0" Width="79.37013" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="Amount"/>
      <TfrxMemoView Name="Memo112" AllowVectorExport="True" Left="7.55906" Top="0" Width="83.14966" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" ParentFont="False" Text="Pay Year"/>
    </TfrxHeader>
    <TfrxMasterData Name="MasterData7" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="22.67718" Left="0" Top="298.58287" Width="801.638313" ColumnWidth="0" ColumnGap="0" DataSet="Director" DataSetName="Director" RowCount="0" Stretched="True">
      <TfrxMemoView Name="Memo110" AllowVectorExport="True" Left="90.70872" Top="0" Width="173.85838" Height="18.89765" DataSet="Bonus" DataSetName="Bonus" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="[Director.&#34;Description&#34;]"/>
      <TfrxMemoView Name="Memo111" AllowVectorExport="True" Left="264.5671" Top="0" Width="79.37013" Height="18.89765" DataField="Amount" DataSet="Director" DataSetName="Director" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[Director.&#34;Amount&#34;]"/>
      <TfrxMemoView Name="DirectorPostDate" AllowVectorExport="True" Left="7.55906" Top="0" Width="83.14966" Height="18.89765" DataSet="Director" DataSetName="Director" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text=" [Director.&#34;PayYear&#34;]"/>
    </TfrxMasterData>
    <TfrxHeader Name="Header7" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="15.11812" Left="0" Top="343.93723" Width="801.638313">
      <TfrxMemoView Name="Memo122" AllowVectorExport="True" Left="90.70872" Top="0" Width="173.85838" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" ParentFont="False" Text="Description"/>
      <TfrxMemoView Name="Memo123" AllowVectorExport="True" Left="264.5671" Top="0" Width="79.37013" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="Amount"/>
      <TfrxMemoView Name="Memo124" AllowVectorExport="True" Left="7.55906" Top="0" Width="83.14966" Height="15.11812" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="4" Frame.Typ="0" ParentFont="False" Text="Date"/>
    </TfrxHeader>
    <TfrxMasterData Name="MasterData8" FillType="ftBrush" FillGap.Top="0" FillGap.Left="0" FillGap.Bottom="0" FillGap.Right="0" Frame.Typ="0" Height="11.33859" Left="0" Top="381.73253" Width="801.638313" ColumnWidth="0" ColumnGap="0" DataSet="UnpaidLeave" DataSetName="UnpaidLeave" RowCount="0" Stretched="True">
      <TfrxMemoView Name="Memo125" AllowVectorExport="True" Left="90.70872" Top="0" Width="173.85838" Height="11.33859" StretchMode="smMaxHeight" DataField="Description" DataSet="UnpaidLeave" DataSetName="UnpaidLeave" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="[UnpaidLeave.&#34;Description&#34;]"/>
      <TfrxMemoView Name="Memo126" AllowVectorExport="True" Left="264.5671" Top="0" Width="79.37013" Height="11.33859" StretchMode="smMaxHeight" DataField="Amount" DataSet="UnpaidLeave" DataSetName="UnpaidLeave" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" HAlign="haRight" ParentFont="False" Text="[UnpaidLeave.&#34;Amount&#34;]"/>
      <TfrxMemoView Name="Memo127" AllowVectorExport="True" Left="7.55906" Top="0" Width="83.14966" Height="11.33859" StretchMode="smMaxHeight" DataField="TransDate" DataSet="UnpaidLeave" DataSetName="UnpaidLeave" Font.Charset="1" Font.Color="-16777208" Font.Height="-11" Font.Name="Tahoma" Font.Style="0" Frame.Typ="0" ParentFont="False" Text="[UnpaidLeave.&#34;TransDate&#34;]"/>
    </TfrxMasterData>
  </TfrxReportPage>
</TfrxReport>
