ETH Price: $3,363.19 (-1.57%)
Gas: 7 Gwei

Contract

0x0Ee4D60292E70c16A824d4213866833F6f877F58
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Admin Withdraw199104962024-05-20 10:19:2337 days ago1716200363IN
0x0Ee4D602...F6f877F58
0 ETH0.000398127.98382395
Admin Withdraw199104842024-05-20 10:16:5937 days ago1716200219IN
0x0Ee4D602...F6f877F58
0 ETH0.000590818.83055076
Execute Proposal199043892024-05-19 13:50:1138 days ago1716126611IN
0x0Ee4D602...F6f877F58
0 ETH0.000313273.38921623
Vote Proposal199043852024-05-19 13:49:2338 days ago1716126563IN
0x0Ee4D602...F6f877F58
0 ETH0.0006573.19070198
Execute Proposal198826372024-05-16 12:48:1141 days ago1715863691IN
0x0Ee4D602...F6f877F58
0 ETH0.000523925.66900856
Vote Proposal198826322024-05-16 12:47:1141 days ago1715863631IN
0x0Ee4D602...F6f877F58
0 ETH0.001138145.52699711
Execute Proposal198825022024-05-16 12:21:1141 days ago1715862071IN
0x0Ee4D602...F6f877F58
0 ETH0.000503915.45172972
Vote Proposal198824982024-05-16 12:20:2341 days ago1715862023IN
0x0Ee4D602...F6f877F58
0 ETH0.001115195.41555231
Execute Proposal198822042024-05-16 11:21:2341 days ago1715858483IN
0x0Ee4D602...F6f877F58
0 ETH0.000475695.14646956
Vote Proposal198822002024-05-16 11:20:3541 days ago1715858435IN
0x0Ee4D602...F6f877F58
0 ETH0.001113624.99331097
Admin Set Resour...198619882024-05-13 15:27:4744 days ago1715614067IN
0x0Ee4D602...F6f877F58
0 ETH0.0030113225
0x60806040198619722024-05-13 15:24:3544 days ago1715613875IN
 Contract Creation
0 ETH0.10464125

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x96B845aB...FC448C3aD
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Bridge

Compiler Version
v0.6.4+commit.1dca32f3

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-19
*/

// File: @openzeppelin/contracts/utils/EnumerableSet.sol

pragma solidity ^0.6.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: @openzeppelin/contracts/utils/Address.sol

pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
}

// File: @openzeppelin/contracts/GSN/Context.sol

pragma solidity ^0.6.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }

    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol

pragma solidity ^0.6.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: contracts/utils/Pausable.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This is a stripped down version of Open zeppelin's Pausable contract.
 * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/EnumerableSet.sol
 *
 */
contract Pausable {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _whenNotPaused();
        _;
    }

    function _whenNotPaused() private view {
        require(!_paused, "Pausable: paused");
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenPaused() {
        _whenPaused();
        _;
    }

    function _whenPaused() private view {
        require(_paused, "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(msg.sender);
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(msg.sender);
    }
}

// File: contracts/utils/SafeMath.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * note that this is a stripped down version of open zeppelin's safemath
 * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/SafeMath.sol
 */

contract SafeMath {

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return _sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function _sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

}

// File: contracts/interfaces/IDepositExecute.sol

pragma solidity 0.6.4;

/**
    @title Interface for handler contracts that support deposits and deposit executions.
    @author ChainSafe Systems.
 */
interface IDepositExecute {
    /**
        @notice It is intended that deposit are made using the Bridge contract.
        @param destinationChainID Chain ID deposit is expected to be bridged to.
        @param depositNonce This value is generated as an ID by the Bridge contract.
        @param depositer Address of account making the deposit in the Bridge contract.
        @param data Consists of additional data needed for a specific deposit.
     */
    function deposit(bytes32 resourceID, uint8 destinationChainID, uint64 depositNonce, address depositer, bytes calldata data) external;

    /**
        @notice It is intended that proposals are executed by the Bridge contract.
        @param data Consists of additional data needed for a specific deposit execution.
     */
    function executeProposal(bytes32 resourceID, bytes calldata data) external;
}

// File: contracts/interfaces/IBridge.sol

pragma solidity 0.6.4;

/**
    @title Interface for Bridge contract.
    @author ChainSafe Systems.
 */
interface IBridge {
    /**
        @notice Exposing getter for {_chainID} instead of forcing the use of call.
        @return uint8 The {_chainID} that is currently set for the Bridge contract.
     */
    function _chainID() external returns (uint8);
}

// File: contracts/interfaces/IERCHandler.sol

pragma solidity 0.6.4;

/**
    @title Interface to be used with handlers that support ERC20s and ERC721s.
    @author ChainSafe Systems.
 */
interface IERCHandler {
    /**
        @notice Correlates {resourceID} with {contractAddress}.
        @param resourceID ResourceID to be used when making deposits.
        @param contractAddress Address of contract to be called when a deposit is made and a deposited is executed.
     */
    function setResource(bytes32 resourceID, address contractAddress) external;
    /**
        @notice Marks {contractAddress} as mintable/burnable.
        @param contractAddress Address of contract to be used when making or executing deposits.
     */
    function setBurnable(address contractAddress) external;
    /**
        @notice Used to manually release funds from ERC safes.
        @param tokenAddress Address of token contract to release.
        @param recipient Address to release tokens to.
        @param amountOrTokenID Either the amount of ERC20 tokens or the ERC721 token ID to release.
     */
    function withdraw(address tokenAddress, address recipient, uint256 amountOrTokenID) external;
}

// File: contracts/interfaces/IGenericHandler.sol

pragma solidity 0.6.4;

/**
    @title Interface for handler that handles generic deposits and deposit executions.
    @author ChainSafe Systems.
 */
interface IGenericHandler {
    /**
        @notice Correlates {resourceID} with {contractAddress}, {depositFunctionSig}, and {executeFunctionSig}.
        @param resourceID ResourceID to be used when making deposits.
        @param contractAddress Address of contract to be called when a deposit is made and a deposited is executed.
        @param depositFunctionSig Function signature of method to be called in {contractAddress} when a deposit is made.
        @param executeFunctionSig Function signature of method to be called in {contractAddress} when a deposit is executed.
     */
    function setResource(bytes32 resourceID, address contractAddress, bytes4 depositFunctionSig, bytes4 executeFunctionSig) external;
}

// File: contracts/Bridge.sol

pragma solidity 0.6.4;
pragma experimental ABIEncoderV2;








/**
    @title Facilitates deposits, creation and votiing of deposit proposals, and deposit executions.
    @author ChainSafe Systems.
 */
contract Bridge is Pausable, AccessControl, SafeMath {

    uint8   public _chainID;
    uint256 public _relayerThreshold;
    uint256 public _totalRelayers;
    uint256 public _totalProposals;
    uint256 public _fee;
    uint256 public _expiry;

    enum Vote {No, Yes}

    enum ProposalStatus {Inactive, Active, Passed, Executed, Cancelled}

    struct Proposal {
        bytes32 _resourceID;
        bytes32 _dataHash;
        address[] _yesVotes;
        address[] _noVotes;
        ProposalStatus _status;
        uint256 _proposedBlock;
    }

    // destinationChainID => number of deposits
    mapping(uint8 => uint64) public _depositCounts;
    // resourceID => handler address
    mapping(bytes32 => address) public _resourceIDToHandlerAddress;
    // depositNonce => destinationChainID => bytes
    mapping(uint64 => mapping(uint8 => bytes)) public _depositRecords;
    // destinationChainID + depositNonce => dataHash => Proposal
    mapping(uint72 => mapping(bytes32 => Proposal)) public _proposals;
    // destinationChainID + depositNonce => dataHash => relayerAddress => bool
    mapping(uint72 => mapping(bytes32 => mapping(address => bool))) public _hasVotedOnProposal;

    event RelayerThresholdChanged(uint indexed newThreshold);
    event RelayerAdded(address indexed relayer);
    event RelayerRemoved(address indexed relayer);
    event Deposit(
        uint8   indexed destinationChainID,
        bytes32 indexed resourceID,
        uint64  indexed depositNonce
    );
    event ProposalEvent(
        uint8           indexed originChainID,
        uint64          indexed depositNonce,
        ProposalStatus  indexed status,
        bytes32 resourceID,
        bytes32 dataHash
    );

    event ProposalVote(
        uint8   indexed originChainID,
        uint64  indexed depositNonce,
        ProposalStatus indexed status,
        bytes32 resourceID
    );

    bytes32 public constant RELAYER_ROLE = keccak256("RELAYER_ROLE");

    modifier onlyAdmin() {
        _onlyAdmin();
        _;
    }

    modifier onlyAdminOrRelayer() {
        _onlyAdminOrRelayer();
        _;
    }

    modifier onlyRelayers() {
        _onlyRelayers();
        _;
    }

    function _onlyAdminOrRelayer() private {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender) || hasRole(RELAYER_ROLE, msg.sender),
            "sender is not relayer or admin");
    }

    function _onlyAdmin() private {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "sender doesn't have admin role");
    }

    function _onlyRelayers() private {
        require(hasRole(RELAYER_ROLE, msg.sender), "sender doesn't have relayer role");
    }

    /**
        @notice Initializes Bridge, creates and grants {msg.sender} the admin role,
        creates and grants {initialRelayers} the relayer role.
        @param chainID ID of chain the Bridge contract exists on.
        @param initialRelayers Addresses that should be initially granted the relayer role.
        @param initialRelayerThreshold Number of votes needed for a deposit proposal to be considered passed.
     */
    constructor (uint8 chainID, address[] memory initialRelayers, uint initialRelayerThreshold, uint256 fee, uint256 expiry) public {
        _chainID = chainID;
        _relayerThreshold = initialRelayerThreshold;
        _fee = fee;
        _expiry = expiry;

        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setRoleAdmin(RELAYER_ROLE, DEFAULT_ADMIN_ROLE);

        for (uint i; i < initialRelayers.length; i++) {
            grantRole(RELAYER_ROLE, initialRelayers[i]);
            _totalRelayers++;
        }

    }

    /**
        @notice Returns true if {relayer} has the relayer role.
        @param relayer Address to check.
     */
    function isRelayer(address relayer) external view returns (bool) {
        return hasRole(RELAYER_ROLE, relayer);
    }

    /**
        @notice Removes admin role from {msg.sender} and grants it to {newAdmin}.
        @notice Only callable by an address that currently has the admin role.
        @param newAdmin Address that admin role will be granted to.
     */
    function renounceAdmin(address newAdmin) external onlyAdmin {
        grantRole(DEFAULT_ADMIN_ROLE, newAdmin);
        renounceRole(DEFAULT_ADMIN_ROLE, msg.sender);
    }

    /**
        @notice Pauses deposits, proposal creation and voting, and deposit executions.
        @notice Only callable by an address that currently has the admin role.
     */
    function adminPauseTransfers() external onlyAdmin {
        _pause();
    }

    /**
        @notice Unpauses deposits, proposal creation and voting, and deposit executions.
        @notice Only callable by an address that currently has the admin role.
     */
    function adminUnpauseTransfers() external onlyAdmin {
        _unpause();
    }

    /**
        @notice Modifies the number of votes required for a proposal to be considered passed.
        @notice Only callable by an address that currently has the admin role.
        @param newThreshold Value {_relayerThreshold} will be changed to.
        @notice Emits {RelayerThresholdChanged} event.
     */
    function adminChangeRelayerThreshold(uint newThreshold) external onlyAdmin {
        _relayerThreshold = newThreshold;
        emit RelayerThresholdChanged(newThreshold);
    }

    /**
        @notice Grants {relayerAddress} the relayer role and increases {_totalRelayer} count.
        @notice Only callable by an address that currently has the admin role.
        @param relayerAddress Address of relayer to be added.
        @notice Emits {RelayerAdded} event.
     */
    function adminAddRelayer(address relayerAddress) external onlyAdmin {
        require(!hasRole(RELAYER_ROLE, relayerAddress), "addr already has relayer role!");
        grantRole(RELAYER_ROLE, relayerAddress);
        emit RelayerAdded(relayerAddress);
        _totalRelayers++;
    }

    /**
        @notice Removes relayer role for {relayerAddress} and decreases {_totalRelayer} count.
        @notice Only callable by an address that currently has the admin role.
        @param relayerAddress Address of relayer to be removed.
        @notice Emits {RelayerRemoved} event.
     */
    function adminRemoveRelayer(address relayerAddress) external onlyAdmin {
        require(hasRole(RELAYER_ROLE, relayerAddress), "addr doesn't have relayer role!");
        revokeRole(RELAYER_ROLE, relayerAddress);
        emit RelayerRemoved(relayerAddress);
        _totalRelayers--;
    }

    /**
        @notice Sets a new resource for handler contracts that use the IERCHandler interface,
        and maps the {handlerAddress} to {resourceID} in {_resourceIDToHandlerAddress}.
        @notice Only callable by an address that currently has the admin role.
        @param handlerAddress Address of handler resource will be set for.
        @param resourceID ResourceID to be used when making deposits.
        @param tokenAddress Address of contract to be called when a deposit is made and a deposited is executed.
     */
    function adminSetResource(address handlerAddress, bytes32 resourceID, address tokenAddress) external onlyAdmin {
        _resourceIDToHandlerAddress[resourceID] = handlerAddress;
        IERCHandler handler = IERCHandler(handlerAddress);
        handler.setResource(resourceID, tokenAddress);
    }

    /**
        @notice Sets a new resource for handler contracts that use the IGenericHandler interface,
        and maps the {handlerAddress} to {resourceID} in {_resourceIDToHandlerAddress}.
        @notice Only callable by an address that currently has the admin role.
        @param handlerAddress Address of handler resource will be set for.
        @param resourceID ResourceID to be used when making deposits.
        @param contractAddress Address of contract to be called when a deposit is made and a deposited is executed.
     */
    function adminSetGenericResource(
        address handlerAddress,
        bytes32 resourceID,
        address contractAddress,
        bytes4 depositFunctionSig,
        bytes4 executeFunctionSig
    ) external onlyAdmin {
        _resourceIDToHandlerAddress[resourceID] = handlerAddress;
        IGenericHandler handler = IGenericHandler(handlerAddress);
        handler.setResource(resourceID, contractAddress, depositFunctionSig, executeFunctionSig);
    }

    /**
        @notice Sets a resource as burnable for handler contracts that use the IERCHandler interface.
        @notice Only callable by an address that currently has the admin role.
        @param handlerAddress Address of handler resource will be set for.
        @param tokenAddress Address of contract to be called when a deposit is made and a deposited is executed.
     */
    function adminSetBurnable(address handlerAddress, address tokenAddress) external onlyAdmin {
        IERCHandler handler = IERCHandler(handlerAddress);
        handler.setBurnable(tokenAddress);
    }

    /**
        @notice Returns a proposal.
        @param originChainID Chain ID deposit originated from.
        @param depositNonce ID of proposal generated by proposal's origin Bridge contract.
        @param dataHash Hash of data to be provided when deposit proposal is executed.
        @return Proposal which consists of:
        - _dataHash Hash of data to be provided when deposit proposal is executed.
        - _yesVotes Number of votes in favor of proposal.
        - _noVotes Number of votes against proposal.
        - _status Current status of proposal.
     */
    function getProposal(uint8 originChainID, uint64 depositNonce, bytes32 dataHash) external view returns (Proposal memory) {
        uint72 nonceAndID = (uint72(depositNonce) << 8) | uint72(originChainID);
        return _proposals[nonceAndID][dataHash];
    }

    /**
        @notice Changes deposit fee.
        @notice Only callable by admin.
        @param newFee Value {_fee} will be updated to.
     */
    function adminChangeFee(uint newFee) external onlyAdmin {
        require(_fee != newFee, "Current fee is equal to new fee");
        _fee = newFee;
    }

    /**
        @notice Used to manually withdraw funds from ERC safes.
        @param handlerAddress Address of handler to withdraw from.
        @param tokenAddress Address of token to withdraw.
        @param recipient Address to withdraw tokens to.
        @param amountOrTokenID Either the amount of ERC20 tokens or the ERC721 token ID to withdraw.
     */
    function adminWithdraw(
        address handlerAddress,
        address tokenAddress,
        address recipient,
        uint256 amountOrTokenID
    ) external onlyAdmin {
        IERCHandler handler = IERCHandler(handlerAddress);
        handler.withdraw(tokenAddress, recipient, amountOrTokenID);
    }

    /**
        @notice Initiates a transfer using a specified handler contract.
        @notice Only callable when Bridge is not paused.
        @param destinationChainID ID of chain deposit will be bridged to.
        @param resourceID ResourceID used to find address of handler to be used for deposit.
        @param data Additional data to be passed to specified handler.
        @notice Emits {Deposit} event.
     */
    function deposit(uint8 destinationChainID, bytes32 resourceID, bytes calldata data) external payable whenNotPaused {
        require(msg.value == _fee, "Incorrect fee supplied");

        address handler = _resourceIDToHandlerAddress[resourceID];
        require(handler != address(0), "resourceID not mapped to handler");

        uint64 depositNonce = ++_depositCounts[destinationChainID];
        _depositRecords[depositNonce][destinationChainID] = data;

        IDepositExecute depositHandler = IDepositExecute(handler);
        depositHandler.deposit(resourceID, destinationChainID, depositNonce, msg.sender, data);

        emit Deposit(destinationChainID, resourceID, depositNonce);
    }

    /**
        @notice When called, {msg.sender} will be marked as voting in favor of proposal.
        @notice Only callable by relayers when Bridge is not paused.
        @param chainID ID of chain deposit originated from.
        @param depositNonce ID of deposited generated by origin Bridge contract.
        @param dataHash Hash of data provided when deposit was made.
        @notice Proposal must not have already been passed or executed.
        @notice {msg.sender} must not have already voted on proposal.
        @notice Emits {ProposalEvent} event with status indicating the proposal status.
        @notice Emits {ProposalVote} event.
     */
    function voteProposal(uint8 chainID, uint64 depositNonce, bytes32 resourceID, bytes32 dataHash) external onlyRelayers whenNotPaused {

        uint72 nonceAndID = (uint72(depositNonce) << 8) | uint72(chainID);
        Proposal storage proposal = _proposals[nonceAndID][dataHash];

        require(_resourceIDToHandlerAddress[resourceID] != address(0), "no handler for resourceID");
        require(uint(proposal._status) <= 1, "proposal already passed/executed/cancelled");
        require(!_hasVotedOnProposal[nonceAndID][dataHash][msg.sender], "relayer already voted");

        if (uint(proposal._status) == 0) {
            ++_totalProposals;
            _proposals[nonceAndID][dataHash] = Proposal({
                _resourceID : resourceID,
                _dataHash : dataHash,
                _yesVotes : new address[](1),
                _noVotes : new address[](0),
                _status : ProposalStatus.Active,
                _proposedBlock : block.number
                });

            proposal._yesVotes[0] = msg.sender;
            emit ProposalEvent(chainID, depositNonce, ProposalStatus.Active, resourceID, dataHash);
        } else {
            if (sub(block.number, proposal._proposedBlock) > _expiry) {
                // if the number of blocks that has passed since this proposal was
                // submitted exceeds the expiry threshold set, cancel the proposal
                proposal._status = ProposalStatus.Cancelled;
                emit ProposalEvent(chainID, depositNonce, ProposalStatus.Cancelled, resourceID, dataHash);
            } else {
                require(dataHash == proposal._dataHash, "datahash mismatch");
                proposal._yesVotes.push(msg.sender);


            }

        }
        if (proposal._status != ProposalStatus.Cancelled) {
            _hasVotedOnProposal[nonceAndID][dataHash][msg.sender] = true;
            emit ProposalVote(chainID, depositNonce, proposal._status, resourceID);

            // If _depositThreshold is set to 1, then auto finalize
            // or if _relayerThreshold has been exceeded
            if (_relayerThreshold <= 1 || proposal._yesVotes.length >= _relayerThreshold) {
                proposal._status = ProposalStatus.Passed;

                emit ProposalEvent(chainID, depositNonce, ProposalStatus.Passed, resourceID, dataHash);
            }
        }

    }

    /**
        @notice Executes a deposit proposal that is considered passed using a specified handler contract.
        @notice Only callable by relayers when Bridge is not paused.
        @param chainID ID of chain deposit originated from.
        @param depositNonce ID of deposited generated by origin Bridge contract.
        @param dataHash Hash of data originally provided when deposit was made.
        @notice Proposal must be past expiry threshold.
        @notice Emits {ProposalEvent} event with status {Cancelled}.
     */
    function cancelProposal(uint8 chainID, uint64 depositNonce, bytes32 dataHash) public onlyAdminOrRelayer {
        uint72 nonceAndID = (uint72(depositNonce) << 8) | uint72(chainID);
        Proposal storage proposal = _proposals[nonceAndID][dataHash];

        require(proposal._status != ProposalStatus.Cancelled, "Proposal already cancelled");
        require(sub(block.number, proposal._proposedBlock) > _expiry, "Proposal not at expiry threshold");

        proposal._status = ProposalStatus.Cancelled;
        emit ProposalEvent(chainID, depositNonce, ProposalStatus.Cancelled, proposal._resourceID, proposal._dataHash);

    }

    /**
        @notice Executes a deposit proposal that is considered passed using a specified handler contract.
        @notice Only callable by relayers when Bridge is not paused.
        @param chainID ID of chain deposit originated from.
        @param resourceID ResourceID to be used when making deposits.
        @param depositNonce ID of deposited generated by origin Bridge contract.
        @param data Data originally provided when deposit was made.
        @notice Proposal must have Passed status.
        @notice Hash of {data} must equal proposal's {dataHash}.
        @notice Emits {ProposalEvent} event with status {Executed}.
     */
    function executeProposal(uint8 chainID, uint64 depositNonce, bytes calldata data, bytes32 resourceID) external onlyRelayers whenNotPaused {
        address handler = _resourceIDToHandlerAddress[resourceID];
        uint72 nonceAndID = (uint72(depositNonce) << 8) | uint72(chainID);
        bytes32 dataHash = keccak256(abi.encodePacked(handler, data));
        Proposal storage proposal = _proposals[nonceAndID][dataHash];

        require(proposal._status != ProposalStatus.Inactive, "proposal is not active");
        require(proposal._status == ProposalStatus.Passed, "proposal already transferred");
        require(dataHash == proposal._dataHash, "data doesn't match datahash");

        proposal._status = ProposalStatus.Executed;

        IDepositExecute depositHandler = IDepositExecute(_resourceIDToHandlerAddress[proposal._resourceID]);
        depositHandler.executeProposal(proposal._resourceID, data);

        emit ProposalEvent(chainID, depositNonce, proposal._status, proposal._resourceID, proposal._dataHash);
    }

    /**
        @notice Transfers eth in the contract to the specified addresses. The parameters addrs and amounts are mapped 1-1.
        This means that the address at index 0 for addrs will receive the amount (in WEI) from amounts at index 0.
        @param addrs Array of addresses to transfer {amounts} to.
        @param amounts Array of amonuts to transfer to {addrs}.
     */
    function transferFunds(address payable[] calldata addrs, uint[] calldata amounts) external onlyAdmin {
        for (uint i = 0; i < addrs.length; i++) {
            addrs[i].transfer(amounts[i]);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint8","name":"chainID","type":"uint8"},{"internalType":"address[]","name":"initialRelayers","type":"address[]"},{"internalType":"uint256","name":"initialRelayerThreshold","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"destinationChainID","type":"uint8"},{"indexed":true,"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"indexed":true,"internalType":"uint64","name":"depositNonce","type":"uint64"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"originChainID","type":"uint8"},{"indexed":true,"internalType":"uint64","name":"depositNonce","type":"uint64"},{"indexed":true,"internalType":"enum Bridge.ProposalStatus","name":"status","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"dataHash","type":"bytes32"}],"name":"ProposalEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint8","name":"originChainID","type":"uint8"},{"indexed":true,"internalType":"uint64","name":"depositNonce","type":"uint64"},{"indexed":true,"internalType":"enum Bridge.ProposalStatus","name":"status","type":"uint8"},{"indexed":false,"internalType":"bytes32","name":"resourceID","type":"bytes32"}],"name":"ProposalVote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"relayer","type":"address"}],"name":"RelayerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"relayer","type":"address"}],"name":"RelayerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"RelayerThresholdChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RELAYER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_chainID","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"_depositCounts","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint64","name":"","type":"uint64"},{"internalType":"uint8","name":"","type":"uint8"}],"name":"_depositRecords","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_expiry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint72","name":"","type":"uint72"},{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"address","name":"","type":"address"}],"name":"_hasVotedOnProposal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint72","name":"","type":"uint72"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"_proposals","outputs":[{"internalType":"bytes32","name":"_resourceID","type":"bytes32"},{"internalType":"bytes32","name":"_dataHash","type":"bytes32"},{"internalType":"enum Bridge.ProposalStatus","name":"_status","type":"uint8"},{"internalType":"uint256","name":"_proposedBlock","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_relayerThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"_resourceIDToHandlerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalProposals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalRelayers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"relayerAddress","type":"address"}],"name":"adminAddRelayer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"adminChangeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newThreshold","type":"uint256"}],"name":"adminChangeRelayerThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adminPauseTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"relayerAddress","type":"address"}],"name":"adminRemoveRelayer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"adminSetBurnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"address","name":"contractAddress","type":"address"},{"internalType":"bytes4","name":"depositFunctionSig","type":"bytes4"},{"internalType":"bytes4","name":"executeFunctionSig","type":"bytes4"}],"name":"adminSetGenericResource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"adminSetResource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"adminUnpauseTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amountOrTokenID","type":"uint256"}],"name":"adminWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"chainID","type":"uint8"},{"internalType":"uint64","name":"depositNonce","type":"uint64"},{"internalType":"bytes32","name":"dataHash","type":"bytes32"}],"name":"cancelProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"destinationChainID","type":"uint8"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"chainID","type":"uint8"},{"internalType":"uint64","name":"depositNonce","type":"uint64"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"}],"name":"executeProposal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"originChainID","type":"uint8"},{"internalType":"uint64","name":"depositNonce","type":"uint64"},{"internalType":"bytes32","name":"dataHash","type":"bytes32"}],"name":"getProposal","outputs":[{"components":[{"internalType":"bytes32","name":"_resourceID","type":"bytes32"},{"internalType":"bytes32","name":"_dataHash","type":"bytes32"},{"internalType":"address[]","name":"_yesVotes","type":"address[]"},{"internalType":"address[]","name":"_noVotes","type":"address[]"},{"internalType":"enum Bridge.ProposalStatus","name":"_status","type":"uint8"},{"internalType":"uint256","name":"_proposedBlock","type":"uint256"}],"internalType":"struct Bridge.Proposal","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"relayer","type":"address"}],"name":"isRelayer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"renounceAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable[]","name":"addrs","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"transferFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"chainID","type":"uint8"},{"internalType":"uint64","name":"depositNonce","type":"uint64"},{"internalType":"bytes32","name":"resourceID","type":"bytes32"},{"internalType":"bytes32","name":"dataHash","type":"bytes32"}],"name":"voteProposal","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x6080604052600436106102305760003560e01c806384db809f1161012e578063beab7131116100ab578063cdb0f73a1161006f578063cdb0f73a14610877578063d547741f146108a0578063d7a9cd79146108c9578063e8437ee7146108f4578063ffaac0eb1461091d57610230565b8063beab713114610790578063c5b37c22146107bb578063c5ec8970146107e6578063ca15c87314610811578063cb10f2151461084e57610230565b8063926d7d7f116100f2578063926d7d7f146106a95780639d5773e0146106d45780639d82dd63146106ff578063a217fddf14610728578063a9cf69fa1461075357610230565b806384db809f146105a05780638c0c2631146105dd5780639010d07c1461060657806391c404ac1461064357806391d148541461066c57610230565b80634b0b919d116101bc5780635e1fab0f116101805780635e1fab0f146104cf578063780cf004146104f85780637febe63f14610521578063802aabe81461055e57806380ae1c281461058957610230565b80634b0b919d146103c15780634e056005146103fe5780635059871914610427578063541d5548146104675780635c975abb146104a457610230565b80632f2ff15d116102035780632f2ff15d146102e057806336568abe146103095780633ee7094a146103325780634454b20d1461036f5780634603ae381461039857610230565b806305e2ca171461023557806317f03ce5146102515780631ff013f11461027a578063248a9ca3146102a3575b600080fd5b61024f600480360381019061024a9190613229565b610934565b005b34801561025d57600080fd5b5061027860048036038101906102739190613295565b610b91565b005b34801561028657600080fd5b506102a1600480360381019061029c91906132e4565b610d3e565b005b3480156102af57600080fd5b506102ca60048036038101906102c5919061306f565b6114bf565b6040516102d79190613df0565b60405180910390f35b3480156102ec57600080fd5b5061030760048036038101906103029190613098565b6114df565b005b34801561031557600080fd5b50610330600480360381019061032b9190613098565b611553565b005b34801561033e57600080fd5b5061035960048036038101906103549190613139565b6115d6565b6040516103669190613f75565b60405180910390f35b34801561037b57600080fd5b5061039660048036038101906103919190613347565b611693565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612ffa565b6119d4565b005b3480156103cd57600080fd5b506103e860048036038101906103e39190613200565b611a7a565b6040516103f591906142d6565b60405180910390f35b34801561040a57600080fd5b5061042560048036038101906104209190613110565b611aa1565b005b34801561043357600080fd5b5061044e60048036038101906104499190613175565b611ae0565b60405161045e9493929190613ea2565b60405180910390f35b34801561047357600080fd5b5061048e60048036038101906104899190612e43565b611b2a565b60405161049b9190613dd5565b60405180910390f35b3480156104b057600080fd5b506104b9611b50565b6040516104c69190613dd5565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f19190612e43565b611b66565b005b34801561050457600080fd5b5061051f600480360381019061051a9190612ed1565b611b8b565b005b34801561052d57600080fd5b50610548600480360381019061054391906131b1565b611c0e565b6040516105559190613dd5565b60405180910390f35b34801561056a57600080fd5b50610573611c4a565b60405161058091906142bb565b60405180910390f35b34801561059557600080fd5b5061059e611c50565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061306f565b611c62565b6040516105d49190613d68565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190612e95565b611c95565b005b34801561061257600080fd5b5061062d600480360381019061062891906130d4565b611d12565b60405161063a9190613d68565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613110565b611d44565b005b34801561067857600080fd5b50610693600480360381019061068e9190613098565b611d9b565b6040516106a09190613dd5565b60405180910390f35b3480156106b557600080fd5b506106be611dcd565b6040516106cb9190613df0565b60405180910390f35b3480156106e057600080fd5b506106e9611de4565b6040516106f691906142bb565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190612e43565b611dea565b005b34801561073457600080fd5b5061073d611ec4565b60405161074a9190613df0565b60405180910390f35b34801561075f57600080fd5b5061077a60048036038101906107759190613295565b611ecb565b6040516107879190614299565b60405180910390f35b34801561079c57600080fd5b506107a56120ac565b6040516107b291906142f1565b60405180910390f35b3480156107c757600080fd5b506107d06120bf565b6040516107dd91906142bb565b60405180910390f35b3480156107f257600080fd5b506107fb6120c5565b60405161080891906142bb565b60405180910390f35b34801561081d57600080fd5b506108386004803603810190610833919061306f565b6120cb565b60405161084591906142bb565b60405180910390f35b34801561085a57600080fd5b5061087560048036038101906108709190612f34565b6120f2565b005b34801561088357600080fd5b5061089e60048036038101906108999190612e43565b6121c4565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613098565b61229e565b005b3480156108d557600080fd5b506108de612312565b6040516108eb91906142bb565b60405180910390f35b34801561090057600080fd5b5061091b60048036038101906109169190612f83565b612318565b005b34801561092957600080fd5b506109326123f0565b005b61093c612402565b6006543414610980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610977906140b9565b60405180910390fd5b60006009600085815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90614119565b60405180910390fd5b6000600860008760ff1660ff168152602001908152602001600020600081819054906101000a900467ffffffffffffffff1660010191906101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905590508383600a60008467ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060008960ff1660ff1681526020019081526020016000209190610ad1929190612b04565b5060008290508073ffffffffffffffffffffffffffffffffffffffff166338995da9878985338a8a6040518763ffffffff1660e01b8152600401610b1a96959493929190613f19565b600060405180830381600087803b158015610b3457600080fd5b505af1158015610b48573d6000803e3d6000fd5b505050508167ffffffffffffffff16868860ff167fdbb69440df8433824a026ef190652f29929eb64b4d1d5d2a69be8afe3e6eaed860405160405180910390a450505050505050565b610b99612453565b60008360ff1660088467ffffffffffffffff1668ffffffffffffffffff16901b1790506000600b60008368ffffffffffffffffff1668ffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000209050600480811115610c0657fe5b8160040160009054906101000a900460ff166004811115610c2357fe5b1415610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906140f9565b60405180910390fd5b600754610c754383600501546124c5565b11610cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cac90614159565b60405180910390fd5b60048160040160006101000a81548160ff02191690836004811115610cd657fe5b0217905550600480811115610ce757fe5b8467ffffffffffffffff168660ff167f803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab65041784600001548560010154604051610d2f929190613e79565b60405180910390a45050505050565b610d4661250f565b610d4e612402565b60008460ff1660088567ffffffffffffffff1668ffffffffffffffffff16901b1790506000600b60008368ffffffffffffffffff1668ffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff166009600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4990614259565b60405180910390fd5b60018160040160009054906101000a900460ff166004811115610e7157fe5b1115610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea9906141b9565b60405180910390fd5b600c60008368ffffffffffffffffff1668ffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90614059565b60405180910390fd5b60008160040160009054906101000a900460ff166004811115610f9657fe5b14156111b657600560008154600101919050819055506040518060c001604052808581526020018481526020016001604051908082528060200260200182016040528015610ff35781602001602082028036833780820191505090505b50815260200160006040519080825280602002602001820160405280156110295781602001602082028036833780820191505090505b5081526020016001600481111561103c57fe5b815260200143815250600b60008468ffffffffffffffffff1668ffffffffffffffffff1681526020019081526020016000206000858152602001908152602001600020600082015181600001556020820151816001015560408201518160020190805190602001906110af929190612b84565b5060608201518160030190805190602001906110cc929190612b84565b5060808201518160040160006101000a81548160ff021916908360048111156110f157fe5b021790555060a08201518160050155905050338160020160008154811061111457fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600481111561116957fe5b8567ffffffffffffffff168760ff167f803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab65041787876040516111a9929190613e79565b60405180910390a46112f9565b6007546111c74383600501546124c5565b111561124c5760048160040160006101000a81548160ff021916908360048111156111ee57fe5b02179055506004808111156111ff57fe5b8567ffffffffffffffff168760ff167f803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab650417878760405161123f929190613e79565b60405180910390a46112f8565b80600101548314611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990614239565b60405180910390fd5b80600201339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5b60048081111561130557fe5b8160040160009054906101000a900460ff16600481111561132257fe5b146114b7576001600c60008468ffffffffffffffffff1668ffffffffffffffffff168152602001908152602001600020600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508060040160009054906101000a900460ff1660048111156113d457fe5b8567ffffffffffffffff168760ff167f25f8daaa4635a7729927ba3f5b3d59cc3320aca7c32c9db4e7ca7b9574343640876040516114129190613df0565b60405180910390a460016003541115806114355750600354816002018054905010155b156114b65760028160040160006101000a81548160ff0219169083600481111561145b57fe5b02179055506002600481111561146d57fe5b8567ffffffffffffffff168760ff167f803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab65041787876040516114ad929190613e79565b60405180910390a45b5b505050505050565b600060016000838152602001908152602001600020600201549050919050565b611506600160008481526020019081526020016000206002015461150161256d565b611d9b565b611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90614039565b60405180910390fd5b61154f8282612575565b5050565b61155b61256d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146115c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bf90614279565b60405180910390fd5b6115d28282612609565b5050565b600a602052816000526040600020602052806000526040600020600091509150508054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561168b5780601f106116605761010080835404028352916020019161168b565b820191906000526020600020905b81548152906001019060200180831161166e57829003601f168201915b505050505081565b61169b61250f565b6116a3612402565b60006009600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008660ff1660088767ffffffffffffffff1668ffffffffffffffffff16901b179050600082868660405160200161171593929190613d29565b6040516020818303038152906040528051906020012090506000600b60008468ffffffffffffffffff1668ffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002090506000600481111561177857fe5b8160040160009054906101000a900460ff16600481111561179557fe5b14156117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90613fd9565b60405180910390fd5b600260048111156117e357fe5b8160040160009054906101000a900460ff16600481111561180057fe5b14611840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183790613fb9565b60405180910390fd5b80600101548214611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d906140d9565b60405180910390fd5b60038160040160006101000a81548160ff021916908360048111156118a757fe5b02179055506000600960008360000154815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff1663e248cff283600001548a8a6040518463ffffffff1660e01b815260040161192993929190613ee7565b600060405180830381600087803b15801561194357600080fd5b505af1158015611957573d6000803e3d6000fd5b505050508160040160009054906101000a900460ff16600481111561197857fe5b8967ffffffffffffffff168b60ff167f803c5a12f6bde629cea32e63d4b92d1b560816a6fb72e939d3c89e1cab650417856000015486600101546040516119c0929190613e79565b60405180910390a450505050505050505050565b6119dc61269d565b60008090505b84849050811015611a73578484828181106119f957fe5b9050602002016020810190611a0e9190612e6c565b73ffffffffffffffffffffffffffffffffffffffff166108fc848484818110611a3357fe5b905060200201359081150290604051600060405180830381858888f19350505050158015611a65573d6000803e3d6000fd5b5080806001019150506119e2565b5050505050565b60086020528060005260406000206000915054906101000a900467ffffffffffffffff1681565b611aa961269d565b80600381905550807fa20d6b84cd798a24038be305eff8a45ca82ef54a2aa2082005d8e14c0a4746c860405160405180910390a250565b600b602052816000526040600020602052806000526040600020600091509150508060000154908060010154908060040160009054906101000a900460ff16908060050154905084565b6000611b49604051611b3b90613d53565b604051809103902083611d9b565b9050919050565b60008060009054906101000a900460ff16905090565b611b6e61269d565b611b7b6000801b826114df565b611b886000801b33611553565b50565b611b9361269d565b60008490508073ffffffffffffffffffffffffffffffffffffffff1663d9caed128585856040518463ffffffff1660e01b8152600401611bd593929190613d9e565b600060405180830381600087803b158015611bef57600080fd5b505af1158015611c03573d6000803e3d6000fd5b505050505050505050565b600c602052826000526040600020602052816000526040600020602052806000526040600020600092509250509054906101000a900460ff1681565b60045481565b611c5861269d565b611c606126eb565b565b60096020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611c9d61269d565b60008290508073ffffffffffffffffffffffffffffffffffffffff166307b7ed99836040518263ffffffff1660e01b8152600401611cdb9190613d68565b600060405180830381600087803b158015611cf557600080fd5b505af1158015611d09573d6000803e3d6000fd5b50505050505050565b6000611d3c826001600086815260200190815260200160002060000161274690919063ffffffff16565b905092915050565b611d4c61269d565b806006541415611d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8890614219565b60405180910390fd5b8060068190555050565b6000611dc5826001600086815260200190815260200160002060000161276090919063ffffffff16565b905092915050565b604051611dd990613d53565b604051809103902081565b60055481565b611df261269d565b611e0f604051611e0190613d53565b604051809103902082611d9b565b611e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4590614099565b60405180910390fd5b611e6b604051611e5d90613d53565b60405180910390208261229e565b8073ffffffffffffffffffffffffffffffffffffffff167f10e1f7ce9fd7d1b90a66d13a2ab3cb8dd7f29f3f8d520b143b063ccfbab6906b60405160405180910390a26004600081548092919060019003919050555050565b6000801b81565b611ed3612c0e565b60008460ff1660088567ffffffffffffffff1668ffffffffffffffffff16901b179050600b60008268ffffffffffffffffff1668ffffffffffffffffff16815260200190815260200160002060008481526020019081526020016000206040518060c0016040529081600082015481526020016001820154815260200160028201805480602002602001604051908101604052809291908181526020018280548015611fd457602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311611f8a575b505050505081526020016003820180548060200260200160405190810160405280929190818152602001828054801561206257602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311612018575b505050505081526020016004820160009054906101000a900460ff16600481111561208957fe5b600481111561209457fe5b81526020016005820154815250509150509392505050565b600260009054906101000a900460ff1681565b60065481565b60075481565b60006120eb60016000848152602001908152602001600020600001612790565b9050919050565b6120fa61269d565b826009600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008390508073ffffffffffffffffffffffffffffffffffffffff1663b8fa373684846040518363ffffffff1660e01b815260040161218c929190613e0b565b600060405180830381600087803b1580156121a657600080fd5b505af11580156121ba573d6000803e3d6000fd5b5050505050505050565b6121cc61269d565b6121e96040516121db90613d53565b604051809103902082611d9b565b15612229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222090614199565b60405180910390fd5b61224660405161223890613d53565b6040518091039020826114df565b8073ffffffffffffffffffffffffffffffffffffffff167f03580ee9f53a62b7cb409a2cb56f9be87747dd15017afc5cef6eef321e4fb2c560405160405180910390a260046000815480929190600101919050555050565b6122c560016000848152602001908152602001600020600201546122c061256d565b611d9b565b612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb90614139565b60405180910390fd5b61230e8282612609565b5050565b60035481565b61232061269d565b846009600086815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008590508073ffffffffffffffffffffffffffffffffffffffff1663bba8185a868686866040518563ffffffff1660e01b81526004016123b69493929190613e34565b600060405180830381600087803b1580156123d057600080fd5b505af11580156123e4573d6000803e3d6000fd5b50505050505050505050565b6123f861269d565b6124006127a5565b565b6000809054906101000a900460ff1615612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890614179565b60405180910390fd5b565b6124606000801b33611d9b565b80612484575061248360405161247590613d53565b604051809103902033611d9b565b5b6124c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ba90614019565b60405180910390fd5b565b600061250783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612800565b905092915050565b61252c60405161251e90613d53565b604051809103902033611d9b565b61256b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612562906141d9565b60405180910390fd5b565b600033905090565b61259d816001600085815260200190815260200160002060000161285b90919063ffffffff16565b15612605576125aa61256d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612631816001600085815260200190815260200160002060000161288b90919063ffffffff16565b156126995761263e61256d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6126aa6000801b33611d9b565b6126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e0906141f9565b60405180910390fd5b565b6126f3612402565b60016000806101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2583360405161273c9190613d83565b60405180910390a1565b600061275583600001836128bb565b60001c905092915050565b6000612788836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612928565b905092915050565b600061279e8260000161294b565b9050919050565b6127ad61295c565b60008060006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336040516127f69190613d83565b60405180910390a1565b6000838311158290612848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283f9190613f97565b60405180910390fd5b5060008385039050809150509392505050565b6000612883836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6129ac565b905092915050565b60006128b3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612a1c565b905092915050565b600081836000018054905011612906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fd90613ff9565b60405180910390fd5b82600001828154811061291557fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b6000809054906101000a900460ff166129aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a190614079565b60405180910390fd5b565b60006129b88383612928565b612a11578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612a16565b600090505b92915050565b60008083600101600084815260200190815260200160002054905060008114612af85760006001820390506000600186600001805490500390506000866000018281548110612a6757fe5b9060005260206000200154905080876000018481548110612a8457fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612abc57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050612afe565b60009150505b92915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612b4557803560ff1916838001178555612b73565b82800160010185558215612b73579182015b82811115612b72578235825591602001919060010190612b57565b5b509050612b809190612c55565b5090565b828054828255906000526020600020908101928215612bfd579160200282015b82811115612bfc5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612ba4565b5b509050612c0a9190612c7a565b5090565b6040518060c001604052806000801916815260200160008019168152602001606081526020016060815260200160006004811115612c4857fe5b8152602001600081525090565b612c7791905b80821115612c73576000816000905550600101612c5b565b5090565b90565b612cba91905b80821115612cb657600081816101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905550600101612c80565b5090565b90565b600081359050612ccc81614545565b92915050565b600081359050612ce18161455c565b92915050565b60008083601f840112612cf957600080fd5b8235905067ffffffffffffffff811115612d1257600080fd5b602083019150836020820283011115612d2a57600080fd5b9250929050565b60008083601f840112612d4357600080fd5b8235905067ffffffffffffffff811115612d5c57600080fd5b602083019150836020820283011115612d7457600080fd5b9250929050565b600081359050612d8a81614573565b92915050565b600081359050612d9f8161458a565b92915050565b60008083601f840112612db757600080fd5b8235905067ffffffffffffffff811115612dd057600080fd5b602083019150836001820283011115612de857600080fd5b9250929050565b600081359050612dfe816145a1565b92915050565b600081359050612e13816145b8565b92915050565b600081359050612e28816145cf565b92915050565b600081359050612e3d816145e6565b92915050565b600060208284031215612e5557600080fd5b6000612e6384828501612cbd565b91505092915050565b600060208284031215612e7e57600080fd5b6000612e8c84828501612cd2565b91505092915050565b60008060408385031215612ea857600080fd5b6000612eb685828601612cbd565b9250506020612ec785828601612cbd565b9150509250929050565b60008060008060808587031215612ee757600080fd5b6000612ef587828801612cbd565b9450506020612f0687828801612cbd565b9350506040612f1787828801612cbd565b9250506060612f2887828801612def565b91505092959194509250565b600080600060608486031215612f4957600080fd5b6000612f5786828701612cbd565b9350506020612f6886828701612d7b565b9250506040612f7986828701612cbd565b9150509250925092565b600080600080600060a08688031215612f9b57600080fd5b6000612fa988828901612cbd565b9550506020612fba88828901612d7b565b9450506040612fcb88828901612cbd565b9350506060612fdc88828901612d90565b9250506080612fed88828901612d90565b9150509295509295909350565b6000806000806040858703121561301057600080fd5b600085013567ffffffffffffffff81111561302a57600080fd5b61303687828801612ce7565b9450945050602085013567ffffffffffffffff81111561305557600080fd5b61306187828801612d31565b925092505092959194509250565b60006020828403121561308157600080fd5b600061308f84828501612d7b565b91505092915050565b600080604083850312156130ab57600080fd5b60006130b985828601612d7b565b92505060206130ca85828601612cbd565b9150509250929050565b600080604083850312156130e757600080fd5b60006130f585828601612d7b565b925050602061310685828601612def565b9150509250929050565b60006020828403121561312257600080fd5b600061313084828501612def565b91505092915050565b6000806040838503121561314c57600080fd5b600061315a85828601612e04565b925050602061316b85828601612e2e565b9150509250929050565b6000806040838503121561318857600080fd5b600061319685828601612e19565b92505060206131a785828601612d7b565b9150509250929050565b6000806000606084860312156131c657600080fd5b60006131d486828701612e19565b93505060206131e586828701612d7b565b92505060406131f686828701612cbd565b9150509250925092565b60006020828403121561321257600080fd5b600061322084828501612e2e565b91505092915050565b6000806000806060858703121561323f57600080fd5b600061324d87828801612e2e565b945050602061325e87828801612d7b565b935050604085013567ffffffffffffffff81111561327b57600080fd5b61328787828801612da5565b925092505092959194509250565b6000806000606084860312156132aa57600080fd5b60006132b886828701612e2e565b93505060206132c986828701612e04565b92505060406132da86828701612d7b565b9150509250925092565b600080600080608085870312156132fa57600080fd5b600061330887828801612e2e565b945050602061331987828801612e04565b935050604061332a87828801612d7b565b925050606061333b87828801612d7b565b91505092959194509250565b60008060008060006080868803121561335f57600080fd5b600061336d88828901612e2e565b955050602061337e88828901612e04565b945050604086013567ffffffffffffffff81111561339b57600080fd5b6133a788828901612da5565b935093505060606133ba88828901612d7b565b9150509295509295909350565b60006133d383836133ee565b60208301905092915050565b6133e88161446c565b82525050565b6133f781614393565b82525050565b61340681614393565b82525050565b61341d61341882614393565b6144f6565b82525050565b600061342e8261431c565b613438818561434a565b93506134438361430c565b8060005b8381101561347457815161345b88826133c7565b97506134668361433d565b925050600181019050613447565b5085935050505092915050565b61348a816143b7565b82525050565b613499816143c3565b82525050565b6134a8816143c3565b82525050565b6134b7816143cd565b82525050565b60006134c9838561435b565b93506134d68385846144b4565b6134df8361451a565b840190509392505050565b60006134f6838561436c565b93506135038385846144b4565b82840190509392505050565b600061351a82614327565b613524818561435b565b93506135348185602086016144c3565b61353d8161451a565b840191505092915050565b6135518161447e565b82525050565b6135608161447e565b82525050565b600061357182614332565b61357b8185614377565b935061358b8185602086016144c3565b6135948161451a565b840191505092915050565b60006135ac601c83614377565b91507f70726f706f73616c20616c7265616479207472616e73666572726564000000006000830152602082019050919050565b60006135ec601683614377565b91507f70726f706f73616c206973206e6f7420616374697665000000000000000000006000830152602082019050919050565b600061362c602283614377565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613692601e83614377565b91507f73656e646572206973206e6f742072656c61796572206f722061646d696e00006000830152602082019050919050565b60006136d2602f83614377565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f206772616e7400000000000000000000000000000000006020830152604082019050919050565b6000613738601583614377565b91507f72656c6179657220616c726561647920766f74656400000000000000000000006000830152602082019050919050565b6000613778601483614377565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006137b8601f83614377565b91507f6164647220646f65736e277420686176652072656c6179657220726f6c6521006000830152602082019050919050565b60006137f8601683614377565b91507f496e636f72726563742066656520737570706c696564000000000000000000006000830152602082019050919050565b6000613838601b83614377565b91507f6461746120646f65736e2774206d6174636820646174616861736800000000006000830152602082019050919050565b6000613878601a83614377565b91507f50726f706f73616c20616c72656164792063616e63656c6c65640000000000006000830152602082019050919050565b60006138b8602083614377565b91507f7265736f757263654944206e6f74206d617070656420746f2068616e646c65726000830152602082019050919050565b60006138f8603083614377565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f207265766f6b65000000000000000000000000000000006020830152604082019050919050565b600061395e602083614377565b91507f50726f706f73616c206e6f7420617420657870697279207468726573686f6c646000830152602082019050919050565b600061399e601083614377565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006139de601e83614377565b91507f6164647220616c7265616479206861732072656c6179657220726f6c652100006000830152602082019050919050565b6000613a1e602a83614377565b91507f70726f706f73616c20616c7265616479207061737365642f657865637574656460008301527f2f63616e63656c6c6564000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a84602083614377565b91507f73656e64657220646f65736e277420686176652072656c6179657220726f6c656000830152602082019050919050565b6000613ac4601e83614377565b91507f73656e64657220646f65736e277420686176652061646d696e20726f6c6500006000830152602082019050919050565b6000613b04601f83614377565b91507f43757272656e742066656520697320657175616c20746f206e657720666565006000830152602082019050919050565b6000613b44600c83614388565b91507f52454c415945525f524f4c4500000000000000000000000000000000000000006000830152600c82019050919050565b6000613b84601183614377565b91507f6461746168617368206d69736d617463680000000000000000000000000000006000830152602082019050919050565b6000613bc4601983614377565b91507f6e6f2068616e646c657220666f72207265736f757263654944000000000000006000830152602082019050919050565b6000613c04602f83614377565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b600060c083016000830151613c756000860182613490565b506020830151613c886020860182613490565b5060408301518482036040860152613ca08282613423565b91505060608301518482036060860152613cba8282613423565b9150506080830151613ccf6080860182613548565b5060a0830151613ce260a0860182613ced565b508091505092915050565b613cf68161442c565b82525050565b613d058161442c565b82525050565b613d1481614436565b82525050565b613d238161445f565b82525050565b6000613d35828661340c565b601482019150613d468284866134ea565b9150819050949350505050565b6000613d5e82613b37565b9150819050919050565b6000602082019050613d7d60008301846133fd565b92915050565b6000602082019050613d9860008301846133df565b92915050565b6000606082019050613db360008301866133fd565b613dc060208301856133fd565b613dcd6040830184613cfc565b949350505050565b6000602082019050613dea6000830184613481565b92915050565b6000602082019050613e05600083018461349f565b92915050565b6000604082019050613e20600083018561349f565b613e2d60208301846133fd565b9392505050565b6000608082019050613e49600083018761349f565b613e5660208301866133fd565b613e6360408301856134ae565b613e7060608301846134ae565b95945050505050565b6000604082019050613e8e600083018561349f565b613e9b602083018461349f565b9392505050565b6000608082019050613eb7600083018761349f565b613ec4602083018661349f565b613ed16040830185613557565b613ede6060830184613cfc565b95945050505050565b6000604082019050613efc600083018661349f565b8181036020830152613f0f8184866134bd565b9050949350505050565b600060a082019050613f2e600083018961349f565b613f3b6020830188613d1a565b613f486040830187613d0b565b613f5560608301866133df565b8181036080830152613f688184866134bd565b9050979650505050505050565b60006020820190508181036000830152613f8f818461350f565b905092915050565b60006020820190508181036000830152613fb18184613566565b905092915050565b60006020820190508181036000830152613fd28161359f565b9050919050565b60006020820190508181036000830152613ff2816135df565b9050919050565b600060208201905081810360008301526140128161361f565b9050919050565b6000602082019050818103600083015261403281613685565b9050919050565b60006020820190508181036000830152614052816136c5565b9050919050565b600060208201905081810360008301526140728161372b565b9050919050565b600060208201905081810360008301526140928161376b565b9050919050565b600060208201905081810360008301526140b2816137ab565b9050919050565b600060208201905081810360008301526140d2816137eb565b9050919050565b600060208201905081810360008301526140f28161382b565b9050919050565b600060208201905081810360008301526141128161386b565b9050919050565b60006020820190508181036000830152614132816138ab565b9050919050565b60006020820190508181036000830152614152816138eb565b9050919050565b6000602082019050818103600083015261417281613951565b9050919050565b6000602082019050818103600083015261419281613991565b9050919050565b600060208201905081810360008301526141b2816139d1565b9050919050565b600060208201905081810360008301526141d281613a11565b9050919050565b600060208201905081810360008301526141f281613a77565b9050919050565b6000602082019050818103600083015261421281613ab7565b9050919050565b6000602082019050818103600083015261423281613af7565b9050919050565b6000602082019050818103600083015261425281613b77565b9050919050565b6000602082019050818103600083015261427281613bb7565b9050919050565b6000602082019050818103600083015261429281613bf7565b9050919050565b600060208201905081810360008301526142b38184613c5d565b905092915050565b60006020820190506142d06000830184613cfc565b92915050565b60006020820190506142eb6000830184613d0b565b92915050565b60006020820190506143066000830184613d1a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061439e8261440c565b9050919050565b60006143b08261440c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061440782614538565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600068ffffffffffffffffff82169050919050565b600060ff82169050919050565b600061447782614490565b9050919050565b6000614489826143f9565b9050919050565b600061449b826144a2565b9050919050565b60006144ad8261440c565b9050919050565b82818337600083830152505050565b60005b838110156144e15780820151818401526020810190506144c6565b838111156144f0576000848401525b50505050565b600061450182614508565b9050919050565b60006145138261452b565b9050919050565b6000601f19601f8301169050919050565b60008160601b9050919050565b6005811061454257fe5b50565b61454e81614393565b811461455957600080fd5b50565b614565816143a5565b811461457057600080fd5b50565b61457c816143c3565b811461458757600080fd5b50565b614593816143cd565b811461459e57600080fd5b50565b6145aa8161442c565b81146145b557600080fd5b50565b6145c181614436565b81146145cc57600080fd5b50565b6145d88161444a565b81146145e357600080fd5b50565b6145ef8161445f565b81146145fa57600080fd5b5056fea2646970667358221220b27b3c33d92631bd006c1342adfd7f89f45a528dbb1ea4dc7ed3c444c8199e9f64736f6c63430006040033

Deployed Bytecode Sourcemap

26480:18792:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;37933:709:0;;;;;;;;;;;;;;;;:::i;:::-;;42293:641;;5:9:-1;2:2;;;27:1;24;17:12;2:2;42293:641:0;;;;;;;;;;;;;;;;:::i;:::-;;39319:2420;;5:9:-1;2:2;;;27:1;24;17:12;2:2;39319:2420:0;;;;;;;;;;;;;;;;:::i;:::-;;15834:114;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15834:114:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;16210:227;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16210:227:0;;;;;;;;;;;;;;;;:::i;:::-;;17419:209;;5:9:-1;2:2;;;27:1;24;17:12;2:2;17419:209:0;;;;;;;;;;;;;;;;:::i;:::-;;27319:65;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27319:65:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;43606:1048;;5:9:-1;2:2;;;27:1;24;17:12;2:2;43606:1048:0;;;;;;;;;;;;;;;;:::i;:::-;;45052:215;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45052:215:0;;;;;;;;;;;;;;;;:::i;:::-;;27107:46;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27107:46:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;31762:179;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31762:179:0;;;;;;;;;;;;;;;;:::i;:::-;;27457:65;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27457:65:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30330:121;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30330:121:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19900:78;;5:9:-1;2:2;;;27:1;24;17:12;2:2;19900:78:0;;;:::i;:::-;;;;;;;;;;;;;;;;30709:173;;5:9:-1;2:2;;;27:1;24;17:12;2:2;30709:173:0;;;;;;;;;;;;;;;;:::i;:::-;;37182:312;;5:9:-1;2:2;;;27:1;24;17:12;2:2;37182:312:0;;;;;;;;;;;;;;;;:::i;:::-;;27609:90;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27609:90:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26611:29;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26611:29:0;;;:::i;:::-;;;;;;;;;;;;;;;;31076:77;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31076:77:0;;;:::i;:::-;;27198:62;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27198:62:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;35427:203;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35427:203:0;;;;;;;;;;;;;;;;:::i;:::-;;15507:138;;5:9:-1;2:2;;;27:1;24;17:12;2:2;15507:138:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;36648:157;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36648:157:0;;;;;;;;;;;;;;;;:::i;:::-;;14468:139;;5:9:-1;2:2;;;27:1;24;17:12;2:2;14468:139:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28430:64;;5:9:-1;2:2;;;27:1;24;17:12;2:2;28430:64:0;;;:::i;:::-;;;;;;;;;;;;;;;;26647:30;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26647:30:0;;;:::i;:::-;;;;;;;;;;;;;;;;32853:295;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32853:295:0;;;;;;;;;;;;;;;;:::i;:::-;;13636:49;;5:9:-1;2:2;;;27:1;24;17:12;2:2;13636:49:0;;;:::i;:::-;;;;;;;;;;;;;;;;36226:261;;5:9:-1;2:2;;;27:1;24;17:12;2:2;36226:261:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26542:23;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26542:23:0;;;:::i;:::-;;;;;;;;;;;;;;;;26684:19;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26684:19:0;;;:::i;:::-;;;;;;;;;;;;;;;;26710:22;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26710:22:0;;;:::i;:::-;;;;;;;;;;;;;;;;14781:127;;5:9:-1;2:2;;;27:1;24;17:12;2:2;14781:127:0;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;33699:302;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33699:302:0;;;;;;;;;;;;;;;;:::i;:::-;;32250:289;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32250:289:0;;;;;;;;;;;;;;;;:::i;:::-;;16682:230;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16682:230:0;;;;;;;;;;;;;;;;:::i;:::-;;26572:32;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26572:32:0;;;:::i;:::-;;;;;;;;;;;;;;;;34559:469;;5:9:-1;2:2;;;27:1;24;17:12;2:2;34559:469:0;;;;;;;;;;;;;;;;:::i;:::-;;31349:81;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31349:81:0;;;:::i;:::-;;37933:709;20209:16;:14;:16::i;:::-;38080:4:::1;;38067:9;:17;38059:52;;;;;;;;;;;;;;;;;;;;;;38124:15;38142:27;:39;38170:10;38142:39;;;;;;;;;;;;;;;;;;;;;38124:57;;38219:1;38200:21;;:7;:21;;;;38192:66;;;;;;;;;;;;;;;;;;;;;;38271:19;38295:14;:34;38310:18;38295:34;;;;;;;;;;;;;;;;38293:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38271:58;;38392:4;;38340:15;:29;38356:12;38340:29;;;;;;;;;;;;;;;:49;38370:18;38340:49;;;;;;;;;;;;;;;:56;;;;;;;:::i;:::-;;38409:30;38458:7;38409:57;;38477:14;:22;;;38500:10;38512:18;38532:12;38546:10;38558:4;;38477:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;38477:86:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;38477:86:0;;;;38621:12;38581:53;;38609:10;38589:18;38581:53;;;;;;;;;;;;20236:1;;;37933:709:::0;;;;:::o;42293:641::-;28616:21;:19;:21::i;:::-;42408:17:::1;42465:7;42458:15;;42453:1;42436:12;42429:20;;:25;;;;42428:45;42408:65;;42484:25;42512:10;:22;42523:10;42512:22;;;;;;;;;;;;;;;:32;42535:8;42512:32;;;;;;;;;;;42484:60;;42585:24;42565:44:::0;::::1;;;;;;;:8;:16;;;;;;;;;;;;:44;;;;;;;;;;42557:83;;;;;;;;;;;;;;;;;;;;;;42704:7;;42659:42;42663:12;42677:8;:23;;;42659:3;:42::i;:::-;:52;42651:97;;;;;;;;;;;;;;;;;;;;;;42780:24;42761:8;:16;;;:43;;;;;;;;;;;;;;;;;;;;;;;;42857:24;42820:104:::0;::::1;;;;;;;42843:12;42820:104;;42834:7;42820:104;;;42883:8;:20;;;42905:8;:18;;;42820:104;;;;;;;;;;;;;;;;28648:1;;42293:641:::0;;;:::o;39319:2420::-;28700:15;:13;:15::i;:::-;20209:16:::1;:14;:16::i;:::-;39464:17:::2;39521:7;39514:15;;39509:1;39492:12;39485:20;;:25;;;;39484:45;39464:65;;39540:25;39568:10;:22;39579:10;39568:22;;;;;;;;;;;;;;;:32;39591:8;39568:32;;;;;;;;;;;39540:60;;39672:1;39621:53;;:27;:39;39649:10;39621:39;;;;;;;;;;;;;;;;;;;;;:53;;;;39613:91;;;;;;;;;;;;;;;;;;;;;;39749:1;39728:8;:16;;;;;;;;;;;;39723:22;;;;;;;;:27;;39715:82;;;;;;;;;;;;;;;;;;;;;;39817:19;:31;39837:10;39817:31;;;;;;;;;;;;;;;:41;39849:8;39817:41;;;;;;;;;;;:53;39859:10;39817:53;;;;;;;;;;;;;;;;;;;;;;;;;39816:54;39808:88;;;;;;;;;;;;;;;;;;;;;;39939:1;39918:8;:16;;;;;;;;;;;;39913:22;;;;;;;;:27;39909:1186;;;39959:15;;39957:17;;;;;;;;;;;40024:302;;;;;;;;40066:10;40024:302;;;;40107:8;40024:302;;;;40160:1;40146:16;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;40146:16:0;;;;40024:302;;;;40206:1;40192:16;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;40192:16:0;;;;40024:302;;;;40237:21;40024:302;;;;;;;;;;;;40294:12;40024:302;;::::0;39989:10:::2;:22;40000:10;39989:22;;;;;;;;;;;;;;;:32;40012:8;39989:32;;;;;;;;;;;:337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40367:10;40343:8;:18;;40362:1;40343:21;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;40434:21;40397:81;;;;;;;;40420:12;40397:81;;40411:7;40397:81;;;40457:10;40469:8;40397:81;;;;;;;;;;;;;;;;39909:1186;;;40560:7;;40515:42;40519:12;40533:8;:23;;;40515:3;:42::i;:::-;:52;40511:571;;;40775:24;40756:8;:16;;;:43;;;;;;;;;;;;;;;;;;;;;;;;40860:24;40823:84:::0;::::2;;;;;;;40846:12;40823:84;;40837:7;40823:84;;;40886:10;40898:8;40823:84;;;;;;;;;;;;;;;;40511:571;;;40968:8;:18;;;40956:8;:30;40948:60;;;;;;;;;;;;;;;;;;;;;;41027:8;:18;;41051:10;41027:35;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;41027:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40511:571;39909:1186;41129:24;41109:44:::0;::::2;;;;;;;:8;:16;;;;;;;;;;;;:44;;;;;;;;;41105:625;;41226:4;41170:19;:31;41190:10;41170:31;;;;;;;;;;;;;;;:41;41202:8;41170:41;;;;;;;;;;;:53;41212:10;41170:53;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;41286:8;:16;;;;;;;;;;;;41250:65;;;;;;;;41272:12;41250:65;;41263:7;41250:65;;;41304:10;41250:65;;;;;;;;;;;;;;;41484:1;41463:17;;:22;;:72;;;;41518:17;;41489:8;:18;;:25;;;;:46;;41463:72;41459:260;;;41575:21;41556:8;:16;;;:40;;;;;;;;;;;;;;;;;;;;;;;;41659:21;41622:81;;;;;;;;41645:12;41622:81;;41636:7;41622:81;;;41682:10;41694:8;41622:81;;;;;;;;;;;;;;;;41459:260;41105:625;20236:1;;39319:2420:::0;;;;:::o;15834:114::-;15891:7;15918:6;:12;15925:4;15918:12;;;;;;;;;;;:22;;;15911:29;;15834:114;;;:::o;16210:227::-;16294:45;16302:6;:12;16309:4;16302:12;;;;;;;;;;;:22;;;16326:12;:10;:12::i;:::-;16294:7;:45::i;:::-;16286:105;;;;;;;;;;;;;;;;;;;;;;16404:25;16415:4;16421:7;16404:10;:25::i;:::-;16210:227;;:::o;17419:209::-;17517:12;:10;:12::i;:::-;17506:23;;:7;:23;;;17498:83;;;;;;;;;;;;;;;;;;;;;;17594:26;17606:4;17612:7;17594:11;:26::i;:::-;17419:209;;:::o;27319:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43606:1048::-;28700:15;:13;:15::i;:::-;20209:16:::1;:14;:16::i;:::-;43755:15:::2;43773:27;:39;43801:10;43773:39;;;;;;;;;;;;;;;;;;;;;43755:57;;43823:17;43880:7;43873:15;;43868:1;43851:12;43844:20;;:25;;;;43843:45;43823:65;;43899:16;43945:7;43954:4;;43928:31;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;43928:31:0;;;43918:42;;;;;;43899:61;;43971:25;43999:10;:22;44010:10;43999:22;;;;;;;;;;;;;;;:32;44022:8;43999:32;;;;;;;;;;;43971:60;;44072:23;44052:43;;;;;;;;:8;:16;;;;;;;;;;;;:43;;;;;;;;;;44044:78;;;;;;;;;;;;;;;;;;;;;;44161:21;44141:41;;;;;;;;:8;:16;;;;;;;;;;;;:41;;;;;;;;;44133:82;;;;;;;;;;;;;;;;;;;;;;44246:8;:18;;;44234:8;:30;44226:70;;;;;;;;;;;;;;;;;;;;;;44328:23;44309:8;:16;;;:42;;;;;;;;;;;;;;;;;;;;;;;;44364:30;44413:27;:49;44441:8;:20;;;44413:49;;;;;;;;;;;;;;;;;;;;;44364:99;;44474:14;:30;;;44505:8;:20;;;44527:4;;44474:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::2;2:2;44474:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;44474:58:0;;;;44587:8;:16;;;;;;;;;;;;44550:96;;;;;;;;44573:12;44550:96;;44564:7;44550:96;;;44605:8;:20;;;44627:8;:18;;;44550:96;;;;;;;;;;;;;;;;20236:1;;;;;43606:1048:::0;;;;;:::o;45052:215::-;28535:12;:10;:12::i;:::-;45169:6:::1;45178:1:::0;45169:10:::1;;45164:96;45185:5;;:12;;45181:1;:16;45164:96;;;45219:5;;45225:1;45219:8;;;;;;;;;;;;;;;;;;;;;;:17;;:29;45237:7;;45245:1;45237:10;;;;;;;;;;;;;45219:29;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;45219:29:0;45199:3;;;;;;;45164:96;;;;45052:215:::0;;;;:::o;27107:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;31762:179::-;28535:12;:10;:12::i;:::-;31868::::1;31848:17;:32;;;;31920:12;31896:37;;;;;;;;;;31762:179:::0;:::o;27457:65::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30330:121::-;30389:4;30413:30;28469:25;;;;;;;;;;;;;;30435:7;30413;:30::i;:::-;30406:37;;30330:121;;;:::o;19900:78::-;19939:4;19963:7;;;;;;;;;;;19956:14;;19900:78;:::o;30709:173::-;28535:12;:10;:12::i;:::-;30780:39:::1;13681:4;30790:18:::0;::::1;30810:8;30780:9;:39::i;:::-;30830:44;13681:4;30843:18:::0;::::1;30863:10;30830:12;:44::i;:::-;30709:173:::0;:::o;37182:312::-;28535:12;:10;:12::i;:::-;37368:19:::1;37402:14;37368:49;;37428:7;:16;;;37445:12;37459:9;37470:15;37428:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;37428:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;37428:58:0;;;;28558:1;37182:312:::0;;;;:::o;27609:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26611:29::-;;;;:::o;31076:77::-;28535:12;:10;:12::i;:::-;31137:8:::1;:6;:8::i;:::-;31076:77::o:0;27198:62::-;;;;;;;;;;;;;;;;;;;;;;:::o;35427:203::-;28535:12;:10;:12::i;:::-;35529:19:::1;35563:14;35529:49;;35589:7;:19;;;35609:12;35589:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;35589:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;35589:33:0;;;;28558:1;35427:203:::0;;:::o;15507:138::-;15580:7;15607:30;15631:5;15607:6;:12;15614:4;15607:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;15600:37;;15507:138;;;;:::o;36648:157::-;28535:12;:10;:12::i;:::-;36731:6:::1;36723:4;;:14;;36715:58;;;;;;;;;;;;;;;;;;;;;;36791:6;36784:4;:13;;;;36648:157:::0;:::o;14468:139::-;14537:4;14561:38;14591:7;14561:6;:12;14568:4;14561:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;14554:45;;14468:139;;;;:::o;28430:64::-;28469:25;;;;;;;;;;;;;;28430:64;:::o;26647:30::-;;;;:::o;32853:295::-;28535:12;:10;:12::i;:::-;32943:37:::1;28469:25;;;;;;;;;;;;;;32965:14;32943:7;:37::i;:::-;32935:81;;;;;;;;;;;;;;;;;;;;;;33027:40;28469:25;;;;;;;;;;;;;;33052:14;33027:10;:40::i;:::-;33098:14;33083:30;;;;;;;;;;;;33124:14;;:16;;;;;;;;;;;;;;32853:295:::0;:::o;13636:49::-;13681:4;13636:49;;;:::o;36226:261::-;36330:15;;:::i;:::-;36358:17;36415:13;36408:21;;36403:1;36386:12;36379:20;;:25;;;;36378:51;36358:71;;36447:10;:22;36458:10;36447:22;;;;;;;;;;;;;;;:32;36470:8;36447:32;;;;;;;;;;;36440:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36226:261;;;;;:::o;26542:23::-;;;;;;;;;;;;;:::o;26684:19::-;;;;:::o;26710:22::-;;;;:::o;14781:127::-;14844:7;14871:29;:6;:12;14878:4;14871:12;;;;;;;;;;;:20;;:27;:29::i;:::-;14864:36;;14781:127;;;:::o;33699:302::-;28535:12;:10;:12::i;:::-;33863:14:::1;33821:27;:39;33849:10;33821:39;;;;;;;;;;;;:56;;;;;;;;;;;;;;;;;;33888:19;33922:14;33888:49;;33948:7;:19;;;33968:10;33980:12;33948:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;33948:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;33948:45:0;;;;28558:1;33699:302:::0;;;:::o;32250:289::-;28535:12;:10;:12::i;:::-;32338:37:::1;28469:25;;;;;;;;;;;;;;32360:14;32338:7;:37::i;:::-;32337:38;32329:81;;;;;;;;;;;;;;;;;;;;;;32421:39;28469:25;;;;;;;;;;;;;;32445:14;32421:9;:39::i;:::-;32489:14;32476:28;;;;;;;;;;;;32515:14;;:16;;;;;;;;;;;;;32250:289:::0;:::o;16682:230::-;16767:45;16775:6;:12;16782:4;16775:12;;;;;;;;;;;:22;;;16799:12;:10;:12::i;:::-;16767:7;:45::i;:::-;16759:106;;;;;;;;;;;;;;;;;;;;;;16878:26;16890:4;16896:7;16878:11;:26::i;:::-;16682:230;;:::o;26572:32::-;;;;:::o;34559:469::-;28535:12;:10;:12::i;:::-;34839:14:::1;34797:27;:39;34825:10;34797:39;;;;;;;;;;;;:56;;;;;;;;;;;;;;;;;;34864:23;34906:14;34864:57;;34932:7;:19;;;34952:10;34964:15;34981:18;35001;34932:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;34932:88:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;34932:88:0;;;;28558:1;34559:469:::0;;;;;:::o;31349:81::-;28535:12;:10;:12::i;:::-;31412:10:::1;:8;:10::i;:::-;31349:81::o:0;20253:95::-;20312:7;;;;;;;;;;;20311:8;20303:37;;;;;;;;;;;;;;;;;;;;;;20253:95::o;28743:190::-;28801:39;13681:4;28809:18;;28829:10;28801:7;:39::i;:::-;:76;;;;28844:33;28469:25;;;;;;;;;;;;;;28866:10;28844:7;:33::i;:::-;28801:76;28793:132;;;;;;;;;;;;;;;;;;;;;;28743:190::o;21912:137::-;21970:7;21997:44;22002:1;22005;21997:44;;;;;;;;;;;;;;;;;:4;:44::i;:::-;21990:51;;21912:137;;;;:::o;29080:130::-;29132:33;28469:25;;;;;;;;;;;;;;29154:10;29132:7;:33::i;:::-;29124:78;;;;;;;;;;;;;;;;;;;;;;29080:130::o;11581:106::-;11634:15;11669:10;11662:17;;11581:106;:::o;18539:188::-;18613:33;18638:7;18613:6;:12;18620:4;18613:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;18609:111;;;18695:12;:10;:12::i;:::-;18668:40;;18686:7;18668:40;;18680:4;18668:40;;;;;;;;;;18609:111;18539:188;;:::o;18735:192::-;18810:36;18838:7;18810:6;:12;18817:4;18810:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;18806:114;;;18895:12;:10;:12::i;:::-;18868:40;;18886:7;18868:40;;18880:4;18868:40;;;;;;;;;;18806:114;18735:192;;:::o;28941:131::-;28990:39;13681:4;28998:18;;29018:10;28990:7;:39::i;:::-;28982:82;;;;;;;;;;;;;;;;;;;;;;28941:131::o;20856:116::-;20209:16;:14;:16::i;:::-;20926:4:::1;20916:7;::::0;:14:::1;;;;;;;;;;;;;;;;;;20946:18;20953:10;20946:18;;;;;;;;;;;;;;;20856:116::o:0;6294:149::-;6368:7;6411:22;6415:3;:10;;6427:5;6411:3;:22::i;:::-;6403:31;;6388:47;;6294:149;;;;:::o;5589:158::-;5669:4;5693:46;5703:3;:10;;5731:5;5723:14;;5715:23;;5693:9;:46::i;:::-;5686:53;;5589:158;;;;:::o;5833:117::-;5896:7;5923:19;5931:3;:10;;5923:7;:19::i;:::-;5916:26;;5833:117;;;:::o;21113:118::-;20576:13;:11;:13::i;:::-;21182:5:::1;21172:7:::0;::::1;:15;;;;;;;;;;;;;;;;;;21203:20;21212:10;21203:20;;;;;;;;;;;;;;;21113:118::o:0;22344:193::-;22431:7;22464:1;22459;:6;;22467:12;22451:29;;;;;;;;;;;;;;;;;;;;;;;;;22491:9;22507:1;22503;:5;22491:17;;22528:1;22521:8;;;22344:193;;;;;:::o;5035:143::-;5105:4;5129:41;5134:3;:10;;5162:5;5154:14;;5146:23;;5129:4;:41::i;:::-;5122:48;;5035:143;;;;:::o;5354:149::-;5427:4;5451:44;5459:3;:10;;5487:5;5479:14;;5471:23;;5451:7;:44::i;:::-;5444:51;;5354:149;;;;:::o;4577:204::-;4644:7;4693:5;4672:3;:11;;:18;;;;:26;4664:73;;;;;;;;;;;;;;;;;;;;;;4755:3;:11;;4767:5;4755:18;;;;;;;;;;;;;;;;4748:25;;4577:204;;;;:::o;3909:129::-;3982:4;4029:1;4006:3;:12;;:19;4019:5;4006:19;;;;;;;;;;;;:24;;3999:31;;3909:129;;;;:::o;4124:109::-;4180:7;4207:3;:11;;:18;;;;4200:25;;4124:109;;;:::o;20617:95::-;20672:7;;;;;;;;;;;20664:40;;;;;;;;;;;;;;;;;;;;;;20617:95::o;1689:414::-;1752:4;1774:21;1784:3;1789:5;1774:9;:21::i;:::-;1769:327;;1812:3;:11;;1829:5;1812:23;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;1812:23:0;;;;;;;;;;;;;;;;;;;1995:3;:11;;:18;;;;1973:3;:12;;:19;1986:5;1973:19;;;;;;;;;;;:40;;;;2035:4;2028:11;;;;1769:327;2079:5;2072:12;;1689:414;;;;;:::o;2279:1544::-;2345:4;2463:18;2484:3;:12;;:19;2497:5;2484:19;;;;;;;;;;;;2463:40;;2534:1;2520:10;:15;2516:1300;;2882:21;2919:1;2906:10;:14;2882:38;;2935:17;2976:1;2955:3;:11;;:18;;;;:22;2935:42;;3222:17;3242:3;:11;;3254:9;3242:22;;;;;;;;;;;;;;;;3222:42;;3388:9;3359:3;:11;;3371:13;3359:26;;;;;;;;;;;;;;;:38;;;;3507:1;3491:13;:17;3465:3;:12;;:23;3478:9;3465:23;;;;;;;;;;;:43;;;;3617:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;3712:3;:12;;:19;3725:5;3712:19;;;;;;;;;;;3705:26;;;3755:4;3748:11;;;;;;;;2516:1300;3799:5;3792:12;;;2279:1544;;;;;:::o;26480:18792::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130:-1:-;;85:6;72:20;63:29;;97:33;124:5;97:33;;;57:78;;;;;142:146;;230:6;217:20;208:29;;242:41;277:5;242:41;;;202:86;;;;;321:360;;;459:3;452:4;444:6;440:17;436:27;426:2;;477:1;474;467:12;426:2;510:6;497:20;487:30;;537:18;529:6;526:30;523:2;;;569:1;566;559:12;523:2;603:4;595:6;591:17;579:29;;654:3;646:4;638:6;634:17;624:8;620:32;617:41;614:2;;;671:1;668;661:12;614:2;419:262;;;;;;707:352;;;837:3;830:4;822:6;818:17;814:27;804:2;;855:1;852;845:12;804:2;888:6;875:20;865:30;;915:18;907:6;904:30;901:2;;;947:1;944;937:12;901:2;981:4;973:6;969:17;957:29;;1032:3;1024:4;1016:6;1012:17;1002:8;998:32;995:41;992:2;;;1049:1;1046;1039:12;992:2;797:262;;;;;;1067:130;;1147:6;1134:20;1125:29;;1159:33;1186:5;1159:33;;;1119:78;;;;;1204:128;;1283:6;1270:20;1261:29;;1295:32;1321:5;1295:32;;;1255:77;;;;;1353:336;;;1467:3;1460:4;1452:6;1448:17;1444:27;1434:2;;1485:1;1482;1475:12;1434:2;1518:6;1505:20;1495:30;;1545:18;1537:6;1534:30;1531:2;;;1577:1;1574;1567:12;1531:2;1611:4;1603:6;1599:17;1587:29;;1662:3;1654:4;1646:6;1642:17;1632:8;1628:32;1625:41;1622:2;;;1679:1;1676;1669:12;1622:2;1427:262;;;;;;1697:130;;1777:6;1764:20;1755:29;;1789:33;1816:5;1789:33;;;1749:78;;;;;1834:128;;1913:6;1900:20;1891:29;;1925:32;1951:5;1925:32;;;1885:77;;;;;1969:128;;2048:6;2035:20;2026:29;;2060:32;2086:5;2060:32;;;2020:77;;;;;2104:126;;2182:6;2169:20;2160:29;;2194:31;2219:5;2194:31;;;2154:76;;;;;2237:241;;2341:2;2329:9;2320:7;2316:23;2312:32;2309:2;;;2357:1;2354;2347:12;2309:2;2392:1;2409:53;2454:7;2445:6;2434:9;2430:22;2409:53;;;2399:63;;2371:97;2303:175;;;;;2485:257;;2597:2;2585:9;2576:7;2572:23;2568:32;2565:2;;;2613:1;2610;2603:12;2565:2;2648:1;2665:61;2718:7;2709:6;2698:9;2694:22;2665:61;;;2655:71;;2627:105;2559:183;;;;;2749:366;;;2870:2;2858:9;2849:7;2845:23;2841:32;2838:2;;;2886:1;2883;2876:12;2838:2;2921:1;2938:53;2983:7;2974:6;2963:9;2959:22;2938:53;;;2928:63;;2900:97;3028:2;3046:53;3091:7;3082:6;3071:9;3067:22;3046:53;;;3036:63;;3007:98;2832:283;;;;;;3122:617;;;;;3277:3;3265:9;3256:7;3252:23;3248:33;3245:2;;;3294:1;3291;3284:12;3245:2;3329:1;3346:53;3391:7;3382:6;3371:9;3367:22;3346:53;;;3336:63;;3308:97;3436:2;3454:53;3499:7;3490:6;3479:9;3475:22;3454:53;;;3444:63;;3415:98;3544:2;3562:53;3607:7;3598:6;3587:9;3583:22;3562:53;;;3552:63;;3523:98;3652:2;3670:53;3715:7;3706:6;3695:9;3691:22;3670:53;;;3660:63;;3631:98;3239:500;;;;;;;;3746:491;;;;3884:2;3872:9;3863:7;3859:23;3855:32;3852:2;;;3900:1;3897;3890:12;3852:2;3935:1;3952:53;3997:7;3988:6;3977:9;3973:22;3952:53;;;3942:63;;3914:97;4042:2;4060:53;4105:7;4096:6;4085:9;4081:22;4060:53;;;4050:63;;4021:98;4150:2;4168:53;4213:7;4204:6;4193:9;4189:22;4168:53;;;4158:63;;4129:98;3846:391;;;;;;4244:739;;;;;;4414:3;4402:9;4393:7;4389:23;4385:33;4382:2;;;4431:1;4428;4421:12;4382:2;4466:1;4483:53;4528:7;4519:6;4508:9;4504:22;4483:53;;;4473:63;;4445:97;4573:2;4591:53;4636:7;4627:6;4616:9;4612:22;4591:53;;;4581:63;;4552:98;4681:2;4699:53;4744:7;4735:6;4724:9;4720:22;4699:53;;;4689:63;;4660:98;4789:2;4807:52;4851:7;4842:6;4831:9;4827:22;4807:52;;;4797:62;;4768:97;4896:3;4915:52;4959:7;4950:6;4939:9;4935:22;4915:52;;;4905:62;;4875:98;4376:607;;;;;;;;;4990:694;;;;;5189:2;5177:9;5168:7;5164:23;5160:32;5157:2;;;5205:1;5202;5195:12;5157:2;5268:1;5257:9;5253:17;5240:31;5291:18;5283:6;5280:30;5277:2;;;5323:1;5320;5313:12;5277:2;5351:88;5431:7;5422:6;5411:9;5407:22;5351:88;;;5341:98;;;;5219:226;5504:2;5493:9;5489:18;5476:32;5528:18;5520:6;5517:30;5514:2;;;5560:1;5557;5550:12;5514:2;5588:80;5660:7;5651:6;5640:9;5636:22;5588:80;;;5578:90;;;;5455:219;5151:533;;;;;;;;5691:241;;5795:2;5783:9;5774:7;5770:23;5766:32;5763:2;;;5811:1;5808;5801:12;5763:2;5846:1;5863:53;5908:7;5899:6;5888:9;5884:22;5863:53;;;5853:63;;5825:97;5757:175;;;;;5939:366;;;6060:2;6048:9;6039:7;6035:23;6031:32;6028:2;;;6076:1;6073;6066:12;6028:2;6111:1;6128:53;6173:7;6164:6;6153:9;6149:22;6128:53;;;6118:63;;6090:97;6218:2;6236:53;6281:7;6272:6;6261:9;6257:22;6236:53;;;6226:63;;6197:98;6022:283;;;;;;6312:366;;;6433:2;6421:9;6412:7;6408:23;6404:32;6401:2;;;6449:1;6446;6439:12;6401:2;6484:1;6501:53;6546:7;6537:6;6526:9;6522:22;6501:53;;;6491:63;;6463:97;6591:2;6609:53;6654:7;6645:6;6634:9;6630:22;6609:53;;;6599:63;;6570:98;6395:283;;;;;;6685:241;;6789:2;6777:9;6768:7;6764:23;6760:32;6757:2;;;6805:1;6802;6795:12;6757:2;6840:1;6857:53;6902:7;6893:6;6882:9;6878:22;6857:53;;;6847:63;;6819:97;6751:175;;;;;6933:360;;;7051:2;7039:9;7030:7;7026:23;7022:32;7019:2;;;7067:1;7064;7057:12;7019:2;7102:1;7119:52;7163:7;7154:6;7143:9;7139:22;7119:52;;;7109:62;;7081:96;7208:2;7226:51;7269:7;7260:6;7249:9;7245:22;7226:51;;;7216:61;;7187:96;7013:280;;;;;;7300:364;;;7420:2;7408:9;7399:7;7395:23;7391:32;7388:2;;;7436:1;7433;7426:12;7388:2;7471:1;7488:52;7532:7;7523:6;7512:9;7508:22;7488:52;;;7478:62;;7450:96;7577:2;7595:53;7640:7;7631:6;7620:9;7616:22;7595:53;;;7585:63;;7556:98;7382:282;;;;;;7671:489;;;;7808:2;7796:9;7787:7;7783:23;7779:32;7776:2;;;7824:1;7821;7814:12;7776:2;7859:1;7876:52;7920:7;7911:6;7900:9;7896:22;7876:52;;;7866:62;;7838:96;7965:2;7983:53;8028:7;8019:6;8008:9;8004:22;7983:53;;;7973:63;;7944:98;8073:2;8091:53;8136:7;8127:6;8116:9;8112:22;8091:53;;;8081:63;;8052:98;7770:390;;;;;;8167:237;;8269:2;8257:9;8248:7;8244:23;8240:32;8237:2;;;8285:1;8282;8275:12;8237:2;8320:1;8337:51;8380:7;8371:6;8360:9;8356:22;8337:51;;;8327:61;;8299:95;8231:173;;;;;8411:611;;;;;8566:2;8554:9;8545:7;8541:23;8537:32;8534:2;;;8582:1;8579;8572:12;8534:2;8617:1;8634:51;8677:7;8668:6;8657:9;8653:22;8634:51;;;8624:61;;8596:95;8722:2;8740:53;8785:7;8776:6;8765:9;8761:22;8740:53;;;8730:63;;8701:98;8858:2;8847:9;8843:18;8830:32;8882:18;8874:6;8871:30;8868:2;;;8914:1;8911;8904:12;8868:2;8942:64;8998:7;8989:6;8978:9;8974:22;8942:64;;;8932:74;;;;8809:203;8528:494;;;;;;;;9029:485;;;;9164:2;9152:9;9143:7;9139:23;9135:32;9132:2;;;9180:1;9177;9170:12;9132:2;9215:1;9232:51;9275:7;9266:6;9255:9;9251:22;9232:51;;;9222:61;;9194:95;9320:2;9338:52;9382:7;9373:6;9362:9;9358:22;9338:52;;;9328:62;;9299:97;9427:2;9445:53;9490:7;9481:6;9470:9;9466:22;9445:53;;;9435:63;;9406:98;9126:388;;;;;;9521:611;;;;;9673:3;9661:9;9652:7;9648:23;9644:33;9641:2;;;9690:1;9687;9680:12;9641:2;9725:1;9742:51;9785:7;9776:6;9765:9;9761:22;9742:51;;;9732:61;;9704:95;9830:2;9848:52;9892:7;9883:6;9872:9;9868:22;9848:52;;;9838:62;;9809:97;9937:2;9955:53;10000:7;9991:6;9980:9;9976:22;9955:53;;;9945:63;;9916:98;10045:2;10063:53;10108:7;10099:6;10088:9;10084:22;10063:53;;;10053:63;;10024:98;9635:497;;;;;;;;10139:735;;;;;;10310:3;10298:9;10289:7;10285:23;10281:33;10278:2;;;10327:1;10324;10317:12;10278:2;10362:1;10379:51;10422:7;10413:6;10402:9;10398:22;10379:51;;;10369:61;;10341:95;10467:2;10485:52;10529:7;10520:6;10509:9;10505:22;10485:52;;;10475:62;;10446:97;10602:2;10591:9;10587:18;10574:32;10626:18;10618:6;10615:30;10612:2;;;10658:1;10655;10648:12;10612:2;10686:64;10742:7;10733:6;10722:9;10718:22;10686:64;;;10676:74;;;;10553:203;10787:2;10805:53;10850:7;10841:6;10830:9;10826:22;10805:53;;;10795:63;;10766:98;10272:602;;;;;;;;;10882:173;;10969:46;11011:3;11003:6;10969:46;;;11044:4;11039:3;11035:14;11021:28;;10962:93;;;;;11063:142;11154:45;11193:5;11154:45;;;11149:3;11142:58;11136:69;;;11212:103;11285:24;11303:5;11285:24;;;11280:3;11273:37;11267:48;;;11322:113;11405:24;11423:5;11405:24;;;11400:3;11393:37;11387:48;;;11442:152;11543:45;11563:24;11581:5;11563:24;;;11543:45;;;11538:3;11531:58;11525:69;;;11632:654;;11763:50;11807:5;11763:50;;;11826:76;11895:6;11890:3;11826:76;;;11819:83;;11923:52;11969:5;11923:52;;;11995:7;12023:1;12008:256;12033:6;12030:1;12027:13;12008:256;;;12100:6;12094:13;12121:63;12180:3;12165:13;12121:63;;;12114:70;;12201:56;12250:6;12201:56;;;12191:66;;12065:199;12055:1;12052;12048:9;12043:14;;12008:256;;;12012:14;12277:3;12270:10;;11742:544;;;;;;;;12294:104;12371:21;12386:5;12371:21;;;12366:3;12359:34;12353:45;;;12405:103;12478:24;12496:5;12478:24;;;12473:3;12466:37;12460:48;;;12515:113;12598:24;12616:5;12598:24;;;12593:3;12586:37;12580:48;;;12635:110;12716:23;12733:5;12716:23;;;12711:3;12704:36;12698:47;;;12775:297;;12889:70;12952:6;12947:3;12889:70;;;12882:77;;12971:43;13007:6;13002:3;12995:5;12971:43;;;13036:29;13058:6;13036:29;;;13031:3;13027:39;13020:46;;12875:197;;;;;;13103:310;;13235:88;13316:6;13311:3;13235:88;;;13228:95;;13335:43;13371:6;13366:3;13359:5;13335:43;;;13400:6;13395:3;13391:16;13384:23;;13221:192;;;;;;13421:335;;13527:34;13555:5;13527:34;;;13573:70;13636:6;13631:3;13573:70;;;13566:77;;13648:52;13693:6;13688:3;13681:4;13674:5;13670:16;13648:52;;;13721:29;13743:6;13721:29;;;13716:3;13712:39;13705:46;;13507:249;;;;;;13763:148;13852:53;13899:5;13852:53;;;13847:3;13840:66;13834:77;;;13918:158;14017:53;14064:5;14017:53;;;14012:3;14005:66;13999:77;;;14083:347;;14195:39;14228:5;14195:39;;;14246:71;14310:6;14305:3;14246:71;;;14239:78;;14322:52;14367:6;14362:3;14355:4;14348:5;14344:16;14322:52;;;14395:29;14417:6;14395:29;;;14390:3;14386:39;14379:46;;14175:255;;;;;;14438:328;;14598:67;14662:2;14657:3;14598:67;;;14591:74;;14698:30;14694:1;14689:3;14685:11;14678:51;14757:2;14752:3;14748:12;14741:19;;14584:182;;;;14775:322;;14935:67;14999:2;14994:3;14935:67;;;14928:74;;15035:24;15031:1;15026:3;15022:11;15015:45;15088:2;15083:3;15079:12;15072:19;;14921:176;;;;15106:371;;15266:67;15330:2;15325:3;15266:67;;;15259:74;;15366:34;15362:1;15357:3;15353:11;15346:55;15435:4;15430:2;15425:3;15421:12;15414:26;15468:2;15463:3;15459:12;15452:19;;15252:225;;;;15486:330;;15646:67;15710:2;15705:3;15646:67;;;15639:74;;15746:32;15742:1;15737:3;15733:11;15726:53;15807:2;15802:3;15798:12;15791:19;;15632:184;;;;15825:384;;15985:67;16049:2;16044:3;15985:67;;;15978:74;;16085:34;16081:1;16076:3;16072:11;16065:55;16154:17;16149:2;16144:3;16140:12;16133:39;16200:2;16195:3;16191:12;16184:19;;15971:238;;;;16218:321;;16378:67;16442:2;16437:3;16378:67;;;16371:74;;16478:23;16474:1;16469:3;16465:11;16458:44;16530:2;16525:3;16521:12;16514:19;;16364:175;;;;16548:320;;16708:67;16772:2;16767:3;16708:67;;;16701:74;;16808:22;16804:1;16799:3;16795:11;16788:43;16859:2;16854:3;16850:12;16843:19;;16694:174;;;;16877:331;;17037:67;17101:2;17096:3;17037:67;;;17030:74;;17137:33;17133:1;17128:3;17124:11;17117:54;17199:2;17194:3;17190:12;17183:19;;17023:185;;;;17217:322;;17377:67;17441:2;17436:3;17377:67;;;17370:74;;17477:24;17473:1;17468:3;17464:11;17457:45;17530:2;17525:3;17521:12;17514:19;;17363:176;;;;17548:327;;17708:67;17772:2;17767:3;17708:67;;;17701:74;;17808:29;17804:1;17799:3;17795:11;17788:50;17866:2;17861:3;17857:12;17850:19;;17694:181;;;;17884:326;;18044:67;18108:2;18103:3;18044:67;;;18037:74;;18144:28;18140:1;18135:3;18131:11;18124:49;18201:2;18196:3;18192:12;18185:19;;18030:180;;;;18219:332;;18379:67;18443:2;18438:3;18379:67;;;18372:74;;18479:34;18475:1;18470:3;18466:11;18459:55;18542:2;18537:3;18533:12;18526:19;;18365:186;;;;18560:385;;18720:67;18784:2;18779:3;18720:67;;;18713:74;;18820:34;18816:1;18811:3;18807:11;18800:55;18889:18;18884:2;18879:3;18875:12;18868:40;18936:2;18931:3;18927:12;18920:19;;18706:239;;;;18954:332;;19114:67;19178:2;19173:3;19114:67;;;19107:74;;19214:34;19210:1;19205:3;19201:11;19194:55;19277:2;19272:3;19268:12;19261:19;;19100:186;;;;19295:316;;19455:67;19519:2;19514:3;19455:67;;;19448:74;;19555:18;19551:1;19546:3;19542:11;19535:39;19602:2;19597:3;19593:12;19586:19;;19441:170;;;;19620:330;;19780:67;19844:2;19839:3;19780:67;;;19773:74;;19880:32;19876:1;19871:3;19867:11;19860:53;19941:2;19936:3;19932:12;19925:19;;19766:184;;;;19959:379;;20119:67;20183:2;20178:3;20119:67;;;20112:74;;20219:34;20215:1;20210:3;20206:11;20199:55;20288:12;20283:2;20278:3;20274:12;20267:34;20329:2;20324:3;20320:12;20313:19;;20105:233;;;;20347:332;;20507:67;20571:2;20566:3;20507:67;;;20500:74;;20607:34;20603:1;20598:3;20594:11;20587:55;20670:2;20665:3;20661:12;20654:19;;20493:186;;;;20688:330;;20848:67;20912:2;20907:3;20848:67;;;20841:74;;20948:32;20944:1;20939:3;20935:11;20928:53;21009:2;21004:3;21000:12;20993:19;;20834:184;;;;21027:331;;21187:67;21251:2;21246:3;21187:67;;;21180:74;;21287:33;21283:1;21278:3;21274:11;21267:54;21349:2;21344:3;21340:12;21333:19;;21173:185;;;;21367:348;;21545:85;21627:2;21622:3;21545:85;;;21538:92;;21663:14;21659:1;21654:3;21650:11;21643:35;21706:2;21701:3;21697:12;21690:19;;21531:184;;;;21724:317;;21884:67;21948:2;21943:3;21884:67;;;21877:74;;21984:19;21980:1;21975:3;21971:11;21964:40;22032:2;22027:3;22023:12;22016:19;;21870:171;;;;22050:325;;22210:67;22274:2;22269:3;22210:67;;;22203:74;;22310:27;22306:1;22301:3;22297:11;22290:48;22366:2;22361:3;22357:12;22350:19;;22196:179;;;;22384:384;;22544:67;22608:2;22603:3;22544:67;;;22537:74;;22644:34;22640:1;22635:3;22631:11;22624:55;22713:17;22708:2;22703:3;22699:12;22692:39;22759:2;22754:3;22750:12;22743:19;;22530:238;;;;22831:1367;;22984:4;22979:3;22975:14;23074:4;23067:5;23063:16;23057:23;23086:63;23143:4;23138:3;23134:14;23120:12;23086:63;;;23004:151;23233:4;23226:5;23222:16;23216:23;23245:63;23302:4;23297:3;23293:14;23279:12;23245:63;;;23165:149;23392:4;23385:5;23381:16;23375:23;23444:3;23438:4;23434:14;23427:4;23422:3;23418:14;23411:38;23464:99;23558:4;23544:12;23464:99;;;23456:107;;23324:251;23652:4;23645:5;23641:16;23635:23;23704:3;23698:4;23694:14;23687:4;23682:3;23678:14;23671:38;23724:99;23818:4;23804:12;23724:99;;;23716:107;;23585:250;23911:4;23904:5;23900:16;23894:23;23923:79;23996:4;23991:3;23987:14;23973:12;23923:79;;;23845:163;24091:4;24084:5;24080:16;24074:23;24103:63;24160:4;24155:3;24151:14;24137:12;24103:63;;;24018:154;24189:4;24182:11;;22957:1241;;;;;;24205:103;24278:24;24296:5;24278:24;;;24273:3;24266:37;24260:48;;;24315:113;24398:24;24416:5;24398:24;;;24393:3;24386:37;24380:48;;;24435:110;24516:23;24533:5;24516:23;;;24511:3;24504:36;24498:47;;;24552:107;24631:22;24647:5;24631:22;;;24626:3;24619:35;24613:46;;;24666:421;;24841:75;24912:3;24903:6;24841:75;;;24938:2;24933:3;24929:12;24922:19;;24959:103;25058:3;25049:6;25041;24959:103;;;24952:110;;25079:3;25072:10;;24829:258;;;;;;;25094:372;;25293:148;25437:3;25293:148;;;25286:155;;25458:3;25451:10;;25274:192;;;;25473:213;;25591:2;25580:9;25576:18;25568:26;;25605:71;25673:1;25662:9;25658:17;25649:6;25605:71;;;25562:124;;;;;25693:229;;25819:2;25808:9;25804:18;25796:26;;25833:79;25909:1;25898:9;25894:17;25885:6;25833:79;;;25790:132;;;;;25929:435;;26103:2;26092:9;26088:18;26080:26;;26117:71;26185:1;26174:9;26170:17;26161:6;26117:71;;;26199:72;26267:2;26256:9;26252:18;26243:6;26199:72;;;26282;26350:2;26339:9;26335:18;26326:6;26282:72;;;26074:290;;;;;;;26371:201;;26483:2;26472:9;26468:18;26460:26;;26497:65;26559:1;26548:9;26544:17;26535:6;26497:65;;;26454:118;;;;;26579:213;;26697:2;26686:9;26682:18;26674:26;;26711:71;26779:1;26768:9;26764:17;26755:6;26711:71;;;26668:124;;;;;26799:324;;26945:2;26934:9;26930:18;26922:26;;26959:71;27027:1;27016:9;27012:17;27003:6;26959:71;;;27041:72;27109:2;27098:9;27094:18;27085:6;27041:72;;;26916:207;;;;;;27130:539;;27328:3;27317:9;27313:19;27305:27;;27343:71;27411:1;27400:9;27396:17;27387:6;27343:71;;;27425:72;27493:2;27482:9;27478:18;27469:6;27425:72;;;27508:70;27574:2;27563:9;27559:18;27550:6;27508:70;;;27589;27655:2;27644:9;27640:18;27631:6;27589:70;;;27299:370;;;;;;;;27676:324;;27822:2;27811:9;27807:18;27799:26;;27836:71;27904:1;27893:9;27889:17;27880:6;27836:71;;;27918:72;27986:2;27975:9;27971:18;27962:6;27918:72;;;27793:207;;;;;;28007:579;;28225:3;28214:9;28210:19;28202:27;;28240:71;28308:1;28297:9;28293:17;28284:6;28240:71;;;28322:72;28390:2;28379:9;28375:18;28366:6;28322:72;;;28405:88;28489:2;28478:9;28474:18;28465:6;28405:88;;;28504:72;28572:2;28561:9;28557:18;28548:6;28504:72;;;28196:390;;;;;;;;28593:428;;28767:2;28756:9;28752:18;28744:26;;28781:71;28849:1;28838:9;28834:17;28825:6;28781:71;;;28900:9;28894:4;28890:20;28885:2;28874:9;28870:18;28863:48;28925:86;29006:4;28997:6;28989;28925:86;;;28917:94;;28738:283;;;;;;;29028:767;;29288:3;29277:9;29273:19;29265:27;;29303:71;29371:1;29360:9;29356:17;29347:6;29303:71;;;29385:68;29449:2;29438:9;29434:18;29425:6;29385:68;;;29464:70;29530:2;29519:9;29515:18;29506:6;29464:70;;;29545:80;29621:2;29610:9;29606:18;29597:6;29545:80;;;29674:9;29668:4;29664:20;29658:3;29647:9;29643:19;29636:49;29699:86;29780:4;29771:6;29763;29699:86;;;29691:94;;29259:536;;;;;;;;;;29802:289;;29934:2;29923:9;29919:18;29911:26;;29984:9;29978:4;29974:20;29970:1;29959:9;29955:17;29948:47;30009:72;30076:4;30067:6;30009:72;;;30001:80;;29905:186;;;;;30098:301;;30236:2;30225:9;30221:18;30213:26;;30286:9;30280:4;30276:20;30272:1;30261:9;30257:17;30250:47;30311:78;30384:4;30375:6;30311:78;;;30303:86;;30207:192;;;;;30406:407;;30597:2;30586:9;30582:18;30574:26;;30647:9;30641:4;30637:20;30633:1;30622:9;30618:17;30611:47;30672:131;30798:4;30672:131;;;30664:139;;30568:245;;;;30820:407;;31011:2;31000:9;30996:18;30988:26;;31061:9;31055:4;31051:20;31047:1;31036:9;31032:17;31025:47;31086:131;31212:4;31086:131;;;31078:139;;30982:245;;;;31234:407;;31425:2;31414:9;31410:18;31402:26;;31475:9;31469:4;31465:20;31461:1;31450:9;31446:17;31439:47;31500:131;31626:4;31500:131;;;31492:139;;31396:245;;;;31648:407;;31839:2;31828:9;31824:18;31816:26;;31889:9;31883:4;31879:20;31875:1;31864:9;31860:17;31853:47;31914:131;32040:4;31914:131;;;31906:139;;31810:245;;;;32062:407;;32253:2;32242:9;32238:18;32230:26;;32303:9;32297:4;32293:20;32289:1;32278:9;32274:17;32267:47;32328:131;32454:4;32328:131;;;32320:139;;32224:245;;;;32476:407;;32667:2;32656:9;32652:18;32644:26;;32717:9;32711:4;32707:20;32703:1;32692:9;32688:17;32681:47;32742:131;32868:4;32742:131;;;32734:139;;32638:245;;;;32890:407;;33081:2;33070:9;33066:18;33058:26;;33131:9;33125:4;33121:20;33117:1;33106:9;33102:17;33095:47;33156:131;33282:4;33156:131;;;33148:139;;33052:245;;;;33304:407;;33495:2;33484:9;33480:18;33472:26;;33545:9;33539:4;33535:20;33531:1;33520:9;33516:17;33509:47;33570:131;33696:4;33570:131;;;33562:139;;33466:245;;;;33718:407;;33909:2;33898:9;33894:18;33886:26;;33959:9;33953:4;33949:20;33945:1;33934:9;33930:17;33923:47;33984:131;34110:4;33984:131;;;33976:139;;33880:245;;;;34132:407;;34323:2;34312:9;34308:18;34300:26;;34373:9;34367:4;34363:20;34359:1;34348:9;34344:17;34337:47;34398:131;34524:4;34398:131;;;34390:139;;34294:245;;;;34546:407;;34737:2;34726:9;34722:18;34714:26;;34787:9;34781:4;34777:20;34773:1;34762:9;34758:17;34751:47;34812:131;34938:4;34812:131;;;34804:139;;34708:245;;;;34960:407;;35151:2;35140:9;35136:18;35128:26;;35201:9;35195:4;35191:20;35187:1;35176:9;35172:17;35165:47;35226:131;35352:4;35226:131;;;35218:139;;35122:245;;;;35374:407;;35565:2;35554:9;35550:18;35542:26;;35615:9;35609:4;35605:20;35601:1;35590:9;35586:17;35579:47;35640:131;35766:4;35640:131;;;35632:139;;35536:245;;;;35788:407;;35979:2;35968:9;35964:18;35956:26;;36029:9;36023:4;36019:20;36015:1;36004:9;36000:17;35993:47;36054:131;36180:4;36054:131;;;36046:139;;35950:245;;;;36202:407;;36393:2;36382:9;36378:18;36370:26;;36443:9;36437:4;36433:20;36429:1;36418:9;36414:17;36407:47;36468:131;36594:4;36468:131;;;36460:139;;36364:245;;;;36616:407;;36807:2;36796:9;36792:18;36784:26;;36857:9;36851:4;36847:20;36843:1;36832:9;36828:17;36821:47;36882:131;37008:4;36882:131;;;36874:139;;36778:245;;;;37030:407;;37221:2;37210:9;37206:18;37198:26;;37271:9;37265:4;37261:20;37257:1;37246:9;37242:17;37235:47;37296:131;37422:4;37296:131;;;37288:139;;37192:245;;;;37444:407;;37635:2;37624:9;37620:18;37612:26;;37685:9;37679:4;37675:20;37671:1;37660:9;37656:17;37649:47;37710:131;37836:4;37710:131;;;37702:139;;37606:245;;;;37858:407;;38049:2;38038:9;38034:18;38026:26;;38099:9;38093:4;38089:20;38085:1;38074:9;38070:17;38063:47;38124:131;38250:4;38124:131;;;38116:139;;38020:245;;;;38272:407;;38463:2;38452:9;38448:18;38440:26;;38513:9;38507:4;38503:20;38499:1;38488:9;38484:17;38477:47;38538:131;38664:4;38538:131;;;38530:139;;38434:245;;;;38686:407;;38877:2;38866:9;38862:18;38854:26;;38927:9;38921:4;38917:20;38913:1;38902:9;38898:17;38891:47;38952:131;39078:4;38952:131;;;38944:139;;38848:245;;;;39100:407;;39291:2;39280:9;39276:18;39268:26;;39341:9;39335:4;39331:20;39327:1;39316:9;39312:17;39305:47;39366:131;39492:4;39366:131;;;39358:139;;39262:245;;;;39514:407;;39705:2;39694:9;39690:18;39682:26;;39755:9;39749:4;39745:20;39741:1;39730:9;39726:17;39719:47;39780:131;39906:4;39780:131;;;39772:139;;39676:245;;;;39928:365;;40098:2;40087:9;40083:18;40075:26;;40148:9;40142:4;40138:20;40134:1;40123:9;40119:17;40112:47;40173:110;40278:4;40269:6;40173:110;;;40165:118;;40069:224;;;;;40300:213;;40418:2;40407:9;40403:18;40395:26;;40432:71;40500:1;40489:9;40485:17;40476:6;40432:71;;;40389:124;;;;;40520:209;;40636:2;40625:9;40621:18;40613:26;;40650:69;40716:1;40705:9;40701:17;40692:6;40650:69;;;40607:122;;;;;40736:205;;40850:2;40839:9;40835:18;40827:26;;40864:67;40928:1;40917:9;40913:17;40904:6;40864:67;;;40821:120;;;;;40948:147;;41030:3;41022:11;;41068:4;41063:3;41059:14;41051:22;;41016:79;;;;41102:133;;41207:5;41201:12;41191:22;;41172:63;;;;41242:117;;41331:5;41325:12;41315:22;;41296:63;;;;41366:122;;41460:5;41454:12;41444:22;;41425:63;;;;41495:104;;41589:4;41584:3;41580:14;41572:22;;41566:33;;;;41607:168;;41727:6;41722:3;41715:19;41764:4;41759:3;41755:14;41740:29;;41708:67;;;;;41784:162;;41898:6;41893:3;41886:19;41935:4;41930:3;41926:14;41911:29;;41879:67;;;;;41955:144;;42090:3;42075:18;;42068:31;;;;;42108:163;;42223:6;42218:3;42211:19;42260:4;42255:3;42251:14;42236:29;;42204:67;;;;;42280:145;;42416:3;42401:18;;42394:31;;;;;42433:91;;42495:24;42513:5;42495:24;;;42484:35;;42478:46;;;;42531:99;;42601:24;42619:5;42601:24;;;42590:35;;42584:46;;;;42637:85;;42710:5;42703:13;42696:21;42685:32;;42679:43;;;;42729:72;;42791:5;42780:16;;42774:27;;;;42808:144;;42880:66;42873:5;42869:78;42858:89;;42852:100;;;;42959:142;;43039:5;43028:16;;43045:51;43090:5;43045:51;;;43022:79;;;;43108:121;;43181:42;43174:5;43170:54;43159:65;;43153:76;;;;43236:72;;43298:5;43287:16;;43281:27;;;;43315:96;;43387:18;43380:5;43376:30;43365:41;;43359:52;;;;43418:98;;43490:20;43483:5;43479:32;43468:43;;43462:54;;;;43523:81;;43594:4;43587:5;43583:16;43572:27;;43566:38;;;;43611:129;;43698:37;43729:5;43698:37;;;43685:50;;43679:61;;;;43747:142;;43842:42;43878:5;43842:42;;;43829:55;;43823:66;;;;43896:121;;43975:37;44006:5;43975:37;;;43962:50;;43956:61;;;;44024:108;;44103:24;44121:5;44103:24;;;44090:37;;44084:48;;;;44140:145;44221:6;44216:3;44211;44198:30;44277:1;44268:6;44263:3;44259:16;44252:27;44191:94;;;;44294:268;44359:1;44366:101;44380:6;44377:1;44374:13;44366:101;;;44456:1;44451:3;44447:11;44441:18;44437:1;44432:3;44428:11;44421:39;44402:2;44399:1;44395:10;44390:15;;44366:101;;;44482:6;44479:1;44476:13;44473:2;;;44547:1;44538:6;44533:3;44529:16;44522:27;44473:2;44343:219;;;;;44570:95;;44634:26;44654:5;44634:26;;;44623:37;;44617:48;;;;44672:89;;44736:20;44750:5;44736:20;;;44725:31;;44719:42;;;;44768:97;;44856:2;44852:7;44847:2;44840:5;44836:14;44832:28;44822:38;;44816:49;;;;44873:94;;44951:5;44947:2;44943:14;44921:36;;44915:52;;;;44975:109;45062:1;45055:5;45052:12;45042:2;;45068:9;45042:2;45036:48;;45091:117;45160:24;45178:5;45160:24;;;45153:5;45150:35;45140:2;;45199:1;45196;45189:12;45140:2;45134:74;;45215:133;45292:32;45318:5;45292:32;;;45285:5;45282:43;45272:2;;45339:1;45336;45329:12;45272:2;45266:82;;45355:117;45424:24;45442:5;45424:24;;;45417:5;45414:35;45404:2;;45463:1;45460;45453:12;45404:2;45398:74;;45479:115;45547:23;45564:5;45547:23;;;45540:5;45537:34;45527:2;;45585:1;45582;45575:12;45527:2;45521:73;;45601:117;45670:24;45688:5;45670:24;;;45663:5;45660:35;45650:2;;45709:1;45706;45699:12;45650:2;45644:74;;45725:115;45793:23;45810:5;45793:23;;;45786:5;45783:34;45773:2;;45831:1;45828;45821:12;45773:2;45767:73;;45847:115;45915:23;45932:5;45915:23;;;45908:5;45905:34;45895:2;;45953:1;45950;45943:12;45895:2;45889:73;;45969:113;46036:22;46052:5;46036:22;;;46029:5;46026:33;46016:2;;46073:1;46070;46063:12;46016:2;46010:72;

Swarm Source

ipfs://b27b3c33d92631bd006c1342adfd7f89f45a528dbb1ea4dc7ed3c444c8199e9f

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.