<?xml version="1.0" encoding="UTF-8"?>

<!--
    Copyright (c) 2015 onox

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-->

<PropertyList>

    <logic>
        <name>Pilot Present</name>
        <input>
            <greater-than>
                <property>payload/weight[0]/weight-lb</property>
                <value>100.0</value>
            </greater-than>
        </input>
        <output>
            <property>pax/pilot/present</property>
        </output>
    </logic>

    <logic>
        <name>Co-Pilot Present</name>
        <input>
            <greater-than>
                <property>payload/weight[1]/weight-lb</property>
                <value>100.0</value>
            </greater-than>
        </input>
        <output>
            <property>pax/co-pilot/present</property>
        </output>
    </logic>

    <logic>
        <name>Left Passenger Present</name>
        <input>
            <greater-than>
                <property>payload/weight[2]/weight-lb</property>
                <value>100.0</value>
            </greater-than>
        </input>
        <output>
            <property>pax/left-passenger/present</property>
        </output>
    </logic>

    <logic>
        <name>Right Passenger Present</name>
        <input>
            <greater-than>
                <property>payload/weight[3]/weight-lb</property>
                <value>100.0</value>
            </greater-than>
        </input>
        <output>
            <property>pax/right-passenger/present</property>
        </output>
    </logic>

</PropertyList>