false
true
0

Contract Address Details

0xe8D28E2CA24BB16Fc7e6549eF937e05981d02606

Contract Name
PendleLiquidityIncentiv..ultisig
Creator
0x0e7779–480b82 at 0x2265b1–4d0aba
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
55 Transactions
Transfers
59 Transfers
Gas Used
7,120,645
Last Balance Update
26091756
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been partially verified via Sourcify. View contract in Sourcify repository
Contract name:
PendleLiquidityIncentivesMultisig




Optimization enabled
true
Compiler version
v0.5.9+commit.c68bc34e




Optimization runs
200
EVM Version
petersburg




Verified at
2026-03-22T22:38:45.797452Z

Constructor Arguments

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000035ccd93db6ca6d7a4dcbd72ef389929b4179e4b7000000000000000000000000956fe4948253d088f1b3776ebfb537cb60fd0df90000000000000000000000000e7779b85a003fed82fcde0e16448b0dbb480b82000000000000000000000000c23e9bb8808403b30f01cd922714329387e29994
              

PendleLiquidityIncentivesMultisig.sol

// solhint-disable
pragma solidity ^0.5.9;


/// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.
/// @author Stefan George - <stefan.george@consensys.net>
contract MultiSigWallet {

    /*
     *  Events
     */
    event Confirmation(address indexed sender, uint256 indexed transactionId);
    event Revocation(address indexed sender, uint256 indexed transactionId);
    event Submission(uint256 indexed transactionId);
    event Execution(uint256 indexed transactionId);
    event ExecutionFailure(uint256 indexed transactionId);
    event Deposit(address indexed sender, uint256 value);
    event OwnerAddition(address indexed owner);
    event OwnerRemoval(address indexed owner);
    event RequirementChange(uint256 required);

    /*
     *  Constants
     */
    uint256 constant public MAX_OWNER_COUNT = 50;

    /*
     *  Storage
     */
    mapping (uint256 => Transaction) public transactions;
    mapping (uint256 => mapping (address => bool)) public confirmations;
    mapping (address => bool) public isOwner;
    address[] public owners;
    uint256 public required;
    uint256 public transactionCount;

    struct Transaction {
        address destination;
        uint256 value;
        bytes data;
        bool executed;
    }

    /*
     *  Modifiers
     */
    modifier onlyWallet() {
        require(
            msg.sender == address(this),
            "ONLY_CALLABLE_BY_WALLET"
        );
        _;
    }

    modifier ownerDoesNotExist(address owner) {
        require(
            !isOwner[owner],
            "OWNER_EXISTS"
        );
        _;
    }

    modifier ownerExists(address owner) {
        require(
            isOwner[owner],
            "OWNER_DOESNT_EXIST"
        );
        _;
    }

    modifier transactionExists(uint256 transactionId) {
        require(
            transactions[transactionId].destination != address(0),
            "TX_DOESNT_EXIST"
        );
        _;
    }

    modifier confirmed(uint256 transactionId, address owner) {
        require(
            confirmations[transactionId][owner],
            "TX_NOT_CONFIRMED"
        );
        _;
    }

    modifier notConfirmed(uint256 transactionId, address owner) {
        require(
            !confirmations[transactionId][owner],
            "TX_ALREADY_CONFIRMED"
        );
        _;
    }

    modifier notExecuted(uint256 transactionId) {
        require(
            !transactions[transactionId].executed,
            "TX_ALREADY_EXECUTED"
        );
        _;
    }

    modifier notNull(address _address) {
        require(
            _address != address(0),
            "NULL_ADDRESS"
        );
        _;
    }

    modifier validRequirement(uint256 ownerCount, uint256 _required) {
        require(
            ownerCount <= MAX_OWNER_COUNT
            && _required <= ownerCount
            && _required != 0
            && ownerCount != 0,
            "INVALID_REQUIREMENTS"
        );
        _;
    }

    /// @dev Fallback function allows to deposit ether.
    function()
        external
        payable
    {
        if (msg.value > 0) {
            emit Deposit(msg.sender, msg.value);
        }
    }

    /*
     * Public functions
     */
    /// @dev Contract constructor sets initial owners and required number of confirmations.
    /// @param _owners List of initial owners.
    /// @param _required Number of required confirmations.
    constructor(
        address[] memory _owners,
        uint256 _required
    )
        public
        validRequirement(_owners.length, _required)
    {
        for (uint256 i = 0; i < _owners.length; i++) {
            require(
                !isOwner[_owners[i]] && _owners[i] != address(0),
                "DUPLICATE_OR_NULL_OWNER"
            );
            isOwner[_owners[i]] = true;
        }
        owners = _owners;
        required = _required;
    }

    /// @dev Allows to add a new owner. Transaction has to be sent by wallet.
    /// @param owner Address of new owner.
    function addOwner(address owner)
        public
        onlyWallet
        ownerDoesNotExist(owner)
        notNull(owner)
        validRequirement(owners.length + 1, required)
    {
        isOwner[owner] = true;
        owners.push(owner);
        emit OwnerAddition(owner);
    }

    /// @dev Allows to remove an owner. Transaction has to be sent by wallet.
    /// @param owner Address of owner.
    function removeOwner(address owner)
        public
        onlyWallet
        ownerExists(owner)
    {
        isOwner[owner] = false;
        for (uint256 i = 0; i < owners.length - 1; i++) {
            if (owners[i] == owner) {
                owners[i] = owners[owners.length - 1];
                break;
            }
        }
        owners.length -= 1;
        if (required > owners.length) {
            changeRequirement(owners.length);
        }
        emit OwnerRemoval(owner);
    }

    /// @dev Allows to replace an owner with a new owner. Transaction has to be sent by wallet.
    /// @param owner Address of owner to be replaced.
    /// @param newOwner Address of new owner.
    function replaceOwner(address owner, address newOwner)
        public
        onlyWallet
        ownerExists(owner)
        ownerDoesNotExist(newOwner)
    {
        for (uint256 i = 0; i < owners.length; i++) {
            if (owners[i] == owner) {
                owners[i] = newOwner;
                break;
            }
        }
        isOwner[owner] = false;
        isOwner[newOwner] = true;
        emit OwnerRemoval(owner);
        emit OwnerAddition(newOwner);
    }

    /// @dev Allows to change the number of required confirmations. Transaction has to be sent by wallet.
    /// @param _required Number of required confirmations.
    function changeRequirement(uint256 _required)
        public
        onlyWallet
        validRequirement(owners.length, _required)
    {
        required = _required;
        emit RequirementChange(_required);
    }

    /// @dev Allows an owner to submit and confirm a transaction.
    /// @param destination Transaction target address.
    /// @param value Transaction ether value.
    /// @param data Transaction data payload.
    /// @return Returns transaction ID.
    function submitTransaction(address destination, uint256 value, bytes memory data)
        public
        returns (uint256 transactionId)
    {
        transactionId = _addTransaction(destination, value, data);
        confirmTransaction(transactionId);
    }

    /// @dev Allows an owner to confirm a transaction.
    /// @param transactionId Transaction ID.
    function confirmTransaction(uint256 transactionId)
        public
        ownerExists(msg.sender)
        transactionExists(transactionId)
        notConfirmed(transactionId, msg.sender)
    {
        confirmations[transactionId][msg.sender] = true;
        emit Confirmation(msg.sender, transactionId);
        executeTransaction(transactionId);
    }

    /// @dev Allows an owner to revoke a confirmation for a transaction.
    /// @param transactionId Transaction ID.
    function revokeConfirmation(uint256 transactionId)
        public
        ownerExists(msg.sender)
        confirmed(transactionId, msg.sender)
        notExecuted(transactionId)
    {
        confirmations[transactionId][msg.sender] = false;
        emit Revocation(msg.sender, transactionId);
    }

    /// @dev Allows anyone to execute a confirmed transaction.
    /// @param transactionId Transaction ID.
    function executeTransaction(uint256 transactionId)
        public
        ownerExists(msg.sender)
        confirmed(transactionId, msg.sender)
        notExecuted(transactionId)
    {
        if (isConfirmed(transactionId)) {
            Transaction storage txn = transactions[transactionId];
            txn.executed = true;
            if (
                _externalCall(
                    txn.destination,
                    txn.value,
                    txn.data.length,
                    txn.data
                )
            ) {
                emit Execution(transactionId);
            } else {
                emit ExecutionFailure(transactionId);
                txn.executed = false;
            }
        }
    }

    // call has been separated into its own function in order to take advantage
    // of the Solidity's code generator to produce a loop that copies tx.data into memory.
    function _externalCall(
        address destination,
        uint256 value,
        uint256 dataLength,
        bytes memory data
    )
        internal
        returns (bool)
    {
        bool result;
        assembly {
            let x := mload(0x40)   // "Allocate" memory for output (0x40 is where "free memory" pointer is stored by convention)
            let d := add(data, 32) // First 32 bytes are the padded length of data, so exclude that
            result := call(
                sub(gas, 34710),   // 34710 is the value that solidity is currently emitting
                                   // It includes callGas (700) + callVeryLow (3, to pay for SUB) + callValueTransferGas (9000) +
                                   // callNewAccountGas (25000, in case the destination address does not exist and needs creating)
                destination,
                value,
                d,
                dataLength,        // Size of the input (in bytes) - this is what fixes the padding problem
                x,
                0                  // Output is ignored, therefore the output size is zero
            )
        }
        return result;
    }

    /// @dev Returns the confirmation status of a transaction.
    /// @param transactionId Transaction ID.
    /// @return Confirmation status.
    function isConfirmed(uint256 transactionId)
        public
        view
        returns (bool)
    {
        uint256 count = 0;
        for (uint256 i = 0; i < owners.length; i++) {
            if (confirmations[transactionId][owners[i]]) {
                count += 1;
            }
            if (count == required) {
                return true;
            }
        }
    }

    /*
     * Internal functions
     */
    /// @dev Adds a new transaction to the transaction mapping, if transaction does not exist yet.
    /// @param destination Transaction target address.
    /// @param value Transaction ether value.
    /// @param data Transaction data payload.
    /// @return Returns transaction ID.
    function _addTransaction(
        address destination,
        uint256 value,
        bytes memory data
    )
        internal
        notNull(destination)
        returns (uint256 transactionId)
    {
        transactionId = transactionCount;
        transactions[transactionId] = Transaction({
            destination: destination,
            value: value,
            data: data,
            executed: false
        });
        transactionCount += 1;
        emit Submission(transactionId);
    }

    /*
     * Web3 call functions
     */
    /// @dev Returns number of confirmations of a transaction.
    /// @param transactionId Transaction ID.
    /// @return Number of confirmations.
    function getConfirmationCount(uint256 transactionId)
        public
        view
        returns (uint256 count)
    {
        for (uint256 i = 0; i < owners.length; i++) {
            if (confirmations[transactionId][owners[i]]) {
                count += 1;
            }
        }
    }

    /// @dev Returns total number of transactions after filers are applied.
    /// @param pending Include pending transactions.
    /// @param executed Include executed transactions.
    /// @return Total number of transactions after filters are applied.
    function getTransactionCount(bool pending, bool executed)
        public
        view
        returns (uint256 count)
    {
        for (uint256 i = 0; i < transactionCount; i++) {
            if (pending && !transactions[i].executed || executed && transactions[i].executed) {
                count += 1;
            }
        }
    }

    /// @dev Returns list of owners.
    /// @return List of owner addresses.
    function getOwners()
        public
        view
        returns (address[] memory)
    {
        return owners;
    }

    /// @dev Returns array with owner addresses, which confirmed transaction.
    /// @param transactionId Transaction ID.
    /// @return Returns array of owner addresses.
    function getConfirmations(uint256 transactionId)
        public
        view
        returns (address[] memory _confirmations)
    {
        address[] memory confirmationsTemp = new address[](owners.length);
        uint256 count = 0;
        uint256 i;
        for (i = 0; i < owners.length; i++) {
            if (confirmations[transactionId][owners[i]]) {
                confirmationsTemp[count] = owners[i];
                count += 1;
            }
        }
        _confirmations = new address[](count);
        for (i = 0; i < count; i++) {
            _confirmations[i] = confirmationsTemp[i];
        }
    }

    /// @dev Returns list of transaction IDs in defined range.
    /// @param from Index start position of transaction array.
    /// @param to Index end position of transaction array.
    /// @param pending Include pending transactions.
    /// @param executed Include executed transactions.
    /// @return Returns array of transaction IDs.
    function getTransactionIds(
        uint256 from,
        uint256 to,
        bool pending,
        bool executed
    )
        public
        view
        returns (uint256[] memory _transactionIds)
    {
        uint256[] memory transactionIdsTemp = new uint256[](transactionCount);
        uint256 count = 0;
        uint256 i;
        for (i = 0; i < transactionCount; i++) {
            if (pending && !transactions[i].executed || executed && transactions[i].executed) {
                transactionIdsTemp[count] = i;
                count += 1;
            }
        }
        _transactionIds = new uint256[](to - from);
        for (i = from; i < to; i++) {
            _transactionIds[i - from] = transactionIdsTemp[i];
        }
    }
}


library LibRichErrors {

    // bytes4(keccak256("Error(string)"))
    bytes4 internal constant STANDARD_ERROR_SELECTOR =
        0x08c379a0;

    // solhint-disable func-name-mixedcase
    /// @dev ABI encode a standard, string revert error payload.
    ///      This is the same payload that would be included by a `revert(string)`
    ///      solidity statement. It has the function signature `Error(string)`.
    /// @param message The error string.
    /// @return The ABI encoded error.
    function StandardError(
        string memory message
    )
        internal
        pure
        returns (bytes memory)
    {
        return abi.encodeWithSelector(
            STANDARD_ERROR_SELECTOR,
            bytes(message)
        );
    }
    // solhint-enable func-name-mixedcase

    /// @dev Reverts an encoded rich revert reason `errorData`.
    /// @param errorData ABI encoded error data.
    function rrevert(bytes memory errorData)
        internal
        pure
    {
        assembly {
            revert(add(errorData, 0x20), mload(errorData))
        }
    }
}

library LibSafeMathRichErrors {

    // bytes4(keccak256("Uint256BinOpError(uint8,uint256,uint256)"))
    bytes4 internal constant UINT256_BINOP_ERROR_SELECTOR =
        0xe946c1bb;

    // bytes4(keccak256("Uint256DowncastError(uint8,uint256)"))
    bytes4 internal constant UINT256_DOWNCAST_ERROR_SELECTOR =
        0xc996af7b;

    enum BinOpErrorCodes {
        ADDITION_OVERFLOW,
        MULTIPLICATION_OVERFLOW,
        SUBTRACTION_UNDERFLOW,
        DIVISION_BY_ZERO
    }

    enum DowncastErrorCodes {
        VALUE_TOO_LARGE_TO_DOWNCAST_TO_UINT32,
        VALUE_TOO_LARGE_TO_DOWNCAST_TO_UINT64,
        VALUE_TOO_LARGE_TO_DOWNCAST_TO_UINT96
    }

    // solhint-disable func-name-mixedcase
    function Uint256BinOpError(
        BinOpErrorCodes errorCode,
        uint256 a,
        uint256 b
    )
        internal
        pure
        returns (bytes memory)
    {
        return abi.encodeWithSelector(
            UINT256_BINOP_ERROR_SELECTOR,
            errorCode,
            a,
            b
        );
    }

    function Uint256DowncastError(
        DowncastErrorCodes errorCode,
        uint256 a
    )
        internal
        pure
        returns (bytes memory)
    {
        return abi.encodeWithSelector(
            UINT256_DOWNCAST_ERROR_SELECTOR,
            errorCode,
            a
        );
    }
}

/*
  Copyright 2019 ZeroEx Intl.
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
    http://www.apache.org/licenses/LICENSE-2.0
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/
library LibSafeMath {

    function safeMul(uint256 a, uint256 b)
        internal
        pure
        returns (uint256)
    {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        if (c / a != b) {
            LibRichErrors.rrevert(LibSafeMathRichErrors.Uint256BinOpError(
                LibSafeMathRichErrors.BinOpErrorCodes.MULTIPLICATION_OVERFLOW,
                a,
                b
            ));
        }
        return c;
    }

    function safeDiv(uint256 a, uint256 b)
        internal
        pure
        returns (uint256)
    {
        if (b == 0) {
            LibRichErrors.rrevert(LibSafeMathRichErrors.Uint256BinOpError(
                LibSafeMathRichErrors.BinOpErrorCodes.DIVISION_BY_ZERO,
                a,
                b
            ));
        }
        uint256 c = a / b;
        return c;
    }

    function safeSub(uint256 a, uint256 b)
        internal
        pure
        returns (uint256)
    {
        if (b > a) {
            LibRichErrors.rrevert(LibSafeMathRichErrors.Uint256BinOpError(
                LibSafeMathRichErrors.BinOpErrorCodes.SUBTRACTION_UNDERFLOW,
                a,
                b
            ));
        }
        return a - b;
    }

    function safeAdd(uint256 a, uint256 b)
        internal
        pure
        returns (uint256)
    {
        uint256 c = a + b;
        if (c < a) {
            LibRichErrors.rrevert(LibSafeMathRichErrors.Uint256BinOpError(
                LibSafeMathRichErrors.BinOpErrorCodes.ADDITION_OVERFLOW,
                a,
                b
            ));
        }
        return c;
    }

    function max256(uint256 a, uint256 b)
        internal
        pure
        returns (uint256)
    {
        return a >= b ? a : b;
    }

    function min256(uint256 a, uint256 b)
        internal
        pure
        returns (uint256)
    {
        return a < b ? a : b;
    }
}

/// @title Multisignature wallet with time lock- Allows multiple parties to execute a transaction after a time lock has passed.
/// @author Amir Bandeali - <amir@0xProject.com>
// solhint-disable not-rely-on-time
contract MultiSigWalletWithTimeLock is
    MultiSigWallet
{
    using LibSafeMath for uint256;

    event ConfirmationTimeSet(uint256 indexed transactionId, uint256 confirmationTime);
    event TimeLockChange(uint256 secondsTimeLocked);

    uint256 public secondsTimeLocked;

    mapping (uint256 => uint256) public confirmationTimes;

    modifier fullyConfirmed(uint256 transactionId) {
        require(
            isConfirmed(transactionId),
            "TX_NOT_FULLY_CONFIRMED"
        );
        _;
    }

    modifier pastTimeLock(uint256 transactionId) {
        require(
            block.timestamp >= confirmationTimes[transactionId].safeAdd(secondsTimeLocked),
            "TIME_LOCK_INCOMPLETE"
        );
        _;
    }

    /// @dev Contract constructor sets initial owners, required number of confirmations, and time lock.
    /// @param _owners List of initial owners.
    /// @param _required Number of required confirmations.
    /// @param _secondsTimeLocked Duration needed after a transaction is confirmed and before it becomes executable, in seconds.
    constructor (
        address[] memory _owners,
        uint256 _required,
        uint256 _secondsTimeLocked
    )
        public
        MultiSigWallet(_owners, _required)
    {
        secondsTimeLocked = _secondsTimeLocked;
    }

    /// @dev Changes the duration of the time lock for transactions.
    /// @param _secondsTimeLocked Duration needed after a transaction is confirmed and before it becomes executable, in seconds.
    function changeTimeLock(uint256 _secondsTimeLocked)
        public
        onlyWallet
    {
        secondsTimeLocked = _secondsTimeLocked;
        emit TimeLockChange(_secondsTimeLocked);
    }

    /// @dev Allows an owner to confirm a transaction.
    /// @param transactionId Transaction ID.
    function confirmTransaction(uint256 transactionId)
        public
        ownerExists(msg.sender)
        transactionExists(transactionId)
        notConfirmed(transactionId, msg.sender)
    {
        bool isTxFullyConfirmedBeforeConfirmation = isConfirmed(transactionId);

        confirmations[transactionId][msg.sender] = true;
        emit Confirmation(msg.sender, transactionId);

        if (!isTxFullyConfirmedBeforeConfirmation && isConfirmed(transactionId)) {
            _setConfirmationTime(transactionId, block.timestamp);
        }
    }

    /// @dev Allows anyone to execute a confirmed transaction.
    /// @param transactionId Transaction ID.
    function executeTransaction(uint256 transactionId)
        public
        notExecuted(transactionId)
        fullyConfirmed(transactionId)
        pastTimeLock(transactionId)
    {
        Transaction storage txn = transactions[transactionId];
        txn.executed = true;
        if (_externalCall(txn.destination, txn.value, txn.data.length, txn.data)) {
            emit Execution(transactionId);
        } else {
            emit ExecutionFailure(transactionId);
            txn.executed = false;
        }
    }

    /// @dev Sets the time of when a submission first passed.
    function _setConfirmationTime(uint256 transactionId, uint256 confirmationTime)
        internal
    {
        confirmationTimes[transactionId] = confirmationTime;
        emit ConfirmationTimeSet(transactionId, confirmationTime);
    }
}

contract PendleLiquidityIncentivesMultisig is MultiSigWalletWithTimeLock {
    constructor(
        address[] memory _owners,
        uint256 _required,
        uint256 _secondsTimeLocked
    ) public MultiSigWalletWithTimeLock(_owners, _required, _secondsTimeLocked) {}
}
        

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":true},"libraries":{},"evmVersion":"petersburg","compilationTarget":{"PendleLiquidityIncentivesMultisig.sol":"PendleLiquidityIncentivesMultisig"}}
              

Contract ABI

[{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address","name":""}],"name":"owners","inputs":[{"type":"uint256","name":""}],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"removeOwner","inputs":[{"type":"address","name":"owner"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"revokeConfirmation","inputs":[{"type":"uint256","name":"transactionId"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"bool","name":""}],"name":"isOwner","inputs":[{"type":"address","name":""}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"bool","name":""}],"name":"confirmations","inputs":[{"type":"uint256","name":""},{"type":"address","name":""}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"secondsTimeLocked","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":"count"}],"name":"getTransactionCount","inputs":[{"type":"bool","name":"pending"},{"type":"bool","name":"executed"}],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"addOwner","inputs":[{"type":"address","name":"owner"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"bool","name":""}],"name":"isConfirmed","inputs":[{"type":"uint256","name":"transactionId"}],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"changeTimeLock","inputs":[{"type":"uint256","name":"_secondsTimeLocked"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":"count"}],"name":"getConfirmationCount","inputs":[{"type":"uint256","name":"transactionId"}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address","name":"destination"},{"type":"uint256","name":"value"},{"type":"bytes","name":"data"},{"type":"bool","name":"executed"}],"name":"transactions","inputs":[{"type":"uint256","name":""}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address[]","name":""}],"name":"getOwners","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256[]","name":"_transactionIds"}],"name":"getTransactionIds","inputs":[{"type":"uint256","name":"from"},{"type":"uint256","name":"to"},{"type":"bool","name":"pending"},{"type":"bool","name":"executed"}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"address[]","name":"_confirmations"}],"name":"getConfirmations","inputs":[{"type":"uint256","name":"transactionId"}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"transactionCount","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"changeRequirement","inputs":[{"type":"uint256","name":"_required"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"confirmTransaction","inputs":[{"type":"uint256","name":"transactionId"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[{"type":"uint256","name":"transactionId"}],"name":"submitTransaction","inputs":[{"type":"address","name":"destination"},{"type":"uint256","name":"value"},{"type":"bytes","name":"data"}],"constant":false},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"confirmationTimes","inputs":[{"type":"uint256","name":""}],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"MAX_OWNER_COUNT","inputs":[],"constant":true},{"type":"function","stateMutability":"view","payable":false,"outputs":[{"type":"uint256","name":""}],"name":"required","inputs":[],"constant":true},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"replaceOwner","inputs":[{"type":"address","name":"owner"},{"type":"address","name":"newOwner"}],"constant":false},{"type":"function","stateMutability":"nonpayable","payable":false,"outputs":[],"name":"executeTransaction","inputs":[{"type":"uint256","name":"transactionId"}],"constant":false},{"type":"constructor","stateMutability":"nonpayable","payable":false,"inputs":[{"type":"address[]","name":"_owners"},{"type":"uint256","name":"_required"},{"type":"uint256","name":"_secondsTimeLocked"}]},{"type":"fallback","stateMutability":"payable","payable":true},{"type":"event","name":"ConfirmationTimeSet","inputs":[{"type":"uint256","name":"transactionId","indexed":true},{"type":"uint256","name":"confirmationTime","indexed":false}],"anonymous":false},{"type":"event","name":"TimeLockChange","inputs":[{"type":"uint256","name":"secondsTimeLocked","indexed":false}],"anonymous":false},{"type":"event","name":"Confirmation","inputs":[{"type":"address","name":"sender","indexed":true},{"type":"uint256","name":"transactionId","indexed":true}],"anonymous":false},{"type":"event","name":"Revocation","inputs":[{"type":"address","name":"sender","indexed":true},{"type":"uint256","name":"transactionId","indexed":true}],"anonymous":false},{"type":"event","name":"Submission","inputs":[{"type":"uint256","name":"transactionId","indexed":true}],"anonymous":false},{"type":"event","name":"Execution","inputs":[{"type":"uint256","name":"transactionId","indexed":true}],"anonymous":false},{"type":"event","name":"ExecutionFailure","inputs":[{"type":"uint256","name":"transactionId","indexed":true}],"anonymous":false},{"type":"event","name":"Deposit","inputs":[{"type":"address","name":"sender","indexed":true},{"type":"uint256","name":"value","indexed":false}],"anonymous":false},{"type":"event","name":"OwnerAddition","inputs":[{"type":"address","name":"owner","indexed":true}],"anonymous":false},{"type":"event","name":"OwnerRemoval","inputs":[{"type":"address","name":"owner","indexed":true}],"anonymous":false},{"type":"event","name":"RequirementChange","inputs":[{"type":"uint256","name":"required","indexed":false}],"anonymous":false}]
              

Contract Creation Code

Verify & Publish
0x60806040523480156200001157600080fd5b506040516200207b3803806200207b833981810160405260608110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81518560208202830111640100000000821117156200008257600080fd5b505060208201516040909201518151919450919250839083908390839083908160328211801590620000b45750818111155b8015620000c057508015155b8015620000cc57508115155b6200013857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f494e56414c49445f524551554952454d454e5453000000000000000000000000604482015290519081900360640190fd5b60005b84518110156200026c57600260008683815181106200015657fe5b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff16158015620001b2575060006001600160a01b03168582815181106200019e57fe5b60200260200101516001600160a01b031614155b6200021e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f4455504c49434154455f4f525f4e554c4c5f4f574e4552000000000000000000604482015290519081900360640190fd5b6001600260008784815181106200023157fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016200013b565b5083516200028290600390602087019062000298565b50505060045550600655506200032c9350505050565b828054828255906000526020600020908101928215620002f0579160200282015b82811115620002f057825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002b9565b50620002fe92915062000302565b5090565b6200032991905b80821115620002fe5780546001600160a01b031916815560010162000309565b90565b611d3f806200033c6000396000f3fe60806040526004361061014b5760003560e01c8063a0e67e2b116100b6578063c64274741161006f578063c6427474146105be578063d38f2d8214610686578063d74f8edd146106b0578063dc8452cd146106c5578063e20056e6146106da578063ee22610b146107155761014b565b8063a0e67e2b14610486578063a8abe69a146104eb578063b5dc40c31461052b578063b77bf60014610555578063ba51a6df1461056a578063c01a8c84146105945761014b565b8063547415251161010857806354741525146102d45780637065cb4814610308578063784547a71461033b5780637ad28c51146103655780638b51d13f1461038f5780639ace38c2146103b95761014b565b8063025e7c271461018a578063173825d9146101d057806320ea8d86146102035780632f54bf6e1461022d5780633411c81c1461027457806337bd78a0146102ad575b34156101885760408051348152905133917fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c919081900360200190a25b005b34801561019657600080fd5b506101b4600480360360208110156101ad57600080fd5b503561073f565b604080516001600160a01b039092168252519081900360200190f35b3480156101dc57600080fd5b50610188600480360360208110156101f357600080fd5b50356001600160a01b0316610766565b34801561020f57600080fd5b506101886004803603602081101561022657600080fd5b5035610951565b34801561023957600080fd5b506102606004803603602081101561025057600080fd5b50356001600160a01b0316610abd565b604080519115158252519081900360200190f35b34801561028057600080fd5b506102606004803603604081101561029757600080fd5b50803590602001356001600160a01b0316610ad2565b3480156102b957600080fd5b506102c2610af2565b60408051918252519081900360200190f35b3480156102e057600080fd5b506102c2600480360360408110156102f757600080fd5b508035151590602001351515610af8565b34801561031457600080fd5b506101886004803603602081101561032b57600080fd5b50356001600160a01b0316610b64565b34801561034757600080fd5b506102606004803603602081101561035e57600080fd5b5035610d67565b34801561037157600080fd5b506101886004803603602081101561038857600080fd5b5035610dee565b34801561039b57600080fd5b506102c2600480360360208110156103b257600080fd5b5035610e77565b3480156103c557600080fd5b506103e3600480360360208110156103dc57600080fd5b5035610ee6565b60405180856001600160a01b03166001600160a01b031681526020018481526020018060200183151515158152602001828103825284818151815260200191508051906020019080838360005b83811015610448578181015183820152602001610430565b50505050905090810190601f1680156104755780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b34801561049257600080fd5b5061049b610fa4565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156104d75781810151838201526020016104bf565b505050509050019250505060405180910390f35b3480156104f757600080fd5b5061049b6004803603608081101561050e57600080fd5b508035906020810135906040810135151590606001351515611007565b34801561053757600080fd5b5061049b6004803603602081101561054e57600080fd5b5035611132565b34801561056157600080fd5b506102c26112a9565b34801561057657600080fd5b506101886004803603602081101561058d57600080fd5b50356112af565b3480156105a057600080fd5b50610188600480360360208110156105b757600080fd5b50356113ad565b3480156105ca57600080fd5b506102c2600480360360608110156105e157600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561061157600080fd5b82018360208201111561062357600080fd5b8035906020019184600183028401116401000000008311171561064557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611553945050505050565b34801561069257600080fd5b506102c2600480360360208110156106a957600080fd5b5035611572565b3480156106bc57600080fd5b506102c2611584565b3480156106d157600080fd5b506102c2611589565b3480156106e657600080fd5b50610188600480360360408110156106fd57600080fd5b506001600160a01b038135811691602001351661158f565b34801561072157600080fd5b506101886004803603602081101561073857600080fd5b50356117c2565b6003818154811061074c57fe5b6000918252602090912001546001600160a01b0316905081565b3330146107b4576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b6001600160a01b038116600090815260026020526040902054819060ff16610818576040805162461bcd60e51b815260206004820152601260248201527113d5d3915497d113d154d39517d1561254d560721b604482015290519081900360640190fd5b6001600160a01b0382166000908152600260205260408120805460ff191690555b600354600019018110156108ec57826001600160a01b03166003828154811061085e57fe5b6000918252602090912001546001600160a01b031614156108e45760038054600019810190811061088b57fe5b600091825260209091200154600380546001600160a01b0390921691839081106108b157fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506108ec565b600101610839565b506003805460001901906109009082611c49565b50600354600454111561091957600354610919906112af565b6040516001600160a01b038316907f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9090600090a25050565b3360008181526002602052604090205460ff166109aa576040805162461bcd60e51b815260206004820152601260248201527113d5d3915497d113d154d39517d1561254d560721b604482015290519081900360640190fd5b60008281526001602090815260408083203380855292529091205483919060ff16610a0f576040805162461bcd60e51b815260206004820152601060248201526f151617d393d517d0d3d391925493515160821b604482015290519081900360640190fd5b600084815260208190526040902060030154849060ff1615610a6e576040805162461bcd60e51b8152602060048201526013602482015272151617d053149150511657d1561150d5551151606a1b604482015290519081900360640190fd5b6000858152600160209081526040808320338085529252808320805460ff191690555187927ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e991a35050505050565b60026020526000908152604090205460ff1681565b600160209081526000928352604080842090915290825290205460ff1681565b60065481565b6000805b600554811015610b5d57838015610b25575060008181526020819052604090206003015460ff16155b80610b495750828015610b49575060008181526020819052604090206003015460ff165b15610b55576001820191505b600101610afc565b5092915050565b333014610bb2576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b6001600160a01b038116600090815260026020526040902054819060ff1615610c11576040805162461bcd60e51b815260206004820152600c60248201526b4f574e45525f45584953545360a01b604482015290519081900360640190fd5b816001600160a01b038116610c5c576040805162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015290519081900360640190fd5b60038054905060010160045460328211158015610c795750818111155b8015610c8457508015155b8015610c8f57508115155b610cd7576040805162461bcd60e51b8152602060048201526014602482015273494e56414c49445f524551554952454d454e545360601b604482015290519081900360640190fd5b6001600160a01b038516600081815260026020526040808220805460ff1916600190811790915560038054918201815583527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b03191684179055517ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d9190a25050505050565b600080805b600354811015610de65760008481526001602052604081206003805491929184908110610d9557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1615610dc9576001820191505b600454821415610dde57600192505050610de9565b600101610d6c565b50505b919050565b333014610e3c576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b60068190556040805182815290517fd1c9101a34feff75cccef14a28785a0279cb0b49c1f321f21f5f422e746b43779181900360200190a150565b6000805b600354811015610ee05760008381526001602052604081206003805491929184908110610ea457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1615610ed8576001820191505b600101610e7b565b50919050565b6000602081815291815260409081902080546001808301546002808501805487516101009582161595909502600019011691909104601f81018890048802840188019096528583526001600160a01b0390931695909491929190830182828015610f915780601f10610f6657610100808354040283529160200191610f91565b820191906000526020600020905b815481529060010190602001808311610f7457829003601f168201915b5050506003909301549192505060ff1684565b60606003805480602002602001604051908101604052809291908181526020018280548015610ffc57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610fde575b505050505090505b90565b606080600554604051908082528060200260200182016040528015611036578160200160208202803883390190505b5090506000805b6005548110156110b757858015611066575060008181526020819052604090206003015460ff16155b8061108a575084801561108a575060008181526020819052604090206003015460ff165b156110af578083838151811061109c57fe5b6020026020010181815250506001820191505b60010161103d565b8787036040519080825280602002602001820160405280156110e3578160200160208202803883390190505b5093508790505b86811015611127578281815181106110fe57fe5b6020026020010151848983038151811061111457fe5b60209081029190910101526001016110ea565b505050949350505050565b606080600380549050604051908082528060200260200182016040528015611164578160200160208202803883390190505b5090506000805b600354811015611227576000858152600160205260408120600380549192918490811061119457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff161561121f57600381815481106111ce57fe5b9060005260206000200160009054906101000a90046001600160a01b03168383815181106111f857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506001820191505b60010161116b565b81604051908082528060200260200182016040528015611251578160200160208202803883390190505b509350600090505b818110156112a15782818151811061126d57fe5b602002602001015184828151811061128157fe5b6001600160a01b0390921660209283029190910190910152600101611259565b505050919050565b60055481565b3330146112fd576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b60035481603282118015906113125750818111155b801561131d57508015155b801561132857508115155b611370576040805162461bcd60e51b8152602060048201526014602482015273494e56414c49445f524551554952454d454e545360601b604482015290519081900360640190fd5b60048390556040805184815290517fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a9181900360200190a1505050565b3360008181526002602052604090205460ff16611406576040805162461bcd60e51b815260206004820152601260248201527113d5d3915497d113d154d39517d1561254d560721b604482015290519081900360640190fd5b60008281526020819052604090205482906001600160a01b0316611463576040805162461bcd60e51b815260206004820152600f60248201526e151617d113d154d39517d1561254d5608a1b604482015290519081900360640190fd5b60008381526001602090815260408083203380855292529091205484919060ff16156114cd576040805162461bcd60e51b8152602060048201526014602482015273151617d053149150511657d0d3d391925493515160621b604482015290519081900360640190fd5b60006114d886610d67565b6000878152600160208181526040808420338086529252808420805460ff19169093179092559051929350889290917f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef91a38015801561153c575061153c86610d67565b1561154b5761154b8642611a25565b505050505050565b6000611560848484611a70565b905061156b816113ad565b9392505050565b60076020526000908152604090205481565b603281565b60045481565b3330146115dd576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b6001600160a01b038216600090815260026020526040902054829060ff16611641576040805162461bcd60e51b815260206004820152601260248201527113d5d3915497d113d154d39517d1561254d560721b604482015290519081900360640190fd5b6001600160a01b038216600090815260026020526040902054829060ff16156116a0576040805162461bcd60e51b815260206004820152600c60248201526b4f574e45525f45584953545360a01b604482015290519081900360640190fd5b60005b60035481101561172857846001600160a01b0316600382815481106116c457fe5b6000918252602090912001546001600160a01b031614156117205783600382815481106116ed57fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611728565b6001016116a3565b506001600160a01b03808516600081815260026020526040808220805460ff1990811690915593871682528082208054909416600117909355915190917f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9091a26040516001600160a01b038416907ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d90600090a250505050565b600081815260208190526040902060030154819060ff1615611821576040805162461bcd60e51b8152602060048201526013602482015272151617d053149150511657d1561150d5551151606a1b604482015290519081900360640190fd5b8161182b81610d67565b611875576040805162461bcd60e51b8152602060048201526016602482015275151617d393d517d19553131657d0d3d391925493515160521b604482015290519081900360640190fd5b6006546000848152600760205260409020548491611899919063ffffffff611b8816565b4210156118e4576040805162461bcd60e51b815260206004820152601460248201527354494d455f4c4f434b5f494e434f4d504c45544560601b604482015290519081900360640190fd5b6000848152602081815260409182902060038101805460ff19166001908117909155815481830154600280850180548851601f6000199783161561010002979097019091169290920494850187900487028201870190975283815293956119b1956001600160a01b039093169491939283908301828280156119a75780601f1061197c576101008083540402835291602001916119a7565b820191906000526020600020905b81548152906001019060200180831161198a57829003601f168201915b5050505050611ba9565b156119e65760405185907f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7590600090a2611a1e565b60405185907f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923690600090a260038101805460ff191690555b5050505050565b6000828152600760209081526040918290208390558151838152915184927f0b237afe65f1514fd7ea3f923ea4fe792bdd07000a912b6cd1602a8e7f573c8d92908290030190a25050565b6000836001600160a01b038116611abd576040805162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015290519081900360640190fd5b600554604080516080810182526001600160a01b038881168252602080830189815283850189815260006060860181905287815280845295909520845181546001600160a01b03191694169390931783555160018301559251805194965091939092611b30926002850192910190611c72565b50606091909101516003909101805460ff191691151591909117905560058054600101905560405182907fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5190600090a2509392505050565b60008282018381101561156b5761156b611ba460008686611bcc565b611c41565b6000806040516020840160008287838a8c6187965a03f198975050505050505050565b606063e946c1bb60e01b84848460405160240180846003811115611bec57fe5b60ff1681526020018381526020018281526020019350505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505090509392505050565b805160208201fd5b815481835581811115611c6d57600083815260209020611c6d918101908301611cf0565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611cb357805160ff1916838001178555611ce0565b82800160010185558215611ce0579182015b82811115611ce0578251825591602001919060010190611cc5565b50611cec929150611cf0565b5090565b61100491905b80821115611cec5760008155600101611cf656fea265627a7a72305820b886338b2e71503165d75a15e9a18a162a43922affbb7b56fc9ddbd0b99825d064736f6c63430005090032000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000035ccd93db6ca6d7a4dcbd72ef389929b4179e4b7000000000000000000000000956fe4948253d088f1b3776ebfb537cb60fd0df90000000000000000000000000e7779b85a003fed82fcde0e16448b0dbb480b82000000000000000000000000c23e9bb8808403b30f01cd922714329387e29994

Deployed ByteCode

0x60806040526004361061014b5760003560e01c8063a0e67e2b116100b6578063c64274741161006f578063c6427474146105be578063d38f2d8214610686578063d74f8edd146106b0578063dc8452cd146106c5578063e20056e6146106da578063ee22610b146107155761014b565b8063a0e67e2b14610486578063a8abe69a146104eb578063b5dc40c31461052b578063b77bf60014610555578063ba51a6df1461056a578063c01a8c84146105945761014b565b8063547415251161010857806354741525146102d45780637065cb4814610308578063784547a71461033b5780637ad28c51146103655780638b51d13f1461038f5780639ace38c2146103b95761014b565b8063025e7c271461018a578063173825d9146101d057806320ea8d86146102035780632f54bf6e1461022d5780633411c81c1461027457806337bd78a0146102ad575b34156101885760408051348152905133917fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c919081900360200190a25b005b34801561019657600080fd5b506101b4600480360360208110156101ad57600080fd5b503561073f565b604080516001600160a01b039092168252519081900360200190f35b3480156101dc57600080fd5b50610188600480360360208110156101f357600080fd5b50356001600160a01b0316610766565b34801561020f57600080fd5b506101886004803603602081101561022657600080fd5b5035610951565b34801561023957600080fd5b506102606004803603602081101561025057600080fd5b50356001600160a01b0316610abd565b604080519115158252519081900360200190f35b34801561028057600080fd5b506102606004803603604081101561029757600080fd5b50803590602001356001600160a01b0316610ad2565b3480156102b957600080fd5b506102c2610af2565b60408051918252519081900360200190f35b3480156102e057600080fd5b506102c2600480360360408110156102f757600080fd5b508035151590602001351515610af8565b34801561031457600080fd5b506101886004803603602081101561032b57600080fd5b50356001600160a01b0316610b64565b34801561034757600080fd5b506102606004803603602081101561035e57600080fd5b5035610d67565b34801561037157600080fd5b506101886004803603602081101561038857600080fd5b5035610dee565b34801561039b57600080fd5b506102c2600480360360208110156103b257600080fd5b5035610e77565b3480156103c557600080fd5b506103e3600480360360208110156103dc57600080fd5b5035610ee6565b60405180856001600160a01b03166001600160a01b031681526020018481526020018060200183151515158152602001828103825284818151815260200191508051906020019080838360005b83811015610448578181015183820152602001610430565b50505050905090810190601f1680156104755780820380516001836020036101000a031916815260200191505b509550505050505060405180910390f35b34801561049257600080fd5b5061049b610fa4565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156104d75781810151838201526020016104bf565b505050509050019250505060405180910390f35b3480156104f757600080fd5b5061049b6004803603608081101561050e57600080fd5b508035906020810135906040810135151590606001351515611007565b34801561053757600080fd5b5061049b6004803603602081101561054e57600080fd5b5035611132565b34801561056157600080fd5b506102c26112a9565b34801561057657600080fd5b506101886004803603602081101561058d57600080fd5b50356112af565b3480156105a057600080fd5b50610188600480360360208110156105b757600080fd5b50356113ad565b3480156105ca57600080fd5b506102c2600480360360608110156105e157600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561061157600080fd5b82018360208201111561062357600080fd5b8035906020019184600183028401116401000000008311171561064557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611553945050505050565b34801561069257600080fd5b506102c2600480360360208110156106a957600080fd5b5035611572565b3480156106bc57600080fd5b506102c2611584565b3480156106d157600080fd5b506102c2611589565b3480156106e657600080fd5b50610188600480360360408110156106fd57600080fd5b506001600160a01b038135811691602001351661158f565b34801561072157600080fd5b506101886004803603602081101561073857600080fd5b50356117c2565b6003818154811061074c57fe5b6000918252602090912001546001600160a01b0316905081565b3330146107b4576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b6001600160a01b038116600090815260026020526040902054819060ff16610818576040805162461bcd60e51b815260206004820152601260248201527113d5d3915497d113d154d39517d1561254d560721b604482015290519081900360640190fd5b6001600160a01b0382166000908152600260205260408120805460ff191690555b600354600019018110156108ec57826001600160a01b03166003828154811061085e57fe5b6000918252602090912001546001600160a01b031614156108e45760038054600019810190811061088b57fe5b600091825260209091200154600380546001600160a01b0390921691839081106108b157fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506108ec565b600101610839565b506003805460001901906109009082611c49565b50600354600454111561091957600354610919906112af565b6040516001600160a01b038316907f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9090600090a25050565b3360008181526002602052604090205460ff166109aa576040805162461bcd60e51b815260206004820152601260248201527113d5d3915497d113d154d39517d1561254d560721b604482015290519081900360640190fd5b60008281526001602090815260408083203380855292529091205483919060ff16610a0f576040805162461bcd60e51b815260206004820152601060248201526f151617d393d517d0d3d391925493515160821b604482015290519081900360640190fd5b600084815260208190526040902060030154849060ff1615610a6e576040805162461bcd60e51b8152602060048201526013602482015272151617d053149150511657d1561150d5551151606a1b604482015290519081900360640190fd5b6000858152600160209081526040808320338085529252808320805460ff191690555187927ff6a317157440607f36269043eb55f1287a5a19ba2216afeab88cd46cbcfb88e991a35050505050565b60026020526000908152604090205460ff1681565b600160209081526000928352604080842090915290825290205460ff1681565b60065481565b6000805b600554811015610b5d57838015610b25575060008181526020819052604090206003015460ff16155b80610b495750828015610b49575060008181526020819052604090206003015460ff165b15610b55576001820191505b600101610afc565b5092915050565b333014610bb2576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b6001600160a01b038116600090815260026020526040902054819060ff1615610c11576040805162461bcd60e51b815260206004820152600c60248201526b4f574e45525f45584953545360a01b604482015290519081900360640190fd5b816001600160a01b038116610c5c576040805162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015290519081900360640190fd5b60038054905060010160045460328211158015610c795750818111155b8015610c8457508015155b8015610c8f57508115155b610cd7576040805162461bcd60e51b8152602060048201526014602482015273494e56414c49445f524551554952454d454e545360601b604482015290519081900360640190fd5b6001600160a01b038516600081815260026020526040808220805460ff1916600190811790915560038054918201815583527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b03191684179055517ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d9190a25050505050565b600080805b600354811015610de65760008481526001602052604081206003805491929184908110610d9557fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1615610dc9576001820191505b600454821415610dde57600192505050610de9565b600101610d6c565b50505b919050565b333014610e3c576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b60068190556040805182815290517fd1c9101a34feff75cccef14a28785a0279cb0b49c1f321f21f5f422e746b43779181900360200190a150565b6000805b600354811015610ee05760008381526001602052604081206003805491929184908110610ea457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff1615610ed8576001820191505b600101610e7b565b50919050565b6000602081815291815260409081902080546001808301546002808501805487516101009582161595909502600019011691909104601f81018890048802840188019096528583526001600160a01b0390931695909491929190830182828015610f915780601f10610f6657610100808354040283529160200191610f91565b820191906000526020600020905b815481529060010190602001808311610f7457829003601f168201915b5050506003909301549192505060ff1684565b60606003805480602002602001604051908101604052809291908181526020018280548015610ffc57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610fde575b505050505090505b90565b606080600554604051908082528060200260200182016040528015611036578160200160208202803883390190505b5090506000805b6005548110156110b757858015611066575060008181526020819052604090206003015460ff16155b8061108a575084801561108a575060008181526020819052604090206003015460ff165b156110af578083838151811061109c57fe5b6020026020010181815250506001820191505b60010161103d565b8787036040519080825280602002602001820160405280156110e3578160200160208202803883390190505b5093508790505b86811015611127578281815181106110fe57fe5b6020026020010151848983038151811061111457fe5b60209081029190910101526001016110ea565b505050949350505050565b606080600380549050604051908082528060200260200182016040528015611164578160200160208202803883390190505b5090506000805b600354811015611227576000858152600160205260408120600380549192918490811061119457fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205460ff161561121f57600381815481106111ce57fe5b9060005260206000200160009054906101000a90046001600160a01b03168383815181106111f857fe5b60200260200101906001600160a01b031690816001600160a01b0316815250506001820191505b60010161116b565b81604051908082528060200260200182016040528015611251578160200160208202803883390190505b509350600090505b818110156112a15782818151811061126d57fe5b602002602001015184828151811061128157fe5b6001600160a01b0390921660209283029190910190910152600101611259565b505050919050565b60055481565b3330146112fd576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b60035481603282118015906113125750818111155b801561131d57508015155b801561132857508115155b611370576040805162461bcd60e51b8152602060048201526014602482015273494e56414c49445f524551554952454d454e545360601b604482015290519081900360640190fd5b60048390556040805184815290517fa3f1ee9126a074d9326c682f561767f710e927faa811f7a99829d49dc421797a9181900360200190a1505050565b3360008181526002602052604090205460ff16611406576040805162461bcd60e51b815260206004820152601260248201527113d5d3915497d113d154d39517d1561254d560721b604482015290519081900360640190fd5b60008281526020819052604090205482906001600160a01b0316611463576040805162461bcd60e51b815260206004820152600f60248201526e151617d113d154d39517d1561254d5608a1b604482015290519081900360640190fd5b60008381526001602090815260408083203380855292529091205484919060ff16156114cd576040805162461bcd60e51b8152602060048201526014602482015273151617d053149150511657d0d3d391925493515160621b604482015290519081900360640190fd5b60006114d886610d67565b6000878152600160208181526040808420338086529252808420805460ff19169093179092559051929350889290917f4a504a94899432a9846e1aa406dceb1bcfd538bb839071d49d1e5e23f5be30ef91a38015801561153c575061153c86610d67565b1561154b5761154b8642611a25565b505050505050565b6000611560848484611a70565b905061156b816113ad565b9392505050565b60076020526000908152604090205481565b603281565b60045481565b3330146115dd576040805162461bcd60e51b815260206004820152601760248201527613d3931657d0d053131050931157d09657d5d053131155604a1b604482015290519081900360640190fd5b6001600160a01b038216600090815260026020526040902054829060ff16611641576040805162461bcd60e51b815260206004820152601260248201527113d5d3915497d113d154d39517d1561254d560721b604482015290519081900360640190fd5b6001600160a01b038216600090815260026020526040902054829060ff16156116a0576040805162461bcd60e51b815260206004820152600c60248201526b4f574e45525f45584953545360a01b604482015290519081900360640190fd5b60005b60035481101561172857846001600160a01b0316600382815481106116c457fe5b6000918252602090912001546001600160a01b031614156117205783600382815481106116ed57fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611728565b6001016116a3565b506001600160a01b03808516600081815260026020526040808220805460ff1990811690915593871682528082208054909416600117909355915190917f8001553a916ef2f495d26a907cc54d96ed840d7bda71e73194bf5a9df7a76b9091a26040516001600160a01b038416907ff39e6e1eb0edcf53c221607b54b00cd28f3196fed0a24994dc308b8f611b682d90600090a250505050565b600081815260208190526040902060030154819060ff1615611821576040805162461bcd60e51b8152602060048201526013602482015272151617d053149150511657d1561150d5551151606a1b604482015290519081900360640190fd5b8161182b81610d67565b611875576040805162461bcd60e51b8152602060048201526016602482015275151617d393d517d19553131657d0d3d391925493515160521b604482015290519081900360640190fd5b6006546000848152600760205260409020548491611899919063ffffffff611b8816565b4210156118e4576040805162461bcd60e51b815260206004820152601460248201527354494d455f4c4f434b5f494e434f4d504c45544560601b604482015290519081900360640190fd5b6000848152602081815260409182902060038101805460ff19166001908117909155815481830154600280850180548851601f6000199783161561010002979097019091169290920494850187900487028201870190975283815293956119b1956001600160a01b039093169491939283908301828280156119a75780601f1061197c576101008083540402835291602001916119a7565b820191906000526020600020905b81548152906001019060200180831161198a57829003601f168201915b5050505050611ba9565b156119e65760405185907f33e13ecb54c3076d8e8bb8c2881800a4d972b792045ffae98fdf46df365fed7590600090a2611a1e565b60405185907f526441bb6c1aba3c9a4a6ca1d6545da9c2333c8c48343ef398eb858d72b7923690600090a260038101805460ff191690555b5050505050565b6000828152600760209081526040918290208390558151838152915184927f0b237afe65f1514fd7ea3f923ea4fe792bdd07000a912b6cd1602a8e7f573c8d92908290030190a25050565b6000836001600160a01b038116611abd576040805162461bcd60e51b815260206004820152600c60248201526b4e554c4c5f4144445245535360a01b604482015290519081900360640190fd5b600554604080516080810182526001600160a01b038881168252602080830189815283850189815260006060860181905287815280845295909520845181546001600160a01b03191694169390931783555160018301559251805194965091939092611b30926002850192910190611c72565b50606091909101516003909101805460ff191691151591909117905560058054600101905560405182907fc0ba8fe4b176c1714197d43b9cc6bcf797a4a7461c5fe8d0ef6e184ae7601e5190600090a2509392505050565b60008282018381101561156b5761156b611ba460008686611bcc565b611c41565b6000806040516020840160008287838a8c6187965a03f198975050505050505050565b606063e946c1bb60e01b84848460405160240180846003811115611bec57fe5b60ff1681526020018381526020018281526020019350505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b03838183161783525050505090509392505050565b805160208201fd5b815481835581811115611c6d57600083815260209020611c6d918101908301611cf0565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611cb357805160ff1916838001178555611ce0565b82800160010185558215611ce0579182015b82811115611ce0578251825591602001919060010190611cc5565b50611cec929150611cf0565b5090565b61100491905b80821115611cec5760008155600101611cf656fea265627a7a72305820b886338b2e71503165d75a15e9a18a162a43922affbb7b56fc9ddbd0b99825d064736f6c63430005090032