ETH Price: $3,277.27 (-3.98%)

Contract

0x48D118C9185e4dBAFE7f3813F8F29EC8a6248359
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Initialize164911892023-01-26 13:08:23723 days ago1674738503IN
0x48D118C9...8a6248359
0 ETH0.0010748415.06877048

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LockToken

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
petersburg EvmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-05
*/

// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts-ethereum-package/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-ethereum-package/contracts/token/ERC20/SafeERC20.sol

pragma solidity ^0.6.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "SafeERC20: low-level call failed");

        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts-ethereum-package/contracts/Initializable.sol

pragma solidity >=0.4.24 <0.7.0;


/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {

  /**
   * @dev Indicates that the contract has been initialized.
   */
  bool private initialized;

  /**
   * @dev Indicates that the contract is in the process of being initialized.
   */
  bool private initializing;

  /**
   * @dev Modifier to use in the initializer function of a contract.
   */
  modifier initializer() {
    require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");

    bool isTopLevelCall = !initializing;
    if (isTopLevelCall) {
      initializing = true;
      initialized = true;
    }

    _;

    if (isTopLevelCall) {
      initializing = false;
    }
  }

  /// @dev Returns true if and only if the function is running in the constructor
  function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
    address self = address(this);
    uint256 cs;
    assembly { cs := extcodesize(self) }
    return cs == 0;
  }

  // Reserved storage space to allow for layout changes in the future.
  uint256[50] private ______gap;
}

// File: @openzeppelin/contracts-ethereum-package/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 ContextUpgradeSafe is Initializable {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.

    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {


    }


    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;
    }

    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol

pragma solidity ^0.6.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract OwnableUpgradeSafe is Initializable, ContextUpgradeSafe {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */

    function __Ownable_init() internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {


        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);

    }


    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    uint256[49] private __gap;
}

// File: @openzeppelin/contracts-ethereum-package/contracts/utils/Pausable.sol

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 module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract PausableUpgradeSafe is Initializable, ContextUpgradeSafe {
    /**
     * @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.
     */

    function __Pausable_init() internal initializer {
        __Context_init_unchained();
        __Pausable_init_unchained();
    }

    function __Pausable_init_unchained() internal initializer {


        _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.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }

    uint256[49] private __gap;
}

// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721Receiver.sol

pragma solidity ^0.6.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a {IERC721-safeTransferFrom}. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data)
    external returns (bytes4);
}

// File: @openzeppelin/contracts-ethereum-package/contracts/introspection/IERC165.sol

pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.6.2;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of NFTs in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     *
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either {approve} or {setApprovalForAll}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;
    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either {approve} or {setApprovalForAll}.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;
    function approve(address to, uint256 tokenId) external;
    function getApproved(uint256 tokenId) external view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) external;
    function isApprovedForAll(address owner, address operator) external view returns (bool);


    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
}

// File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721Enumerable.sol

pragma solidity ^0.6.2;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    function totalSupply() external view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: contracts/IERC20Extended.sol

pragma solidity 0.6.2;

interface IERC20Extended {
    function decimals() external view returns (uint8);
}

// File: contracts/IPriceEstimator.sol

pragma solidity 0.6.2;

interface IPriceEstimator {
    function getEstimatedETHforERC20(
        uint256 erc20Amount,
        address token
    ) external view returns (uint256[] memory);

    function getEstimatedERC20forETH(
        uint256 etherAmountInWei,
        address tokenAddress
    ) external view returns (uint256[] memory);
}

// File: contracts/IV3Migrator.sol

pragma solidity 0.6.2;
pragma experimental ABIEncoderV2;

/// @title V3 Migrator
/// @notice Enables migration of liqudity from Uniswap v2-compatible pairs into Uniswap v3 pools
interface IV3Migrator {
    struct MigrateParams {
        address pair; // the Uniswap v2-compatible pair
        uint256 liquidityToMigrate; // expected to be balanceOf(msg.sender)
        uint8 percentageToMigrate; // represented as a numerator over 100
        address token0;
        address token1;
        uint24 fee;
        int24 tickLower;
        int24 tickUpper;
        uint256 amount0Min; // must be discounted by percentageToMigrate
        uint256 amount1Min; // must be discounted by percentageToMigrate
        address recipient;
        uint256 deadline;
        bool refundAsETH;
    }

    /// @notice Migrates liquidity to v3 by burning v2 liquidity and minting a new position for v3
    /// @dev Slippage protection is enforced via `amount{0,1}Min`, which should be a discount of the expected values of
    /// the maximum amount of v3 liquidity that the v2 liquidity can get. For the special case of migrating to an
    /// out-of-range position, `amount{0,1}Min` may be set to 0, enforcing that the position remains out of range
    /// @param params The params necessary to migrate v2 liquidity, encoded as `MigrateParams` in calldata
    function migrate(MigrateParams calldata params) external;

    /// @notice Creates a new pool if it does not exist, then initializes if not initialized
    /// @dev This method can be bundled with others via IMulticall for the first action (e.g. mint) performed against a pool
    /// @param token0 The contract address of token0 of the pool
    /// @param token1 The contract address of token1 of the pool
    /// @param fee The fee amount of the v3 pool for the specified token pair
    /// @param sqrtPriceX96 The initial square root price of the pool as a Q64.96 value
    /// @return pool Returns the pool address based on the pair of tokens and fee, will return the newly created pool address if necessary
    function createAndInitializePoolIfNecessary(
        address token0,
        address token1,
        uint24 fee,
        uint160 sqrtPriceX96
    ) external payable returns (address pool);
}

// File: contracts/IERC721Extended.sol

pragma solidity 0.6.2;


interface IERC721Extended is IERC721 {
    function mintLiquidityLockNFT(address _to, uint256 _tokenId) external;
    function burn (uint256 _tokenId) external;
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
    function transferOwnership (address _newOwner) external;
}

// File: contracts/LockToken.sol

//Team Token Locking Contract
pragma solidity 0.6.2;










contract LockToken is Initializable, OwnableUpgradeSafe, PausableUpgradeSafe, IERC721Receiver {
    using SafeERC20 for IERC20;
    using SafeMath for uint256;
    using Address for address;

    /*
     * deposit vars
    */
    struct Items {
        address tokenAddress;
        address withdrawalAddress;
        uint256 tokenAmount;
        uint256 unlockTime;
        bool withdrawn;
    }

    struct NFTItems {
        address tokenAddress;
        address withdrawalAddress;
        uint256 tokenAmount;
        uint256 unlockTime;
        bool withdrawn;
        uint256 tokenId;
    }

    uint256 public depositId;
    uint256[] public allDepositIds;
    mapping(address => uint256[]) public depositsByWithdrawalAddress;
    mapping(uint256 => Items) public lockedToken;
    mapping(address => mapping(address => uint256)) public walletTokenBalance;
    /*
     * Fee vars
    */
    address public usdTokenAddress;
    IPriceEstimator public priceEstimator;
    //feeInUSD is in Wei, i.e 25USD = 25000000 USDT
    uint256 public feesInUSD;
    address payable public companyWallet;
    //list of free tokens
    mapping(address => bool) private listFreeTokens;

    mapping (uint256 => NFTItems) public lockedNFTs;
    
    //migrating liquidity
    IERC721Enumerable public nonfungiblePositionManager;
    IV3Migrator public v3Migrator;
    //new deposit id to old deposit id
    mapping(uint256 => uint256) public listMigratedDepositIds;

    //NFT Liquidity
    mapping(uint256 => bool) public nftMinted;
    address public NFT;
    bool private _notEntered;

    event LogTokenWithdrawal(uint256 id, address indexed tokenAddress, address indexed withdrawalAddress, uint256 amount);
    event LogNFTWithdrawal(uint256 id, address indexed tokenAddress, uint256 tokenId, address indexed withdrawalAddress, uint256 amount);
    event FeesChanged(uint256 indexed fees);
    event LiquidityMigrated(address indexed migrator, uint256 oldDepositId, uint256 newDepositId, uint256 v3TokenId);
    event EthReceived(address, uint256);
    event Deposit(uint256 id, address indexed tokenAddress, address indexed withdrawalAddress, uint256 amount, uint256 unlockTime);
    event DepositNFT(uint256 id, address indexed tokenAddress, uint256 tokenId, address indexed withdrawalAddress, uint256 amount, uint256 unlockTime);
    event LockDurationExtended(uint256 id, uint256 unlockTime);
    event LockSplit(uint256 id, uint256 remainingAmount, uint256 splitLockId, uint256 newSplitLockAmount);
    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_notEntered, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _notEntered = false;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _notEntered = true;
    }

    modifier onlyContract(address account)
    {
        require(account.isContract(), "The address does not contain a contract");
        _;
    }

    /**
    * @dev initialize
    */
    function initialize()
    external
    {
        __LockToken_init();
    }

    function __LockToken_init()
    internal
    initializer
    {
        __Context_init_unchained();
        __Ownable_init_unchained();
        __Pausable_init_unchained();
    }

    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual override returns (bytes4) {
        return this.onERC721Received.selector;
    }

    /**
     *lock tokens
    */
    function lockToken(
        address _tokenAddress,
        address _withdrawalAddress,
        uint256 _amount,
        uint256 _unlockTime,
        bool _mintNFT
    )
    external 
    payable
    whenNotPaused
    nonReentrant
    returns (uint256 _id)
    {
        require(_amount > 0);
        require(_unlockTime > block.timestamp, "Invalid unlock time");
        uint256 amountIn = _amount;

        _chargeFees(_tokenAddress);
            
        uint256 balanceBefore = IERC20(_tokenAddress).balanceOf(address(this));
        // transfer tokens into contract
        IERC20(_tokenAddress).safeTransferFrom(_msgSender(), address(this), _amount);
        amountIn = IERC20(_tokenAddress).balanceOf(address(this)) - balanceBefore;

        //update balance in address
        walletTokenBalance[_tokenAddress][_withdrawalAddress] = walletTokenBalance[_tokenAddress][_withdrawalAddress].add(amountIn);
        _id = _addERC20Deposit(_tokenAddress, _withdrawalAddress, amountIn, _unlockTime);

        if(_mintNFT) {
            _mintNFTforLock(_id, _withdrawalAddress);
        }

        emit Deposit(_id, _tokenAddress, _withdrawalAddress, amountIn, _unlockTime);
    }

    /**
     *lock nft
    */
    function lockNFT(
        address _tokenAddress,
        address _withdrawalAddress,
        uint256 _amount,
        uint256 _unlockTime,
        uint256 _tokenId,
        bool _mintNFT
    )
    external 
    payable
    whenNotPaused
    nonReentrant
    returns (uint256 _id)
    {
        require(_amount > 0, "Invalid amount");
        require(_unlockTime > block.timestamp, "Invalid unlock time");

        _chargeFees(_tokenAddress);

        //update balance in address
        walletTokenBalance[_tokenAddress][_withdrawalAddress] = walletTokenBalance[_tokenAddress][_withdrawalAddress].add(_amount);
        _id = ++depositId;
        lockedNFTs[_id] = NFTItems({
            tokenAddress: _tokenAddress, 
            withdrawalAddress: _withdrawalAddress,
            tokenAmount: _amount,
            unlockTime: _unlockTime,
            withdrawn: false,
            tokenId: _tokenId
        });

        allDepositIds.push(_id);
        depositsByWithdrawalAddress[_withdrawalAddress].push(_id);

        if(_mintNFT) {
            _mintNFTforLock(_id, _withdrawalAddress);
        }
        IERC721(_tokenAddress).safeTransferFrom(_msgSender(), address(this), _tokenId);

        emit DepositNFT(_id, _tokenAddress, _tokenId, _withdrawalAddress, _amount, _unlockTime);
    }

    /**
     *Extend lock Duration
    */
    function extendLockDuration(
        uint256 _id,
        uint256 _unlockTime
    )
    external
    {
        require(_unlockTime > block.timestamp, "Invalid unlock time");
        NFTItems storage lockedNFT = lockedNFTs[_id];
        Items storage lockedERC20 = lockedToken[_id];

        if(nftMinted[_id]) {
            require(IERC721Extended(NFT).ownerOf(_id) == _msgSender(), "Unauthorised to extend");
        } else {
            require((_msgSender() == lockedNFT.withdrawalAddress || 
                _msgSender() == lockedERC20.withdrawalAddress),
                "Unauthorised to extend"
            );
        }

        if(lockedNFT.tokenAddress != address(0x0))
        {
            require(_unlockTime > lockedNFT.unlockTime, "NFT: smaller unlockTime than existing");
            require(!lockedNFT.withdrawn, "NFT: already withdrawn");

            //set new unlock time
            lockedNFT.unlockTime = _unlockTime;
        }
        else
        {
            require(
                _unlockTime > lockedERC20.unlockTime,
                "ERC20: smaller unlockTime than existing"
            );
            require(
                !lockedERC20.withdrawn,
                "ERC20: already withdrawn"
            );

            //set new unlock time
            lockedERC20.unlockTime = _unlockTime;
        }
        emit LockDurationExtended(_id, _unlockTime);
    }

    /**
     *transfer locked tokens
    */
    function transferLocks(
        uint256 _id,
        address _receiverAddress
    )
    external
    {
        address msg_sender;
        NFTItems storage lockedNFT = lockedNFTs[_id];
        Items storage lockedERC20 = lockedToken[_id];

        if( lockedNFT.tokenAddress != address(0x0) )
        {
            if (_msgSender() == NFT && nftMinted[_id])
            {
                msg_sender = lockedNFT.withdrawalAddress;
            }
            else
            {
                require((!nftMinted[_id]), "NFT: Transfer Lock NFT");
                require(_msgSender() == lockedNFT.withdrawalAddress, "Unauthorised to transfer");
                msg_sender = _msgSender();
            }

            require(!lockedNFT.withdrawn, "NFT: already withdrawn");
            
            //decrease sender's token balance
            walletTokenBalance[lockedNFT.tokenAddress][msg_sender] = 
                walletTokenBalance[lockedNFT.tokenAddress][msg_sender].sub(lockedNFT.tokenAmount);
            
            //increase receiver's token balance
            walletTokenBalance[lockedNFT.tokenAddress][_receiverAddress] = 
                walletTokenBalance[lockedNFT.tokenAddress][_receiverAddress].add(lockedNFT.tokenAmount);
            
            _removeDepositsForWithdrawalAddress(_id, msg_sender);
            
            //Assign this id to receiver address
            lockedNFT.withdrawalAddress = _receiverAddress;
        }
        else
        {
            if (_msgSender() == NFT && nftMinted[_id])
            {
                msg_sender = lockedERC20.withdrawalAddress;
            }
            else {
                require((!nftMinted[_id]), "ERC20: Transfer Lock NFT");
                require(_msgSender() == lockedERC20.withdrawalAddress, "Unauthorised to transfer");
                msg_sender = _msgSender();
            }
            
            require(!lockedERC20.withdrawn, "ERC20: already withdrawn");
            
            //decrease sender's token balance
            walletTokenBalance[lockedERC20.tokenAddress][msg_sender] = 
            walletTokenBalance[lockedERC20.tokenAddress][msg_sender].sub(lockedERC20.tokenAmount);
            
            //increase receiver's token balance
            walletTokenBalance[lockedERC20.tokenAddress][_receiverAddress] = 
            walletTokenBalance[lockedERC20.tokenAddress][_receiverAddress].add(lockedERC20.tokenAmount);
            
            _removeDepositsForWithdrawalAddress(_id, msg_sender);
            
            //Assign this id to receiver address
            lockedERC20.withdrawalAddress = _receiverAddress;
        }
        
        depositsByWithdrawalAddress[_receiverAddress].push(_id);
    }

    /**
     *withdraw tokens
    */
    function withdrawTokens(
        uint256 _id,
        uint256 _amount
    )
    external
    nonReentrant
    {
        if(nftMinted[_id]) {
            require(IERC721Extended(NFT).ownerOf(_id) == _msgSender(), "Unauthorised to unlock");
        }
        NFTItems memory lockedNFT = lockedNFTs[_id];
        Items storage lockedERC20 = lockedToken[_id];

        require(
            (_msgSender() == lockedNFT.withdrawalAddress || _msgSender() == lockedERC20.withdrawalAddress),
            "Unauthorised to unlock"
        );

        //amount is ignored for erc-721 locks, in the future if 1155 locks are supported, we need to cater to amount var
        if(lockedNFT.tokenAddress != address(0x0)) {
            require(block.timestamp >= lockedNFT.unlockTime, "Unlock time not reached");
            require(!lockedNFT.withdrawn, "NFT: already withdrawn");

            _removeNFTDeposit(_id);

            if(nftMinted[_id])
            {
                nftMinted[_id] = false;
                IERC721Extended(NFT).burn(_id);
            }

            // transfer tokens to wallet address
            IERC721(lockedNFT.tokenAddress).safeTransferFrom(address(this), _msgSender(), lockedNFT.tokenId);

            emit LogNFTWithdrawal(_id, lockedNFT.tokenAddress, lockedNFT.tokenId, _msgSender(), lockedNFT.tokenAmount);
        }
        else
        {
            require(block.timestamp >= lockedERC20.unlockTime, "Unlock time not reached");
            require(!lockedERC20.withdrawn, "ERC20: already withdrawn");
            require(_amount > 0, "ERC20: Cannot Withdraw 0 Tokens");
            require(lockedERC20.tokenAmount >= _amount, "Insufficent Balance to withdraw");

            //full withdrawl
            if(lockedERC20.tokenAmount == _amount){
                _removeERC20Deposit(_id);
                if (nftMinted[_id]){
                    nftMinted[_id] = false;
                    IERC721Extended(NFT).burn(_id);
                }
            }
            else {
                //partial withdrawl
                lockedERC20.tokenAmount = lockedERC20.tokenAmount.sub(_amount);
                walletTokenBalance[lockedERC20.tokenAddress][lockedERC20.withdrawalAddress] = 
                    walletTokenBalance[lockedERC20.tokenAddress][lockedERC20.withdrawalAddress].sub(_amount);
            }
            // transfer tokens to wallet address
            require(IERC20(lockedERC20.tokenAddress).transfer(_msgSender(), _amount));

            emit LogTokenWithdrawal(_id, lockedERC20.tokenAddress, _msgSender(), _amount);
        }
    }

    /**
    Split existing ERC20 Lock into 2
    @dev This function will split a single lock into two induviual locks
    @param _id represents the lockId of the token lock you are to split
    @param _splitAmount is the amount of tokens in wei that will be 
    shifted from the old lock to the new split lock
    @param _splitUnlockTime the unlock time for the newly created split lock
    must always be >= to unlockTime of lock it is being split from
    @param _mintNFT is a boolean check on weather the new split lock will have an NFT minted
     */
     
    function splitLock(
        uint256 _id, 
        uint256 _splitAmount,
        uint256 _splitUnlockTime,
        bool _mintNFT
    ) 
    external 
    payable
    whenNotPaused
    nonReentrant
    returns (uint256 _splitLockId)
    {
        Items storage lockedERC20 = lockedToken[_id];
        // NFTItems memory lockedNFT = lockedNFTs[_id];
        address lockedNFTAddress = lockedNFTs[_id].tokenAddress;
        //Check to ensure an NFT lock is not being split
        require(lockedNFTAddress == address(0x0), "Can't split locked NFT");
        uint256 lockedERC20Amount = lockedToken[_id].tokenAmount;
        address lockedERC20Address = lockedToken[_id].tokenAddress;
        address lockedERC20WithdrawlAddress = lockedToken[_id].withdrawalAddress;
        require(lockedERC20Address != address(0x0), "Can't split empty lock");
        if(nftMinted[_id]){
            require(
                IERC721(NFT).ownerOf(_id) == _msgSender(),
                "Unauthorised to Split"
            );
        }
        require(
            _msgSender() == lockedERC20WithdrawlAddress,
             "Unauthorised to Split"
        );
        require(lockedERC20.withdrawn == false, "Cannot split withdrawn lock");
        //Current locked tokenAmount must always be > _splitAmount as (lockedERC20.tokenAmount - _splitAmount) 
        //will be the number of tokens retained in the original lock, while splitAmount will be the amount of tokens
        //transferred to the new lock
        require(lockedERC20Amount > _splitAmount, "Insufficient balance to split");
        require(_splitUnlockTime >= lockedERC20.unlockTime, "Smaller unlock time than existing");
        //charge Tier 2 fee for tokenSplit
        _chargeFees(lockedERC20Address);
        lockedERC20.tokenAmount = lockedERC20Amount.sub(_splitAmount);
        //new token lock created with id stored in var _splitLockId
        _splitLockId = _addERC20Deposit(lockedERC20Address, lockedERC20WithdrawlAddress, _splitAmount, _splitUnlockTime);
        if(_mintNFT) {
            _mintNFTforLock(_splitLockId, lockedERC20WithdrawlAddress);
        }
        emit LockSplit(_id, lockedERC20.tokenAmount, _splitLockId, _splitAmount);
        emit Deposit(_splitLockId, lockedERC20Address, lockedERC20WithdrawlAddress, _splitAmount, _splitUnlockTime);

    }

    /**
    * @dev Called by an admin to pause, triggers stopped state.
    */
    function pause()
    external
    onlyOwner 
    {
        _pause();
    }

    /**
    * @dev Called by an admin to unpause, returns to normal state.
    */
    function unpause()
    external
    onlyOwner
    {
        _unpause();
    }

    function setFeeParams(address _priceEstimator, address _usdTokenAddress, uint256 _feesInUSD, address payable _companyWallet)
    external
    onlyOwner
    onlyContract(_priceEstimator)
    onlyContract(_usdTokenAddress)
    {
        require(_priceEstimator != address(0), "Invalid price estimator address");
        require(_usdTokenAddress != address(0), "Invalid USD token address");
        require(_feesInUSD > 0, "fees should be greater than 0");
        require(_companyWallet != address(0), "Invalid wallet address");
        priceEstimator = IPriceEstimator(_priceEstimator);
        usdTokenAddress = _usdTokenAddress;
        feesInUSD = _feesInUSD;
        companyWallet = _companyWallet;
        emit FeesChanged(_feesInUSD);
    }

    function setFeesInUSD(uint256 _feesInUSD)
    external
    onlyOwner
    {
        require(_feesInUSD > 0,"fees should be greater than 0");
        feesInUSD = _feesInUSD;
        emit FeesChanged(_feesInUSD);
    }

    function setCompanyWallet(address payable _companyWallet)
    external
    onlyOwner
    {
        require(_companyWallet != address(0), "Invalid wallet address");
        companyWallet = _companyWallet;
    }

    function setNonFungiblePositionManager(address _nonfungiblePositionManager)
    external
    onlyOwner
    onlyContract(_nonfungiblePositionManager)
    {
        require(_nonfungiblePositionManager != address(0), "Invalid address");
        nonfungiblePositionManager = IERC721Enumerable(_nonfungiblePositionManager);
    }

    function setV3Migrator(address _v3Migrator)
    external
    onlyOwner
    onlyContract(_v3Migrator)
    {
        require(_v3Migrator != address(0), "Invalid address");
        v3Migrator = IV3Migrator(_v3Migrator);
    }

    /**
     * @dev Update the address of the NFT SC
     * @param _nftContractAddress The address of the new NFT SC
     */
    function setNFTContract(address _nftContractAddress)
    external
    onlyOwner
    onlyContract(_nftContractAddress)
    {
        require(_nftContractAddress != address(0), "Invalid address");
        NFT = _nftContractAddress;
    }

    /**
    * @dev called by admin to add given token to free tokens list
    */
    function addTokenToFreeList(address token)
    external
    onlyOwner
    onlyContract(token)
    {
        listFreeTokens[token] = true;
    }

    /**
    * @dev called by admin to remove given token from free tokens list
    */
    function removeTokenFromFreeList(address token)
    external
    onlyOwner
    onlyContract(token)
    {
        listFreeTokens[token] = false;
    }

    /*get total token balance in contract*/
    function getTotalTokenBalance(address _tokenAddress) view external returns (uint256)
    {
       return IERC20(_tokenAddress).balanceOf(address(this));
    }
    
    /*get allDepositIds*/
    function getAllDepositIds() view external returns (uint256[] memory)
    {
        return allDepositIds;
    }
    
    /*get getDepositDetails*/
    function getDepositDetails(uint256 _id)
    view
    external
    returns (
        address _tokenAddress, 
        address _withdrawalAddress, 
        uint256 _tokenAmount, 
        uint256 _unlockTime, 
        bool _withdrawn, 
        uint256 _tokenId,
        bool _isNFT,
        uint256 _migratedLockDepositId,
        bool _isNFTMinted)
    {
        bool isNftMinted = nftMinted[_id];
        NFTItems memory lockedNFT = lockedNFTs[_id];
        Items memory lockedERC20 = lockedToken[_id];

        if( lockedNFT.tokenAddress != address(0x0) )
        {
            //old lock id
            uint256 migratedLockId = listMigratedDepositIds[_id];

            return (
                lockedNFT.tokenAddress,
                lockedNFT.withdrawalAddress,
                lockedNFT.tokenAmount,
                lockedNFT.unlockTime,
                lockedNFT.withdrawn, 
                lockedNFT.tokenId,
                true,
                migratedLockId,
                isNftMinted
            );
        }
        else
        {
            return (
                lockedERC20.tokenAddress,
                lockedERC20.withdrawalAddress,
                lockedERC20.tokenAmount,
                lockedERC20.unlockTime,
                lockedERC20.withdrawn,
                0,
                false,
                0,
                isNftMinted
            );
        }
    }
    
    /*get DepositsByWithdrawalAddress*/
    function getDepositsByWithdrawalAddress(address _withdrawalAddress) view external returns (uint256[] memory)
    {
        return depositsByWithdrawalAddress[_withdrawalAddress];
    }
    
    function getFeesInETH(address _tokenAddress)
    public
    view
    returns (uint256)
    {
        //token listed free or fee params not set
        if (isFreeToken(_tokenAddress) ||
            address(priceEstimator) == address(0) ||
            usdTokenAddress == address(0) ||
            feesInUSD == 0)
        {
            return 0;
        }
        else 
        {
            //price should be estimated by 1 token because Uniswap algo changes price based on large amount
            uint256 tokenBits = 10 ** uint256(IERC20Extended(usdTokenAddress).decimals());

            uint256 estFeesInEthPerUnit = priceEstimator.getEstimatedETHforERC20(tokenBits, usdTokenAddress)[0];
            //subtract uniswap 0.30% fees
            //_uniswapFeePercentage is a percentage expressed in 1/10 (a tenth) of a percent hence we divide by 1000
            estFeesInEthPerUnit = estFeesInEthPerUnit.sub(estFeesInEthPerUnit.mul(3).div(1000));

            uint256 feesInEth = feesInUSD.mul(estFeesInEthPerUnit).div(tokenBits);
            return feesInEth;
        }
    }

    /**
     * @dev Checks if token is in free list
     * @param token The address to check
    */
    function isFreeToken(address token)
    public
    view
    returns(bool)
    {
        return listFreeTokens[token];
    }

    /**
     * migrate liquidity from v2 to v3
    */
    function migrate(
        uint256 _id,
        IV3Migrator.MigrateParams calldata params,
        bool noLiquidity,
        uint160 sqrtPriceX96,
        bool _mintNFT
    )
    external
    payable
    whenNotPaused
    nonReentrant
    {
        require(address(nonfungiblePositionManager) != address(0), "NFT manager not set");
        require(address(v3Migrator) != address(0), "v3 migrator not set");
        Items memory lockedERC20 = lockedToken[_id];
        require(block.timestamp < lockedERC20.unlockTime, "Unlock time already reached");
        require(_msgSender() == lockedERC20.withdrawalAddress, "Unauthorised sender");
        require(!lockedERC20.withdrawn, "Already withdrawn");

        uint256 totalSupplyBeforeMigrate = nonfungiblePositionManager.totalSupply();
        
        //scope for solving stack too deep error
        {
            uint256 ethBalanceBefore = address(this).balance;
            uint256 token0BalanceBefore = IERC20(params.token0).balanceOf(address(this));
            uint256 token1BalanceBefore = IERC20(params.token1).balanceOf(address(this));
            
            //initialize the pool if not yet initialized
            if(noLiquidity) {
                v3Migrator.createAndInitializePoolIfNecessary(params.token0, params.token1, params.fee, sqrtPriceX96);
            }

            IERC20(params.pair).approve(address(v3Migrator), params.liquidityToMigrate);

            v3Migrator.migrate(params);

            //refund eth or tokens
            uint256 refundEth = address(this).balance - ethBalanceBefore;
            (bool refundSuccess,) = _msgSender().call.value(refundEth)("");
            require(refundSuccess, 'Refund ETH failed');

            uint256 token0BalanceAfter = IERC20(params.token0).balanceOf(address(this));
            uint256 refundToken0 = token0BalanceAfter - token0BalanceBefore;
            if( refundToken0 > 0 ) {
                require(IERC20(params.token0).transfer(_msgSender(), refundToken0));
            }

            uint256 token1BalanceAfter = IERC20(params.token1).balanceOf(address(this));
            uint256 refundToken1 = token1BalanceAfter - token1BalanceBefore;
            if( refundToken1 > 0 ) {
                require(IERC20(params.token1).transfer(_msgSender(), refundToken1));
            }
        }

        //remove old locked token details
        _removeERC20Deposit(_id);

        //Get the token id of newly generated nft for v3
        uint256 totalSupplyAfterMigrate = nonfungiblePositionManager.totalSupply();
        require(totalSupplyAfterMigrate == totalSupplyBeforeMigrate.add(1));
        uint256 tokenIndex = totalSupplyAfterMigrate.sub(1);
        uint256 tokenId = nonfungiblePositionManager.tokenByIndex(tokenIndex);

        //add new locked nft details ( received after migrating liquidity )
        uint256 newDepositId = ++depositId;
        _addNFTDeposit(_id, newDepositId, tokenId);

        listMigratedDepositIds[newDepositId] = _id;

        if (_mintNFT){
            require(NFT != address(0), 'NFT: Unintalized');
            nftMinted[newDepositId] = true;
        }

        if(nftMinted[_id])
        {
            nftMinted[_id] = false;
            IERC721Extended(NFT).burn(_id);
        }
        if (_mintNFT){
            IERC721Extended(NFT).mintLiquidityLockNFT(_msgSender(), newDepositId);
        }
        
        emit LiquidityMigrated(_msgSender(), _id, newDepositId, tokenId);
    }

    function _addNFTDeposit(
        uint256 _id,
        uint256 _newDepositId,
        uint256 _tokenId
    )
    private
    {
        Items memory lockedERC20 = lockedToken[_id];
        lockedNFTs[_newDepositId] = NFTItems({
            tokenAddress: address(nonfungiblePositionManager),
            withdrawalAddress: lockedERC20.withdrawalAddress,
            tokenAmount: 1,
            unlockTime: lockedERC20.unlockTime,
            withdrawn: false,
            tokenId: _tokenId
        }
        );
            
        //add entry from lockedNFTs struct
        walletTokenBalance[address(nonfungiblePositionManager)][lockedERC20.withdrawalAddress] = 
            walletTokenBalance[address(nonfungiblePositionManager)][lockedERC20.withdrawalAddress].add(1);

        allDepositIds.push(_newDepositId);
        depositsByWithdrawalAddress[lockedERC20.withdrawalAddress].push(_newDepositId);
    }

    function _addERC20Deposit (
        address _tokenAddress,
        address _withdrawalAddress,
        uint256 amountIn,
        uint256 _unlockTime
    ) 
    private 
    returns (uint256 _id){
        _id = ++depositId;
        lockedToken[_id] = Items({
            tokenAddress: _tokenAddress, 
            withdrawalAddress: _withdrawalAddress,
            tokenAmount: amountIn, 
            unlockTime: _unlockTime, 
            withdrawn: false
        });

        allDepositIds.push(_id);
        depositsByWithdrawalAddress[_withdrawalAddress].push(_id);
    }

    function _removeERC20Deposit(
        uint256 _id
    )
    private
    {
        Items storage lockedERC20 = lockedToken[_id];
        //remove entry from lockedToken struct
        lockedERC20.withdrawn = true;
                
        //update balance in address
        walletTokenBalance[lockedERC20.tokenAddress][lockedERC20.withdrawalAddress] = 
        walletTokenBalance[lockedERC20.tokenAddress][lockedERC20.withdrawalAddress].sub(lockedERC20.tokenAmount);
        
        _removeDepositsForWithdrawalAddress(_id, lockedERC20.withdrawalAddress);
    }

    function _removeNFTDeposit(
        uint256 _id
    )
    private
    {
        NFTItems storage lockedNFT = lockedNFTs[_id];
        //remove entry from lockedNFTs struct
        lockedNFT.withdrawn = true;
                
        //update balance in address
        walletTokenBalance[lockedNFT.tokenAddress][lockedNFT.withdrawalAddress] = 
        walletTokenBalance[lockedNFT.tokenAddress][lockedNFT.withdrawalAddress].sub(lockedNFT.tokenAmount);
        
        _removeDepositsForWithdrawalAddress(_id, lockedNFTs[_id].withdrawalAddress);
    }

    function _removeDepositsForWithdrawalAddress(
        uint256 _id,
        address _withdrawalAddress
    )
    private
    {
        //remove this id from this address
        uint256 j;
        uint256 arrLength = depositsByWithdrawalAddress[_withdrawalAddress].length;
        for (j=0; j<arrLength; j++) {
            if (depositsByWithdrawalAddress[_withdrawalAddress][j] == _id) {
                depositsByWithdrawalAddress[_withdrawalAddress][j] = 
                    depositsByWithdrawalAddress[_withdrawalAddress][arrLength - 1];
                depositsByWithdrawalAddress[_withdrawalAddress].pop();
                break;
            }
        }
    }

    function _chargeFees(
        address _tokenAddress
    )
    private
    {
        uint256 minRequiredFeeInEth = getFeesInETH(_tokenAddress);
        if( minRequiredFeeInEth > 0 ) {
            bool feesBelowMinRequired = msg.value < minRequiredFeeInEth;
            uint256 feeDiff = feesBelowMinRequired ? 
                SafeMath.sub(minRequiredFeeInEth, msg.value) : 
                SafeMath.sub(msg.value, minRequiredFeeInEth);
                
            if( feesBelowMinRequired ) {
                uint256 feeSlippagePercentage = feeDiff.mul(100).div(minRequiredFeeInEth);
                //will allow if diff is less than 5%
                require(feeSlippagePercentage <= 5, "Fee Not Met");
            }
            (bool success,) = companyWallet.call.value(feesBelowMinRequired ? msg.value : minRequiredFeeInEth)("");
            require(success, "Fee transfer failed");
            /* refund difference. */
            if (!feesBelowMinRequired && feeDiff > 0) {
                (bool refundSuccess,) = _msgSender().call.value(feeDiff)("");
            }
        }
    }

    /**
     */
    function mintNFTforLock(uint256 _id)
        external
        whenNotPaused
    {
        require(NFT != address(0), 'NFT: Unintalized');
        require(
            !nftMinted[_id], 
            "NFT already minted"
        );
        NFTItems memory lockedNFT = lockedNFTs[_id];
        Items memory lockedERC20 = lockedToken[_id];

        require(
            (lockedNFT.withdrawalAddress == _msgSender() || lockedERC20.withdrawalAddress == _msgSender()), 
            "Unauthorised"
        );
        require((!lockedNFT.withdrawn && !lockedERC20.withdrawn), 
            "Token/NFT already withdrawn"
        );

        _mintNFTforLock(_id, _msgSender());
    }

    function _mintNFTforLock(
        uint256 _id, 
        address _withdrawalAddress
    ) 
    private{
        require(NFT != address(0), 'NFT: Unintalized');
        nftMinted[_id] = true;
        IERC721Extended(NFT).mintLiquidityLockNFT(_withdrawalAddress, _id);
    }

    /**
     * @dev Transfer ownership of NFT contract
     * @param _newOwner The address of the new owner of NFT SC
     */
    function transferOwnershipNFTContract(address _newOwner)
        external
        onlyOwner
    {
        IERC721Extended(NFT).transferOwnership(_newOwner);
    }

    receive() external payable {
        emit EthReceived(_msgSender(), msg.value);
    }

    function setNotEntered() external onlyOwner {
        _notEntered = true;
    }
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":true,"internalType":"address","name":"withdrawalAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockTime","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"withdrawalAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockTime","type":"uint256"}],"name":"DepositNFT","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"EthReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fees","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"migrator","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldDepositId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newDepositId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"v3TokenId","type":"uint256"}],"name":"LiquidityMigrated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockTime","type":"uint256"}],"name":"LockDurationExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"remainingAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"splitLockId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newSplitLockAmount","type":"uint256"}],"name":"LockSplit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"withdrawalAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LogNFTWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":true,"internalType":"address","name":"withdrawalAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LogTokenWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"NFT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"addTokenToFreeList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allDepositIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"companyWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"depositId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"depositsByWithdrawalAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_unlockTime","type":"uint256"}],"name":"extendLockDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesInUSD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllDepositIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"getDepositDetails","outputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_withdrawalAddress","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"uint256","name":"_unlockTime","type":"uint256"},{"internalType":"bool","name":"_withdrawn","type":"bool"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_isNFT","type":"bool"},{"internalType":"uint256","name":"_migratedLockDepositId","type":"uint256"},{"internalType":"bool","name":"_isNFTMinted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawalAddress","type":"address"}],"name":"getDepositsByWithdrawalAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"getFeesInETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"getTotalTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"isFreeToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"listMigratedDepositIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_withdrawalAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_unlockTime","type":"uint256"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_mintNFT","type":"bool"}],"name":"lockNFT","outputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"address","name":"_withdrawalAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_unlockTime","type":"uint256"},{"internalType":"bool","name":"_mintNFT","type":"bool"}],"name":"lockToken","outputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockedNFTs","outputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"withdrawalAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"unlockTime","type":"uint256"},{"internalType":"bool","name":"withdrawn","type":"bool"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lockedToken","outputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"withdrawalAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"unlockTime","type":"uint256"},{"internalType":"bool","name":"withdrawn","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"components":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"uint256","name":"liquidityToMigrate","type":"uint256"},{"internalType":"uint8","name":"percentageToMigrate","type":"uint8"},{"internalType":"address","name":"token0","type":"address"},{"internalType":"address","name":"token1","type":"address"},{"internalType":"uint24","name":"fee","type":"uint24"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint256","name":"amount0Min","type":"uint256"},{"internalType":"uint256","name":"amount1Min","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bool","name":"refundAsETH","type":"bool"}],"internalType":"struct IV3Migrator.MigrateParams","name":"params","type":"tuple"},{"internalType":"bool","name":"noLiquidity","type":"bool"},{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"internalType":"bool","name":"_mintNFT","type":"bool"}],"name":"migrate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"mintNFTforLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nftMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonfungiblePositionManager","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceEstimator","outputs":[{"internalType":"contract IPriceEstimator","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"removeTokenFromFreeList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_companyWallet","type":"address"}],"name":"setCompanyWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_priceEstimator","type":"address"},{"internalType":"address","name":"_usdTokenAddress","type":"address"},{"internalType":"uint256","name":"_feesInUSD","type":"uint256"},{"internalType":"address payable","name":"_companyWallet","type":"address"}],"name":"setFeeParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feesInUSD","type":"uint256"}],"name":"setFeesInUSD","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftContractAddress","type":"address"}],"name":"setNFTContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nonfungiblePositionManager","type":"address"}],"name":"setNonFungiblePositionManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setNotEntered","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_v3Migrator","type":"address"}],"name":"setV3Migrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_splitAmount","type":"uint256"},{"internalType":"uint256","name":"_splitUnlockTime","type":"uint256"},{"internalType":"bool","name":"_mintNFT","type":"bool"}],"name":"splitLock","outputs":[{"internalType":"uint256","name":"_splitLockId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"address","name":"_receiverAddress","type":"address"}],"name":"transferLocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnershipNFTContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"v3Migrator","outputs":[{"internalType":"contract IV3Migrator","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"walletTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801561001057600080fd5b50615b7380620000216000396000f3fe60806040526004361061028c5760003560e01c8063890db72f1161015a578063c8e6aa98116100c1578063e8555f051161007a578063e8555f0514610798578063ee66beef146107b8578063f2fde38b146107d8578063fd39e1e4146107f8578063feeb733d14610818578063ffd68f1514610838576102d3565b8063c8e6aa98146106f0578063c9028aff14610710578063cd7d9e9914610730578063d084c0a614610750578063d8ad1b2b14610763578063e3f1bc2b14610783576102d3565b8063adad19bd11610113578063adad19bd14610637578063b44a272214610657578063b86f3ea61461066c578063b9e7df1c1461067f578063ba7bd2aa1461069f578063bb941cff146106bf576102d3565b8063890db72f146105715780638da5cb5b146105a6578063945633c1146105bb5780639852099c146105ed578063a7ccabdf14610602578063aa182aef14610622576102d3565b80634c5f7f54116101fe5780636e8fa91d116101b75780636e8fa91d146104dd578063715018a6146104fd57806376704de0146105125780637c0b8de2146105325780638129fc1c146105475780638456cb591461055c576102d3565b80634c5f7f541461043e5780634d0925d31461045e578063530680d81461047e5780635c975abb1461049e5780636ba03924146104b35780636cbc1e9b146104c8576102d3565b80632883118711610250578063288311871461039f57806331bff521146103bf57806334a5504c146103ec5780633eac8dac146103ff5780633f4ba83a146104145780634c40c82214610429576102d3565b8063047bcc70146102d85780630bd59ad314610301578063150b7a021461032e578063190b4a9e1461035b5780631ec32d151461037d576102d3565b366102d3577f85177f287940f2f05425a4029951af0e047a7f9c4eaa9a6e6917bcd869f866956102ba610858565b346040516102c9929190614d18565b60405180910390a1005b600080fd5b6102eb6102e6366004614c46565b61085c565b6040516102f891906159e2565b60405180910390f35b34801561030d57600080fd5b5061032161031c366004614831565b610b9f565b6040516102f89190614e19565b34801561033a57600080fd5b5061034e6103493660046148f3565b610c0c565b6040516102f89190614e68565b34801561036757600080fd5b5061037b610376366004614831565b610c1c565b005b34801561038957600080fd5b50610392610cb6565b6040516102f89190614ce0565b3480156103ab57600080fd5b5061037b6103ba366004614831565b610cc5565b3480156103cb57600080fd5b506103df6103da366004614831565b610d42565b6040516102f89190614e5d565b6102eb6103fa366004614a09565b610d60565b34801561040b57600080fd5b50610392611031565b34801561042057600080fd5b5061037b611040565b34801561043557600080fd5b5061037b61107f565b34801561044a57600080fd5b5061037b610459366004614b9a565b6110c9565b34801561046a57600080fd5b506102eb610479366004614b6a565b6114c8565b34801561048a57600080fd5b506102eb610499366004614a6f565b6114da565b3480156104aa57600080fd5b506103df611508565b3480156104bf57600080fd5b50610321611511565b3480156104d457600080fd5b50610392611569565b3480156104e957600080fd5b5061037b6104f83660046148a1565b611578565b34801561050957600080fd5b5061037b611712565b34801561051e57600080fd5b5061037b61052d366004614c25565b611791565b34801561053e57600080fd5b506103926119e5565b34801561055357600080fd5b5061037b6119f4565b34801561056857600080fd5b5061037b6119fc565b34801561057d57600080fd5b5061059161058c366004614b6a565b611a39565b6040516102f899989796959493929190614dca565b3480156105b257600080fd5b50610392611bc7565b3480156105c757600080fd5b506105db6105d6366004614b6a565b611bd6565b6040516102f896959493929190614d92565b3480156105f957600080fd5b506102eb611c1c565b34801561060e57600080fd5b5061037b61061d366004614831565b611c22565b34801561062e57600080fd5b506102eb611ccf565b34801561064357600080fd5b506102eb610652366004614831565b611cd5565b34801561066357600080fd5b50610392611d5a565b61037b61067a366004614bbe565b611d69565b34801561068b57600080fd5b506102eb61069a366004614869565b61286a565b3480156106ab57600080fd5b5061037b6106ba366004614c25565b612887565b3480156106cb57600080fd5b506106df6106da366004614b6a565b612ed9565b6040516102f8959493929190614d61565b3480156106fc57600080fd5b5061037b61070b366004614b6a565b612f17565b34801561071c57600080fd5b506102eb61072b366004614b6a565b612f9f565b34801561073c57600080fd5b5061037b61074b366004614831565b612fbd565b6102eb61075e3660046149ab565b613046565b34801561076f57600080fd5b5061037b61077e366004614831565b6132e3565b34801561078f57600080fd5b50610392613369565b3480156107a457600080fd5b5061037b6107b3366004614831565b613378565b3480156107c457600080fd5b5061037b6107d3366004614b6a565b613425565b3480156107e457600080fd5b5061037b6107f3366004614831565b61361c565b34801561080457600080fd5b5061037b610813366004614831565b6136d3565b34801561082457600080fd5b506102eb610833366004614831565b613780565b34801561084457600080fd5b506103df610853366004614b6a565b613955565b3390565b60975460009060ff161561088b5760405162461bcd60e51b815260040161088290615249565b60405180910390fd5b60d854600160a01b900460ff166108b45760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b19169055600085815260cc6020908152604080832060d3909252909120546001600160a01b031680156109025760405162461bcd60e51b815260040161088290615316565b600087815260cc602052604090206002810154815460019092015490916001600160a01b039081169116816109495760405162461bcd60e51b8152600401610882906153f3565b60008a815260d7602052604090205460ff1615610a1257610968610858565b60d8546040516331a9108f60e11b81526001600160a01b039283169290911690636352211e9061099c908e906004016159e2565b60206040518083038186803b1580156109b457600080fd5b505afa1580156109c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506109ec919081019061484d565b6001600160a01b031614610a125760405162461bcd60e51b815260040161088290615857565b806001600160a01b0316610a24610858565b6001600160a01b031614610a4a5760405162461bcd60e51b815260040161088290615857565b600485015460ff1615610a6f5760405162461bcd60e51b815260040161088290614fd7565b888311610a8e5760405162461bcd60e51b8152600401610882906154ba565b8460030154881015610ab25760405162461bcd60e51b815260040161088290614eb0565b610abb8261396a565b610acb838a63ffffffff613af016565b6002860155610adc82828b8b613b39565b95508615610aee57610aee8682613c26565b7f688938ab392c7ce16481d86b060cddded03a276517f9da7dd5862bd1305d987c8a8660020154888c604051610b279493929190615a26565b60405180910390a1806001600160a01b0316826001600160a01b03167feb65d0f36862bbd8763c5e2c983c9d753267d223eee35a224d8d0a9d7ef433a2888c8c604051610b7693929190615a10565b60405180910390a3505060d8805460ff60a01b1916600160a01b17905550919695505050505050565b6001600160a01b038116600090815260cb6020908152604091829020805483518184028101840190945280845260609392830182828015610bff57602002820191906000526020600020905b815481526020019060010190808311610beb575b505050505090505b919050565b630a85bd0160e11b949350505050565b610c24610858565b6065546001600160a01b03908116911614610c515760405162461bcd60e51b815260040161088290615370565b60d85460405163f2fde38b60e01b81526001600160a01b039091169063f2fde38b90610c81908490600401614ce0565b600060405180830381600087803b158015610c9b57600080fd5b505af1158015610caf573d6000803e3d6000fd5b5050505050565b60d1546001600160a01b031681565b610ccd610858565b6065546001600160a01b03908116911614610cfa5760405162461bcd60e51b815260040161088290615370565b6001600160a01b038116610d205760405162461bcd60e51b8152600401610882906155b2565b60d180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0316600090815260d2602052604090205460ff1690565b60975460009060ff1615610d865760405162461bcd60e51b815260040161088290615249565b60d854600160a01b900460ff16610daf5760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b1916905584610dd95760405162461bcd60e51b81526004016108829061508b565b428411610df85760405162461bcd60e51b81526004016108829061521c565b610e018761396a565b6001600160a01b03808816600090815260cd60209081526040808320938a1683529290522054610e37908663ffffffff613cd016565b6001600160a01b03888116600081815260cd602090815260408083208c86168085529083528184209690965560c98054600190810191829055825160c0810184529586528584018881528684018e8152606088018e81526080890188815260a08a018f8152868a5260d38952878a209a518b546001600160a01b0319908116918e16919091178c5594518b870180549096169c169b909b17909355905160028901555160038801555160048701805460ff1916911515919091179055955160059095019490945560ca80548087019091557f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee10184905594825260cb8152938120805493840181558152929092200181905590508115610f5a57610f5a8187613c26565b866001600160a01b03166342842e0e610f71610858565b30866040518463ffffffff1660e01b8152600401610f9193929190614cf4565b600060405180830381600087803b158015610fab57600080fd5b505af1158015610fbf573d6000803e3d6000fd5b50505050856001600160a01b0316876001600160a01b03167f8ada5a61cb829cf6dd4a74752fd8a7524261a767c2c80ee9398343e2063ef1448386898960405161100c9493929190615a26565b60405180910390a360d8805460ff60a01b1916600160a01b1790559695505050505050565b60ce546001600160a01b031681565b611048610858565b6065546001600160a01b039081169116146110755760405162461bcd60e51b815260040161088290615370565b61107d613cf5565b565b611087610858565b6065546001600160a01b039081169116146110b45760405162461bcd60e51b815260040161088290615370565b60d8805460ff60a01b1916600160a01b179055565b600082815260d36020908152604080832060cc909252822081546001600160a01b0316156112c85760d8546001600160a01b0316611105610858565b6001600160a01b03161480156111295750600085815260d7602052604090205460ff165b156111435760018201546001600160a01b031692506111b9565b600085815260d7602052604090205460ff16156111725760405162461bcd60e51b81526004016108829061551e565b60018201546001600160a01b0316611188610858565b6001600160a01b0316146111ae5760405162461bcd60e51b8152600401610882906157e9565b6111b6610858565b92505b600482015460ff16156111de5760405162461bcd60e51b8152600401610882906156a8565b600282015482546001600160a01b03908116600090815260cd602090815260408083209388168352929052205461121a9163ffffffff613af016565b82546001600160a01b03908116600090815260cd602081815260408084208986168552825280842095909555600287015487548516845291815284832093891683529290925291909120546112749163ffffffff613cd016565b82546001600160a01b03908116600090815260cd60209081526040808320938916835292905220556112a68584613d61565b6001820180546001600160a01b0319166001600160a01b03861617905561149b565b60d8546001600160a01b03166112dc610858565b6001600160a01b03161480156113005750600085815260d7602052604090205460ff165b1561131a5760018101546001600160a01b03169250611390565b600085815260d7602052604090205460ff16156113495760405162461bcd60e51b8152600401610882906156d8565b60018101546001600160a01b031661135f610858565b6001600160a01b0316146113855760405162461bcd60e51b8152600401610882906157e9565b61138d610858565b92505b600481015460ff16156113b55760405162461bcd60e51b8152600401610882906150ea565b600281015481546001600160a01b03908116600090815260cd60209081526040808320938816835292905220546113f19163ffffffff613af016565b81546001600160a01b03908116600090815260cd6020818152604080842089861685528252808420959095556002860154865485168452918152848320938916835292909252919091205461144b9163ffffffff613cd016565b81546001600160a01b03908116600090815260cd602090815260408083209389168352929052205561147d8584613d61565b6001810180546001600160a01b0319166001600160a01b0386161790555b5050506001600160a01b0316600090815260cb602090815260408220805460018101825590835291200155565b60d66020526000908152604090205481565b60cb60205281600052604060002081815481106114f357fe5b90600052602060002001600091509150505481565b60975460ff1690565b606060ca80548060200260200160405190810160405280929190818152602001828054801561155f57602002820191906000526020600020905b81548152602001906001019080831161154b575b5050505050905090565b60d5546001600160a01b031681565b611580610858565b6065546001600160a01b039081169116146115ad5760405162461bcd60e51b815260040161088290615370565b836115c0816001600160a01b0316613e79565b6115dc5760405162461bcd60e51b815260040161088290615182565b836115ef816001600160a01b0316613e79565b61160b5760405162461bcd60e51b815260040161088290615182565b6001600160a01b0386166116315760405162461bcd60e51b81526004016108829061500e565b6001600160a01b0385166116575760405162461bcd60e51b815260040161088290615483565b600084116116775760405162461bcd60e51b815260040161088290614f1c565b6001600160a01b03831661169d5760405162461bcd60e51b8152600401610882906155b2565b60cf80546001600160a01b038089166001600160a01b03199283161790925560ce805488841690831617905560d086905560d180549286169290911691909117905560405184907f3dda580d2b9d92da338ef46ec718e7b1dd0a2c505e3df4aa8d40360192a0f82290600090a2505050505050565b61171a610858565b6065546001600160a01b039081169116146117475760405162461bcd60e51b815260040161088290615370565b6065546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3606580546001600160a01b0319169055565b4281116117b05760405162461bcd60e51b81526004016108829061521c565b600082815260d36020908152604080832060cc835281842060d790935292205460ff161561188f576117e0610858565b60d8546040516331a9108f60e11b81526001600160a01b039283169290911690636352211e906118149088906004016159e2565b60206040518083038186803b15801561182c57600080fd5b505afa158015611840573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611864919081019061484d565b6001600160a01b03161461188a5760405162461bcd60e51b815260040161088290615423565b6118f2565b60018201546001600160a01b03166118a5610858565b6001600160a01b031614806118d6575060018101546001600160a01b03166118cb610858565b6001600160a01b0316145b6118f25760405162461bcd60e51b815260040161088290615423565b81546001600160a01b03161561195657816003015483116119255760405162461bcd60e51b815260040161088290615619565b600482015460ff161561194a5760405162461bcd60e51b8152600401610882906156a8565b600382018390556119a6565b806003015483116119795760405162461bcd60e51b815260040161088290615746565b600481015460ff161561199e5760405162461bcd60e51b8152600401610882906150ea565b600381018390555b7f02fed7db9bfa24866201e4c0f859e50ba5b07531944ea38204ccde5cc1635d1e84846040516119d7929190615a02565b60405180910390a150505050565b60d8546001600160a01b031681565b61107d613eb5565b611a04610858565b6065546001600160a01b03908116911614611a315760405162461bcd60e51b815260040161088290615370565b61107d613f50565b600081815260d760205260408120548190819081908190819081908190819060ff16611a636147ae565b5060008b815260d36020908152604091829020825160c08101845281546001600160a01b0390811682526001830154169281019290925260028101549282019290925260038201546060820152600482015460ff161515608082015260059091015460a0820152611ad26147f8565b5060008c815260cc6020908152604091829020825160a08101845281546001600160a01b0390811682526001830154811693820193909352600282015493810193909352600381015460608401526004015460ff161515608083015282511615611b82575060008c815260d6602090815260409182902054835191840151928401516060850151608086015160a090960151939f50939d509b509199509197509095506001945092509050611bba565b8051602082015160408301516060840151608090940151929e50909c509a50909850965060009550859450849350909150611bba9050565b9193959799909294969850565b6065546001600160a01b031690565b60d3602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039485169594909316939192909160ff169086565b60c95481565b611c2a610858565b6065546001600160a01b03908116911614611c575760405162461bcd60e51b815260040161088290615370565b80611c6a816001600160a01b0316613e79565b611c865760405162461bcd60e51b815260040161088290615182565b6001600160a01b038216611cac5760405162461bcd60e51b815260040161088290614f81565b5060d880546001600160a01b0319166001600160a01b0392909216919091179055565b60d05481565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190611d04903090600401614ce0565b60206040518083038186803b158015611d1c57600080fd5b505afa158015611d30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611d549190810190614b82565b92915050565b60d4546001600160a01b031681565b60975460ff1615611d8c5760405162461bcd60e51b815260040161088290615249565b60d854600160a01b900460ff16611db55760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b1916905560d4546001600160a01b0316611dea5760405162461bcd60e51b8152600401610882906154f1565b60d5546001600160a01b0316611e125760405162461bcd60e51b815260040161088290615585565b611e1a6147f8565b50600085815260cc6020908152604091829020825160a08101845281546001600160a01b0390811682526001830154169281019290925260028101549282019290925260038201546060820181905260049092015460ff1615156080820152904210611e985760405162461bcd60e51b81526004016108829061570f565b80602001516001600160a01b0316611eae610858565b6001600160a01b031614611ed45760405162461bcd60e51b815260040161088290614faa565b806080015115611ef65760405162461bcd60e51b815260040161088290615273565b60d454604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b158015611f3b57600080fd5b505afa158015611f4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611f739190810190614b82565b905030316000611f896080890160608a01614831565b6001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401611fb49190614ce0565b60206040518083038186803b158015611fcc57600080fd5b505afa158015611fe0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506120049190810190614b82565b9050600061201860a08a0160808b01614831565b6001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016120439190614ce0565b60206040518083038186803b15801561205b57600080fd5b505afa15801561206f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506120939190810190614b82565b905087156121505760d5546001600160a01b03166313ead5626120bc60808c0160608d01614831565b6120cc60a08d0160808e01614831565b6120dc60c08e0160a08f01614b4e565b8b6040518563ffffffff1660e01b81526004016120fc9493929190614d31565b602060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061214e919081019061484d565b505b61215d60208a018a614831565b60d55460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926121949291169060208e013590600401614d18565b602060405180830381600087803b1580156121ae57600080fd5b505af11580156121c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506121e69190810190614b32565b5060d554604051636a2795f960e11b81526001600160a01b039091169063d44f2bf290612217908c906004016158bd565b600060405180830381600087803b15801561223157600080fd5b505af1158015612245573d6000803e3d6000fd5b5050505030318390036000612258610858565b6001600160a01b03168260405161226e90614cdd565b60006040518083038185875af1925050503d80600081146122ab576040519150601f19603f3d011682016040523d82523d6000602084013e6122b0565b606091505b50509050806122d15760405162461bcd60e51b815260040161088290614ef1565b60006122e360808d0160608e01614831565b6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161230e9190614ce0565b60206040518083038186803b15801561232657600080fd5b505afa15801561233a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061235e9190810190614b82565b905084810380156124085761237960808e0160608f01614831565b6001600160a01b031663a9059cbb61238f610858565b836040518363ffffffff1660e01b81526004016123ad929190614d18565b602060405180830381600087803b1580156123c757600080fd5b505af11580156123db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506123ff9190810190614b32565b61240857600080fd5b60008d608001602061241d9190810190614831565b6001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016124489190614ce0565b60206040518083038186803b15801561246057600080fd5b505afa158015612474573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506124989190810190614b82565b90508581038015612545578e60800160206124b69190810190614831565b6001600160a01b031663a9059cbb6124cc610858565b836040518363ffffffff1660e01b81526004016124ea929190614d18565b602060405180830381600087803b15801561250457600080fd5b505af1158015612518573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061253c9190810190614b32565b61254557600080fd5b50505050505050505061255787613fa9565b60d454604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561259c57600080fd5b505afa1580156125b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506125d49190810190614b82565b90506125e782600163ffffffff613cd016565b81146125f257600080fd5b600061260582600163ffffffff613af016565b60d454604051634f6ccce760e01b81529192506000916001600160a01b0390911690634f6ccce79061263b9085906004016159e2565b60206040518083038186803b15801561265357600080fd5b505afa158015612667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061268b9190810190614b82565b60c98054600101908190559091506126a48b8284614041565b600081815260d6602052604090208b905586156126fd5760d8546001600160a01b03166126e35760405162461bcd60e51b815260040161088290615346565b600081815260d760205260409020805460ff191660011790555b60008b815260d7602052604090205460ff161561278e5760008b815260d7602052604090819020805460ff1916905560d8549051630852cd8d60e31b81526001600160a01b03909116906342966c689061275b908e906004016159e2565b600060405180830381600087803b15801561277557600080fd5b505af1158015612789573d6000803e3d6000fd5b505050505b86156127fe5760d8546001600160a01b03166309e0dafc6127ad610858565b836040518363ffffffff1660e01b81526004016127cb929190614d18565b600060405180830381600087803b1580156127e557600080fd5b505af11580156127f9573d6000803e3d6000fd5b505050505b612806610858565b6001600160a01b03167fb158e3c7933ac8052b746137731ce3370d2a3bc5479dbda93f31fa5f130f5e468c838560405161284293929190615a10565b60405180910390a2505060d8805460ff60a01b1916600160a01b179055505050505050505050565b60cd60209081526000928352604080842090915290825290205481565b60d854600160a01b900460ff166128b05760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b19169055600082815260d7602052604090205460ff1615612986576128dc610858565b60d8546040516331a9108f60e11b81526001600160a01b039283169290911690636352211e906129109086906004016159e2565b60206040518083038186803b15801561292857600080fd5b505afa15801561293c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612960919081019061484d565b6001600160a01b0316146129865760405162461bcd60e51b815260040161088290615453565b61298e6147ae565b50600082815260d360209081526040808320815160c08101835281546001600160a01b0390811682526001830154811682860190815260028401548386015260038401546060840152600484015460ff161515608084015260059093015460a083015287865260cc90945291909320925190929116612a0b610858565b6001600160a01b03161480612a3c575060018101546001600160a01b0316612a31610858565b6001600160a01b0316145b612a585760405162461bcd60e51b815260040161088290615453565b81516001600160a01b031615612c1d578160600151421015612a8c5760405162461bcd60e51b81526004016108829061554e565b816080015115612aae5760405162461bcd60e51b8152600401610882906156a8565b612ab784614300565b600084815260d7602052604090205460ff1615612b4857600084815260d7602052604090819020805460ff1916905560d8549051630852cd8d60e31b81526001600160a01b03909116906342966c6890612b159087906004016159e2565b600060405180830381600087803b158015612b2f57600080fd5b505af1158015612b43573d6000803e3d6000fd5b505050505b81516001600160a01b03166342842e0e30612b61610858565b8560a001516040518463ffffffff1660e01b8152600401612b8493929190614cf4565b600060405180830381600087803b158015612b9e57600080fd5b505af1158015612bb2573d6000803e3d6000fd5b50505050612bbe610858565b6001600160a01b031682600001516001600160a01b03167fc62daab170a6f948b96ecf94bc8026d453d9fa56f720914202e677c726a5f1f6868560a001518660400151604051612c1093929190615a10565b60405180910390a3612ec0565b8060030154421015612c415760405162461bcd60e51b81526004016108829061554e565b600481015460ff1615612c665760405162461bcd60e51b8152600401610882906150ea565b60008311612c865760405162461bcd60e51b8152600401610882906155e2565b8281600201541015612caa5760405162461bcd60e51b81526004016108829061529e565b8281600201541415612d5557612cbf84613fa9565b600084815260d7602052604090205460ff1615612d5057600084815260d7602052604090819020805460ff1916905560d8549051630852cd8d60e31b81526001600160a01b03909116906342966c6890612d1d9087906004016159e2565b600060405180830381600087803b158015612d3757600080fd5b505af1158015612d4b573d6000803e3d6000fd5b505050505b612dda565b6002810154612d6a908463ffffffff613af016565b600282015580546001600160a01b03908116600090815260cd60209081526040808320600186015490941683529290522054612dac908463ffffffff613af016565b81546001600160a01b03908116600090815260cd602090815260408083206001870154909416835292905220555b80546001600160a01b031663a9059cbb612df2610858565b856040518363ffffffff1660e01b8152600401612e10929190614d18565b602060405180830381600087803b158015612e2a57600080fd5b505af1158015612e3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612e629190810190614b32565b612e6b57600080fd5b612e73610858565b81546040516001600160a01b0392831692909116907f0d4e822e698a3b7d8bbfd9c6134543f053190e9179c0b891e527344267c74e2c90612eb79088908890615a02565b60405180910390a35b505060d8805460ff60a01b1916600160a01b1790555050565b60cc60205260009081526040902080546001820154600283015460038401546004909401546001600160a01b03938416949390921692909160ff1685565b612f1f610858565b6065546001600160a01b03908116911614612f4c5760405162461bcd60e51b815260040161088290615370565b60008111612f6c5760405162461bcd60e51b815260040161088290614f1c565b60d081905560405181907f3dda580d2b9d92da338ef46ec718e7b1dd0a2c505e3df4aa8d40360192a0f82290600090a250565b60ca8181548110612fac57fe5b600091825260209091200154905081565b612fc5610858565b6065546001600160a01b03908116911614612ff25760405162461bcd60e51b815260040161088290615370565b80613005816001600160a01b0316613e79565b6130215760405162461bcd60e51b815260040161088290615182565b506001600160a01b0316600090815260d260205260409020805460ff19166001179055565b60975460009060ff161561306c5760405162461bcd60e51b815260040161088290615249565b60d854600160a01b900460ff166130955760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b19169055836130ac57600080fd5b4283116130cb5760405162461bcd60e51b81526004016108829061521c565b836130d58761396a565b6040516370a0823160e01b81526000906001600160a01b038916906370a0823190613104903090600401614ce0565b60206040518083038186803b15801561311c57600080fd5b505afa158015613130573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506131549190810190614b82565b9050613179613161610858565b6001600160a01b038a1690308963ffffffff6143a516565b6040516370a0823160e01b815281906001600160a01b038a16906370a08231906131a7903090600401614ce0565b60206040518083038186803b1580156131bf57600080fd5b505afa1580156131d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506131f79190810190614b82565b6001600160a01b03808b16600090815260cd60209081526040808320938d16835292905220549190039250613232908363ffffffff613cd016565b6001600160a01b03808a16600090815260cd60209081526040808320938c168352929052205561326488888488613b39565b92508315613276576132768388613c26565b866001600160a01b0316886001600160a01b03167feb65d0f36862bbd8763c5e2c983c9d753267d223eee35a224d8d0a9d7ef433a28585896040516132bd93929190615a10565b60405180910390a3505060d8805460ff60a01b1916600160a01b17905595945050505050565b6132eb610858565b6065546001600160a01b039081169116146133185760405162461bcd60e51b815260040161088290615370565b8061332b816001600160a01b0316613e79565b6133475760405162461bcd60e51b815260040161088290615182565b506001600160a01b0316600090815260d260205260409020805460ff19169055565b60cf546001600160a01b031681565b613380610858565b6065546001600160a01b039081169116146133ad5760405162461bcd60e51b815260040161088290615370565b806133c0816001600160a01b0316613e79565b6133dc5760405162461bcd60e51b815260040161088290615182565b6001600160a01b0382166134025760405162461bcd60e51b815260040161088290614f81565b5060d480546001600160a01b0319166001600160a01b0392909216919091179055565b60975460ff16156134485760405162461bcd60e51b815260040161088290615249565b60d8546001600160a01b03166134705760405162461bcd60e51b815260040161088290615346565b600081815260d7602052604090205460ff161561349f5760405162461bcd60e51b815260040161088290615121565b6134a76147ae565b50600081815260d36020908152604091829020825160c08101845281546001600160a01b0390811682526001830154169281019290925260028101549282019290925260038201546060820152600482015460ff161515608082015260059091015460a08201526135166147f8565b50600082815260cc6020908152604091829020825160a08101845281546001600160a01b039081168252600183015416928101929092526002810154928201929092526003820154606082015260049091015460ff161515608082015261357b610858565b6001600160a01b031682602001516001600160a01b031614806135ba57506135a1610858565b6001600160a01b031681602001516001600160a01b0316145b6135d65760405162461bcd60e51b8152600401610882906151f6565b81608001511580156135ea57508060800151155b6136065760405162461bcd60e51b815260040161088290615820565b61361783613612610858565b613c26565b505050565b613624610858565b6065546001600160a01b039081169116146136515760405162461bcd60e51b815260040161088290615370565b6001600160a01b0381166136775760405162461bcd60e51b815260040161088290615045565b6065546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b6136db610858565b6065546001600160a01b039081169116146137085760405162461bcd60e51b815260040161088290615370565b8061371b816001600160a01b0316613e79565b6137375760405162461bcd60e51b815260040161088290615182565b6001600160a01b03821661375d5760405162461bcd60e51b815260040161088290614f81565b5060d580546001600160a01b0319166001600160a01b0392909216919091179055565b600061378b82610d42565b8061379f575060cf546001600160a01b0316155b806137b3575060ce546001600160a01b0316155b806137be575060d054155b156137cb57506000610c07565b60ce546040805163313ce56760e01b815290516000926001600160a01b03169163313ce567916004808301926020929190829003018186803b15801561381057600080fd5b505afa158015613824573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506138489190810190614c7b565b60cf5460ce546040516350a2394560e01b815260ff93909316600a0a93506000926001600160a01b03928316926350a239459261388d928792909116906004016159eb565b60006040518083038186803b1580156138a557600080fd5b505afa1580156138b9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138e19190810190614a9a565b6000815181106138ed57fe5b6020026020010151905061392d6139206103e86139146003856143fd90919063ffffffff16565b9063ffffffff61443716565b829063ffffffff613af016565b9050600061394a836139148460d0546143fd90919063ffffffff16565b9350610c0792505050565b60d76020526000908152604090205460ff1681565b600061397582613780565b90508015613aec57348111600081613996576139913484613af0565b6139a0565b6139a08334613af0565b905081156139e45760006139bf8461391484606463ffffffff6143fd16565b905060058111156139e25760405162461bcd60e51b81526004016108829061578d565b505b60d1546000906001600160a01b0316836139fe5784613a00565b345b604051613a0c90614cdd565b60006040518083038185875af1925050503d8060008114613a49576040519150601f19603f3d011682016040523d82523d6000602084013e613a4e565b606091505b5050905080613a6f5760405162461bcd60e51b8152600401610882906151c9565b82158015613a7d5750600082115b15610caf576000613a8c610858565b6001600160a01b031683604051613aa290614cdd565b60006040518083038185875af1925050503d8060008114613adf576040519150601f19603f3d011682016040523d82523d6000602084013e613ae4565b606091505b505050505050505b5050565b6000613b3283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614479565b9392505050565b60c980546001908101918290556040805160a0810182526001600160a01b039788168152958716602080880182815288840197885260608901968752600060808a0181815287825260cc84528582209a518b546001600160a01b0319908116918e16919091178c5592518b880180549094169c169b909b17909155965160028901559451600388015596516004909601805460ff19169615159690961790955560ca80548083019091557f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee10182905594835260cb8252928220805494850181558252902090910181905590565b60d8546001600160a01b0316613c4e5760405162461bcd60e51b815260040161088290615346565b600082815260d7602052604090819020805460ff1916600117905560d854905163027836bf60e21b81526001600160a01b03909116906309e0dafc90613c9a9084908690600401614d18565b600060405180830381600087803b158015613cb457600080fd5b505af1158015613cc8573d6000803e3d6000fd5b505050505050565b600082820183811015613b325760405162461bcd60e51b8152600401610882906150b3565b60975460ff16613d175760405162461bcd60e51b815260040161088290614f53565b6097805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613d4a610858565b604051613d579190614ce0565b60405180910390a1565b6001600160a01b038116600090815260cb60205260408120545b80821015613e73576001600160a01b038316600090815260cb60205260409020805485919084908110613daa57fe5b90600052602060002001541415613e68576001600160a01b038316600090815260cb6020526040902080546000198301908110613de357fe5b906000526020600020015460cb6000856001600160a01b03166001600160a01b031681526020019081526020016000208381548110613e1e57fe5b60009182526020808320909101929092556001600160a01b038516815260cb90915260409020805480613e4d57fe5b60019003818190600052602060002001600090559055613e73565b600190910190613d7b565b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590613ead57508115155b949350505050565b600054610100900460ff1680613ece5750613ece6144a5565b80613edc575060005460ff16155b613ef85760405162461bcd60e51b8152600401610882906153a5565b600054610100900460ff16158015613f23576000805460ff1961ff0019909116610100171660011790555b613f2b6144ab565b613f3361452c565b613f3b614606565b8015613f4d576000805461ff00191690555b50565b60975460ff1615613f735760405162461bcd60e51b815260040161088290615249565b6097805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613d4a610858565b600081815260cc6020908152604080832060048101805460ff19166001908117909155600282015482546001600160a01b03908116875260cd86528487209284015416865293529220546140029163ffffffff613af016565b81546001600160a01b03908116600090815260cd60209081526040808320600187018054861685529252909120929092559054613aec91849116613d61565b6140496147f8565b60cc60008581526020019081526020016000206040518060a00160405290816000820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff16151515158152505090506040518060c0016040528060d460009054906101000a90046001600160a01b03166001600160a01b0316815260200182602001516001600160a01b0316815260200160018152602001826060015181526020016000151581526020018381525060d3600085815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550604082015181600201556060820151816003015560808201518160040160006101000a81548160ff02191690831515021790555060a08201518160050155905050614279600160cd600060d460009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001908152602001600020600084602001516001600160a01b03166001600160a01b0316815260200190815260200160002054613cd090919063ffffffff16565b60d4546001600160a01b03908116600090815260cd602090815260408083209582018051851684529582528083209490945560ca8054600181810183559184527f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee1018890559451909216815260cb8252918220805493840181558252902001919091555050565b600081815260d36020908152604080832060048101805460ff19166001908117909155600282015482546001600160a01b03908116875260cd86528487209284015416865293529220546143599163ffffffff613af016565b81546001600160a01b03908116600090815260cd60209081526040808320600180880154861685529083528184209590955586835260d3909152902090910154613aec91849116613d61565b613e73846323b872dd60e01b8585856040516024016143c693929190614cf4565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614692565b60008261440c57506000611d54565b8282028284828161441957fe5b0414613b325760405162461bcd60e51b8152600401610882906152d5565b6000613b3283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614777565b6000818484111561449d5760405162461bcd60e51b81526004016108829190614e7d565b505050900390565b303b1590565b600054610100900460ff16806144c457506144c46144a5565b806144d2575060005460ff16155b6144ee5760405162461bcd60e51b8152600401610882906153a5565b600054610100900460ff16158015613f3b576000805460ff1961ff0019909116610100171660011790558015613f4d576000805461ff001916905550565b600054610100900460ff168061454557506145456144a5565b80614553575060005460ff16155b61456f5760405162461bcd60e51b8152600401610882906153a5565b600054610100900460ff1615801561459a576000805460ff1961ff0019909116610100171660011790555b60006145a4610858565b606580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015613f4d576000805461ff001916905550565b600054610100900460ff168061461f575061461f6144a5565b8061462d575060005460ff16155b6146495760405162461bcd60e51b8152600401610882906153a5565b600054610100900460ff16158015614674576000805460ff1961ff0019909116610100171660011790555b6097805460ff191690558015613f4d576000805461ff001916905550565b6146a4826001600160a01b0316613e79565b6146c05760405162461bcd60e51b815260040161088290615886565b60006060836001600160a01b0316836040516146dc9190614cc1565b6000604051808303816000865af19150503d8060008114614719576040519150601f19603f3d011682016040523d82523d6000602084013e61471e565b606091505b5091509150816147405760405162461bcd60e51b81526004016108829061514d565b805115613e73578080602001905161475b9190810190614b32565b613e735760405162461bcd60e51b81526004016108829061565e565b600081836147985760405162461bcd60e51b81526004016108829190614e7d565b5060008385816147a457fe5b0495945050505050565b6040518060c0016040528060006001600160a01b0316815260200160006001600160a01b031681526020016000815260200160008152602001600015158152602001600081525090565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915290565b8035611d5481615afa565b600060208284031215614842578081fd5b8135613b3281615afa565b60006020828403121561485e578081fd5b8151613b3281615afa565b6000806040838503121561487b578081fd5b823561488681615afa565b9150602083013561489681615afa565b809150509250929050565b600080600080608085870312156148b6578182fd5b84356148c181615afa565b935060208501356148d181615afa565b92506040850135915060608501356148e881615afa565b939692955090935050565b60008060008060808587031215614908578384fd5b843561491381615afa565b935060208581013561492481615afa565b935060408601359250606086013567ffffffffffffffff80821115614947578384fd5b81880189601f820112614958578485fd5b8035925081831115614968578485fd5b61497a601f8401601f19168501615a41565b9150828252898484830101111561498f578485fd5b8284820185840137509081019091019190915292959194509250565b600080600080600060a086880312156149c2578081fd5b85356149cd81615afa565b945060208601356149dd81615afa565b9350604086013592506060860135915060808601356149fb81615b0f565b809150509295509295909350565b60008060008060008060c08789031215614a21578081fd5b8635614a2c81615afa565b95506020870135614a3c81615afa565b945060408701359350606087013592506080870135915060a0870135614a6181615b0f565b809150509295509295509295565b60008060408385031215614a81578182fd5b8235614a8c81615afa565b946020939093013593505050565b60006020808385031215614aac578182fd5b825167ffffffffffffffff811115614ac2578283fd5b80840185601f820112614ad3578384fd5b80519150614ae8614ae383615a68565b615a41565b8281528381019082850185850284018601891015614b04578687fd5b8693505b84841015614b26578051835260019390930192918501918501614b08565b50979650505050505050565b600060208284031215614b43578081fd5b8151613b3281615b0f565b600060208284031215614b5f578081fd5b8135613b3281615b1d565b600060208284031215614b7b578081fd5b5035919050565b600060208284031215614b93578081fd5b5051919050565b60008060408385031215614bac578182fd5b82359150602083013561489681615afa565b6000806000806000858703610220811215614bd7578384fd5b863595506101a0601f1982011215614bed578384fd5b506020860193506101c0860135614c0381615b0f565b92506101e0860135614c1481615afa565b91506102008601356149fb81615b0f565b60008060408385031215614c37578182fd5b50508035926020909101359150565b60008060008060808587031215614c5b578182fd5b84359350602085013592506040850135915060608501356148e881615b0f565b600060208284031215614c8c578081fd5b8151613b3281615b2e565b6001600160a01b03169052565b15159052565b60020b9052565b62ffffff169052565b60ff169052565b60008251614cd3818460208701615ace565b9190910192915050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039485168152928416602084015262ffffff919091166040830152909116606082015260800190565b6001600160a01b03958616815293909416602084015260408301919091526060820152901515608082015260a00190565b6001600160a01b039687168152949095166020850152604084019290925260608301521515608082015260a081019190915260c00190565b6001600160a01b03998a16815297909816602088015260408701959095526060860193909352901515608085015260a0840152151560c083015260e08201529015156101008201526101200190565b6020808252825182820181905260009190848201906040850190845b81811015614e5157835183529284019291840191600101614e35565b50909695505050505050565b901515815260200190565b6001600160e01b031991909116815260200190565b6000602082528251806020840152614e9c816040850160208701615ace565b601f01601f19169190910160400192915050565b60208082526021908201527f536d616c6c657220756e6c6f636b2074696d65207468616e206578697374696e6040820152606760f81b606082015260800190565b6020808252601190820152701499599d5b99081155120819985a5b1959607a1b604082015260600190565b6020808252601d908201527f666565732073686f756c642062652067726561746572207468616e2030000000604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b6020808252601390820152722ab730baba3437b934b9b2b21039b2b73232b960691b604082015260600190565b6020808252601b908201527f43616e6e6f742073706c69742077697468647261776e206c6f636b0000000000604082015260600190565b6020808252601f908201527f496e76616c696420707269636520657374696d61746f72206164647265737300604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526018908201527f45524332303a20616c72656164792077697468647261776e0000000000000000604082015260600190565b60208082526012908201527113919508185b1c9958591e481b5a5b9d195960721b604082015260600190565b6020808252818101527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604082015260600190565b60208082526027908201527f546865206164647265737320646f6573206e6f7420636f6e7461696e206120636040820152661bdb9d1c9858dd60ca1b606082015260800190565b602080825260139082015272119959481d1c985b9cd9995c8819985a5b1959606a1b604082015260600190565b6020808252600c908201526b155b985d5d1a1bdc9a5cd95960a21b604082015260600190565b602080825260139082015272496e76616c696420756e6c6f636b2074696d6560681b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526011908201527020b63932b0b23c903bb4ba34323930bbb760791b604082015260600190565b6020808252601f908201527f496e737566666963656e742042616c616e636520746f20776974686472617700604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526016908201527510d85b89dd081cdc1b1a5d081b1bd8dad9590813919560521b604082015260600190565b60208082526010908201526f1391950e88155b9a5b9d185b1a5e995960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526016908201527543616e27742073706c697420656d707479206c6f636b60501b604082015260600190565b602080825260169082015275155b985d5d1a1bdc9a5cd959081d1bc8195e1d195b9960521b604082015260600190565b602080825260169082015275556e617574686f726973656420746f20756e6c6f636b60501b604082015260600190565b60208082526019908201527f496e76616c69642055534420746f6b656e206164647265737300000000000000604082015260600190565b6020808252601d908201527f496e73756666696369656e742062616c616e636520746f2073706c6974000000604082015260600190565b602080825260139082015272139195081b585b9859d95c881b9bdd081cd95d606a1b604082015260600190565b6020808252601690820152751391950e88151c985b9cd9995c88131bd8dac813919560521b604082015260600190565b60208082526017908201527f556e6c6f636b2074696d65206e6f742072656163686564000000000000000000604082015260600190565b6020808252601390820152721d8cc81b5a59dc985d1bdc881b9bdd081cd95d606a1b604082015260600190565b602080825260169082015275496e76616c69642077616c6c6574206164647265737360501b604082015260600190565b6020808252601f908201527f45524332303a2043616e6e6f74205769746864726177203020546f6b656e7300604082015260600190565b60208082526025908201527f4e46543a20736d616c6c657220756e6c6f636b54696d65207468616e206578696040820152647374696e6760d81b606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60208082526016908201527527232a1d1030b63932b0b23c903bb4ba34323930bbb760511b604082015260600190565b60208082526018908201527f45524332303a205472616e73666572204c6f636b204e46540000000000000000604082015260600190565b6020808252601b908201527f556e6c6f636b2074696d6520616c726561647920726561636865640000000000604082015260600190565b60208082526027908201527f45524332303a20736d616c6c657220756e6c6f636b54696d65207468616e206560408201526678697374696e6760c81b606082015260800190565b6020808252600b908201526a11995948139bdd0813595d60aa1b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526018908201527f556e617574686f726973656420746f207472616e736665720000000000000000604082015260600190565b6020808252601b908201527f546f6b656e2f4e465420616c72656164792077697468647261776e0000000000604082015260600190565b602080825260159082015274155b985d5d1a1bdc9a5cd959081d1bc814dc1b1a5d605a1b604082015260600190565b6020808252601f908201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604082015260600190565b6101a08101602083016158d9836158d48387614826565b614c97565b3560208301526158ec6040840184615ac1565b6158f96040840182614cba565b506159076060840184615a88565b6159146060840182614c97565b506159226080840184615a88565b61592f6080840182614c97565b5061593d60a0840184615ab4565b61594a60a0840182614cb1565b5061595860c0840184615aa2565b61596560c0840182614caa565b5061597360e0840184615aa2565b61598060e0840182614caa565b50610100838101359083015261012080840135908301526101406159a681850185615a88565b6159b282850182614c97565b505061016083810135908301526101806159ce81850185615a95565b6159da82850182614ca4565b505092915050565b90815260200190565b9182526001600160a01b0316602082015260400190565b918252602082015260400190565b9283526020830191909152604082015260600190565b93845260208401929092526040830152606082015260800190565b60405181810167ffffffffffffffff81118282101715615a6057600080fd5b604052919050565b600067ffffffffffffffff821115615a7e578081fd5b5060209081020190565b60008235613b3281615afa565b60008235613b3281615b0f565b600082358060020b8114613b32578182fd5b60008235613b3281615b1d565b60008235613b3281615b2e565b60005b83811015615ae9578181015183820152602001615ad1565b83811115613e735750506000910152565b6001600160a01b0381168114613f4d57600080fd5b8015158114613f4d57600080fd5b62ffffff81168114613f4d57600080fd5b60ff81168114613f4d57600080fdfea2646970667358221220a875bfc3cb8e3e0b79f24cb2c8b555e4c5407231c2c191adc930cba9b096851864736f6c63430006020033

Deployed Bytecode

0x60806040526004361061028c5760003560e01c8063890db72f1161015a578063c8e6aa98116100c1578063e8555f051161007a578063e8555f0514610798578063ee66beef146107b8578063f2fde38b146107d8578063fd39e1e4146107f8578063feeb733d14610818578063ffd68f1514610838576102d3565b8063c8e6aa98146106f0578063c9028aff14610710578063cd7d9e9914610730578063d084c0a614610750578063d8ad1b2b14610763578063e3f1bc2b14610783576102d3565b8063adad19bd11610113578063adad19bd14610637578063b44a272214610657578063b86f3ea61461066c578063b9e7df1c1461067f578063ba7bd2aa1461069f578063bb941cff146106bf576102d3565b8063890db72f146105715780638da5cb5b146105a6578063945633c1146105bb5780639852099c146105ed578063a7ccabdf14610602578063aa182aef14610622576102d3565b80634c5f7f54116101fe5780636e8fa91d116101b75780636e8fa91d146104dd578063715018a6146104fd57806376704de0146105125780637c0b8de2146105325780638129fc1c146105475780638456cb591461055c576102d3565b80634c5f7f541461043e5780634d0925d31461045e578063530680d81461047e5780635c975abb1461049e5780636ba03924146104b35780636cbc1e9b146104c8576102d3565b80632883118711610250578063288311871461039f57806331bff521146103bf57806334a5504c146103ec5780633eac8dac146103ff5780633f4ba83a146104145780634c40c82214610429576102d3565b8063047bcc70146102d85780630bd59ad314610301578063150b7a021461032e578063190b4a9e1461035b5780631ec32d151461037d576102d3565b366102d3577f85177f287940f2f05425a4029951af0e047a7f9c4eaa9a6e6917bcd869f866956102ba610858565b346040516102c9929190614d18565b60405180910390a1005b600080fd5b6102eb6102e6366004614c46565b61085c565b6040516102f891906159e2565b60405180910390f35b34801561030d57600080fd5b5061032161031c366004614831565b610b9f565b6040516102f89190614e19565b34801561033a57600080fd5b5061034e6103493660046148f3565b610c0c565b6040516102f89190614e68565b34801561036757600080fd5b5061037b610376366004614831565b610c1c565b005b34801561038957600080fd5b50610392610cb6565b6040516102f89190614ce0565b3480156103ab57600080fd5b5061037b6103ba366004614831565b610cc5565b3480156103cb57600080fd5b506103df6103da366004614831565b610d42565b6040516102f89190614e5d565b6102eb6103fa366004614a09565b610d60565b34801561040b57600080fd5b50610392611031565b34801561042057600080fd5b5061037b611040565b34801561043557600080fd5b5061037b61107f565b34801561044a57600080fd5b5061037b610459366004614b9a565b6110c9565b34801561046a57600080fd5b506102eb610479366004614b6a565b6114c8565b34801561048a57600080fd5b506102eb610499366004614a6f565b6114da565b3480156104aa57600080fd5b506103df611508565b3480156104bf57600080fd5b50610321611511565b3480156104d457600080fd5b50610392611569565b3480156104e957600080fd5b5061037b6104f83660046148a1565b611578565b34801561050957600080fd5b5061037b611712565b34801561051e57600080fd5b5061037b61052d366004614c25565b611791565b34801561053e57600080fd5b506103926119e5565b34801561055357600080fd5b5061037b6119f4565b34801561056857600080fd5b5061037b6119fc565b34801561057d57600080fd5b5061059161058c366004614b6a565b611a39565b6040516102f899989796959493929190614dca565b3480156105b257600080fd5b50610392611bc7565b3480156105c757600080fd5b506105db6105d6366004614b6a565b611bd6565b6040516102f896959493929190614d92565b3480156105f957600080fd5b506102eb611c1c565b34801561060e57600080fd5b5061037b61061d366004614831565b611c22565b34801561062e57600080fd5b506102eb611ccf565b34801561064357600080fd5b506102eb610652366004614831565b611cd5565b34801561066357600080fd5b50610392611d5a565b61037b61067a366004614bbe565b611d69565b34801561068b57600080fd5b506102eb61069a366004614869565b61286a565b3480156106ab57600080fd5b5061037b6106ba366004614c25565b612887565b3480156106cb57600080fd5b506106df6106da366004614b6a565b612ed9565b6040516102f8959493929190614d61565b3480156106fc57600080fd5b5061037b61070b366004614b6a565b612f17565b34801561071c57600080fd5b506102eb61072b366004614b6a565b612f9f565b34801561073c57600080fd5b5061037b61074b366004614831565b612fbd565b6102eb61075e3660046149ab565b613046565b34801561076f57600080fd5b5061037b61077e366004614831565b6132e3565b34801561078f57600080fd5b50610392613369565b3480156107a457600080fd5b5061037b6107b3366004614831565b613378565b3480156107c457600080fd5b5061037b6107d3366004614b6a565b613425565b3480156107e457600080fd5b5061037b6107f3366004614831565b61361c565b34801561080457600080fd5b5061037b610813366004614831565b6136d3565b34801561082457600080fd5b506102eb610833366004614831565b613780565b34801561084457600080fd5b506103df610853366004614b6a565b613955565b3390565b60975460009060ff161561088b5760405162461bcd60e51b815260040161088290615249565b60405180910390fd5b60d854600160a01b900460ff166108b45760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b19169055600085815260cc6020908152604080832060d3909252909120546001600160a01b031680156109025760405162461bcd60e51b815260040161088290615316565b600087815260cc602052604090206002810154815460019092015490916001600160a01b039081169116816109495760405162461bcd60e51b8152600401610882906153f3565b60008a815260d7602052604090205460ff1615610a1257610968610858565b60d8546040516331a9108f60e11b81526001600160a01b039283169290911690636352211e9061099c908e906004016159e2565b60206040518083038186803b1580156109b457600080fd5b505afa1580156109c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506109ec919081019061484d565b6001600160a01b031614610a125760405162461bcd60e51b815260040161088290615857565b806001600160a01b0316610a24610858565b6001600160a01b031614610a4a5760405162461bcd60e51b815260040161088290615857565b600485015460ff1615610a6f5760405162461bcd60e51b815260040161088290614fd7565b888311610a8e5760405162461bcd60e51b8152600401610882906154ba565b8460030154881015610ab25760405162461bcd60e51b815260040161088290614eb0565b610abb8261396a565b610acb838a63ffffffff613af016565b6002860155610adc82828b8b613b39565b95508615610aee57610aee8682613c26565b7f688938ab392c7ce16481d86b060cddded03a276517f9da7dd5862bd1305d987c8a8660020154888c604051610b279493929190615a26565b60405180910390a1806001600160a01b0316826001600160a01b03167feb65d0f36862bbd8763c5e2c983c9d753267d223eee35a224d8d0a9d7ef433a2888c8c604051610b7693929190615a10565b60405180910390a3505060d8805460ff60a01b1916600160a01b17905550919695505050505050565b6001600160a01b038116600090815260cb6020908152604091829020805483518184028101840190945280845260609392830182828015610bff57602002820191906000526020600020905b815481526020019060010190808311610beb575b505050505090505b919050565b630a85bd0160e11b949350505050565b610c24610858565b6065546001600160a01b03908116911614610c515760405162461bcd60e51b815260040161088290615370565b60d85460405163f2fde38b60e01b81526001600160a01b039091169063f2fde38b90610c81908490600401614ce0565b600060405180830381600087803b158015610c9b57600080fd5b505af1158015610caf573d6000803e3d6000fd5b5050505050565b60d1546001600160a01b031681565b610ccd610858565b6065546001600160a01b03908116911614610cfa5760405162461bcd60e51b815260040161088290615370565b6001600160a01b038116610d205760405162461bcd60e51b8152600401610882906155b2565b60d180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0316600090815260d2602052604090205460ff1690565b60975460009060ff1615610d865760405162461bcd60e51b815260040161088290615249565b60d854600160a01b900460ff16610daf5760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b1916905584610dd95760405162461bcd60e51b81526004016108829061508b565b428411610df85760405162461bcd60e51b81526004016108829061521c565b610e018761396a565b6001600160a01b03808816600090815260cd60209081526040808320938a1683529290522054610e37908663ffffffff613cd016565b6001600160a01b03888116600081815260cd602090815260408083208c86168085529083528184209690965560c98054600190810191829055825160c0810184529586528584018881528684018e8152606088018e81526080890188815260a08a018f8152868a5260d38952878a209a518b546001600160a01b0319908116918e16919091178c5594518b870180549096169c169b909b17909355905160028901555160038801555160048701805460ff1916911515919091179055955160059095019490945560ca80548087019091557f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee10184905594825260cb8152938120805493840181558152929092200181905590508115610f5a57610f5a8187613c26565b866001600160a01b03166342842e0e610f71610858565b30866040518463ffffffff1660e01b8152600401610f9193929190614cf4565b600060405180830381600087803b158015610fab57600080fd5b505af1158015610fbf573d6000803e3d6000fd5b50505050856001600160a01b0316876001600160a01b03167f8ada5a61cb829cf6dd4a74752fd8a7524261a767c2c80ee9398343e2063ef1448386898960405161100c9493929190615a26565b60405180910390a360d8805460ff60a01b1916600160a01b1790559695505050505050565b60ce546001600160a01b031681565b611048610858565b6065546001600160a01b039081169116146110755760405162461bcd60e51b815260040161088290615370565b61107d613cf5565b565b611087610858565b6065546001600160a01b039081169116146110b45760405162461bcd60e51b815260040161088290615370565b60d8805460ff60a01b1916600160a01b179055565b600082815260d36020908152604080832060cc909252822081546001600160a01b0316156112c85760d8546001600160a01b0316611105610858565b6001600160a01b03161480156111295750600085815260d7602052604090205460ff165b156111435760018201546001600160a01b031692506111b9565b600085815260d7602052604090205460ff16156111725760405162461bcd60e51b81526004016108829061551e565b60018201546001600160a01b0316611188610858565b6001600160a01b0316146111ae5760405162461bcd60e51b8152600401610882906157e9565b6111b6610858565b92505b600482015460ff16156111de5760405162461bcd60e51b8152600401610882906156a8565b600282015482546001600160a01b03908116600090815260cd602090815260408083209388168352929052205461121a9163ffffffff613af016565b82546001600160a01b03908116600090815260cd602081815260408084208986168552825280842095909555600287015487548516845291815284832093891683529290925291909120546112749163ffffffff613cd016565b82546001600160a01b03908116600090815260cd60209081526040808320938916835292905220556112a68584613d61565b6001820180546001600160a01b0319166001600160a01b03861617905561149b565b60d8546001600160a01b03166112dc610858565b6001600160a01b03161480156113005750600085815260d7602052604090205460ff165b1561131a5760018101546001600160a01b03169250611390565b600085815260d7602052604090205460ff16156113495760405162461bcd60e51b8152600401610882906156d8565b60018101546001600160a01b031661135f610858565b6001600160a01b0316146113855760405162461bcd60e51b8152600401610882906157e9565b61138d610858565b92505b600481015460ff16156113b55760405162461bcd60e51b8152600401610882906150ea565b600281015481546001600160a01b03908116600090815260cd60209081526040808320938816835292905220546113f19163ffffffff613af016565b81546001600160a01b03908116600090815260cd6020818152604080842089861685528252808420959095556002860154865485168452918152848320938916835292909252919091205461144b9163ffffffff613cd016565b81546001600160a01b03908116600090815260cd602090815260408083209389168352929052205561147d8584613d61565b6001810180546001600160a01b0319166001600160a01b0386161790555b5050506001600160a01b0316600090815260cb602090815260408220805460018101825590835291200155565b60d66020526000908152604090205481565b60cb60205281600052604060002081815481106114f357fe5b90600052602060002001600091509150505481565b60975460ff1690565b606060ca80548060200260200160405190810160405280929190818152602001828054801561155f57602002820191906000526020600020905b81548152602001906001019080831161154b575b5050505050905090565b60d5546001600160a01b031681565b611580610858565b6065546001600160a01b039081169116146115ad5760405162461bcd60e51b815260040161088290615370565b836115c0816001600160a01b0316613e79565b6115dc5760405162461bcd60e51b815260040161088290615182565b836115ef816001600160a01b0316613e79565b61160b5760405162461bcd60e51b815260040161088290615182565b6001600160a01b0386166116315760405162461bcd60e51b81526004016108829061500e565b6001600160a01b0385166116575760405162461bcd60e51b815260040161088290615483565b600084116116775760405162461bcd60e51b815260040161088290614f1c565b6001600160a01b03831661169d5760405162461bcd60e51b8152600401610882906155b2565b60cf80546001600160a01b038089166001600160a01b03199283161790925560ce805488841690831617905560d086905560d180549286169290911691909117905560405184907f3dda580d2b9d92da338ef46ec718e7b1dd0a2c505e3df4aa8d40360192a0f82290600090a2505050505050565b61171a610858565b6065546001600160a01b039081169116146117475760405162461bcd60e51b815260040161088290615370565b6065546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3606580546001600160a01b0319169055565b4281116117b05760405162461bcd60e51b81526004016108829061521c565b600082815260d36020908152604080832060cc835281842060d790935292205460ff161561188f576117e0610858565b60d8546040516331a9108f60e11b81526001600160a01b039283169290911690636352211e906118149088906004016159e2565b60206040518083038186803b15801561182c57600080fd5b505afa158015611840573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611864919081019061484d565b6001600160a01b03161461188a5760405162461bcd60e51b815260040161088290615423565b6118f2565b60018201546001600160a01b03166118a5610858565b6001600160a01b031614806118d6575060018101546001600160a01b03166118cb610858565b6001600160a01b0316145b6118f25760405162461bcd60e51b815260040161088290615423565b81546001600160a01b03161561195657816003015483116119255760405162461bcd60e51b815260040161088290615619565b600482015460ff161561194a5760405162461bcd60e51b8152600401610882906156a8565b600382018390556119a6565b806003015483116119795760405162461bcd60e51b815260040161088290615746565b600481015460ff161561199e5760405162461bcd60e51b8152600401610882906150ea565b600381018390555b7f02fed7db9bfa24866201e4c0f859e50ba5b07531944ea38204ccde5cc1635d1e84846040516119d7929190615a02565b60405180910390a150505050565b60d8546001600160a01b031681565b61107d613eb5565b611a04610858565b6065546001600160a01b03908116911614611a315760405162461bcd60e51b815260040161088290615370565b61107d613f50565b600081815260d760205260408120548190819081908190819081908190819060ff16611a636147ae565b5060008b815260d36020908152604091829020825160c08101845281546001600160a01b0390811682526001830154169281019290925260028101549282019290925260038201546060820152600482015460ff161515608082015260059091015460a0820152611ad26147f8565b5060008c815260cc6020908152604091829020825160a08101845281546001600160a01b0390811682526001830154811693820193909352600282015493810193909352600381015460608401526004015460ff161515608083015282511615611b82575060008c815260d6602090815260409182902054835191840151928401516060850151608086015160a090960151939f50939d509b509199509197509095506001945092509050611bba565b8051602082015160408301516060840151608090940151929e50909c509a50909850965060009550859450849350909150611bba9050565b9193959799909294969850565b6065546001600160a01b031690565b60d3602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039485169594909316939192909160ff169086565b60c95481565b611c2a610858565b6065546001600160a01b03908116911614611c575760405162461bcd60e51b815260040161088290615370565b80611c6a816001600160a01b0316613e79565b611c865760405162461bcd60e51b815260040161088290615182565b6001600160a01b038216611cac5760405162461bcd60e51b815260040161088290614f81565b5060d880546001600160a01b0319166001600160a01b0392909216919091179055565b60d05481565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190611d04903090600401614ce0565b60206040518083038186803b158015611d1c57600080fd5b505afa158015611d30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611d549190810190614b82565b92915050565b60d4546001600160a01b031681565b60975460ff1615611d8c5760405162461bcd60e51b815260040161088290615249565b60d854600160a01b900460ff16611db55760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b1916905560d4546001600160a01b0316611dea5760405162461bcd60e51b8152600401610882906154f1565b60d5546001600160a01b0316611e125760405162461bcd60e51b815260040161088290615585565b611e1a6147f8565b50600085815260cc6020908152604091829020825160a08101845281546001600160a01b0390811682526001830154169281019290925260028101549282019290925260038201546060820181905260049092015460ff1615156080820152904210611e985760405162461bcd60e51b81526004016108829061570f565b80602001516001600160a01b0316611eae610858565b6001600160a01b031614611ed45760405162461bcd60e51b815260040161088290614faa565b806080015115611ef65760405162461bcd60e51b815260040161088290615273565b60d454604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b158015611f3b57600080fd5b505afa158015611f4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611f739190810190614b82565b905030316000611f896080890160608a01614831565b6001600160a01b03166370a08231306040518263ffffffff1660e01b8152600401611fb49190614ce0565b60206040518083038186803b158015611fcc57600080fd5b505afa158015611fe0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506120049190810190614b82565b9050600061201860a08a0160808b01614831565b6001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016120439190614ce0565b60206040518083038186803b15801561205b57600080fd5b505afa15801561206f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506120939190810190614b82565b905087156121505760d5546001600160a01b03166313ead5626120bc60808c0160608d01614831565b6120cc60a08d0160808e01614831565b6120dc60c08e0160a08f01614b4e565b8b6040518563ffffffff1660e01b81526004016120fc9493929190614d31565b602060405180830381600087803b15801561211657600080fd5b505af115801561212a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061214e919081019061484d565b505b61215d60208a018a614831565b60d55460405163095ea7b360e01b81526001600160a01b039283169263095ea7b3926121949291169060208e013590600401614d18565b602060405180830381600087803b1580156121ae57600080fd5b505af11580156121c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506121e69190810190614b32565b5060d554604051636a2795f960e11b81526001600160a01b039091169063d44f2bf290612217908c906004016158bd565b600060405180830381600087803b15801561223157600080fd5b505af1158015612245573d6000803e3d6000fd5b5050505030318390036000612258610858565b6001600160a01b03168260405161226e90614cdd565b60006040518083038185875af1925050503d80600081146122ab576040519150601f19603f3d011682016040523d82523d6000602084013e6122b0565b606091505b50509050806122d15760405162461bcd60e51b815260040161088290614ef1565b60006122e360808d0160608e01614831565b6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161230e9190614ce0565b60206040518083038186803b15801561232657600080fd5b505afa15801561233a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061235e9190810190614b82565b905084810380156124085761237960808e0160608f01614831565b6001600160a01b031663a9059cbb61238f610858565b836040518363ffffffff1660e01b81526004016123ad929190614d18565b602060405180830381600087803b1580156123c757600080fd5b505af11580156123db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506123ff9190810190614b32565b61240857600080fd5b60008d608001602061241d9190810190614831565b6001600160a01b03166370a08231306040518263ffffffff1660e01b81526004016124489190614ce0565b60206040518083038186803b15801561246057600080fd5b505afa158015612474573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506124989190810190614b82565b90508581038015612545578e60800160206124b69190810190614831565b6001600160a01b031663a9059cbb6124cc610858565b836040518363ffffffff1660e01b81526004016124ea929190614d18565b602060405180830381600087803b15801561250457600080fd5b505af1158015612518573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061253c9190810190614b32565b61254557600080fd5b50505050505050505061255787613fa9565b60d454604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561259c57600080fd5b505afa1580156125b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506125d49190810190614b82565b90506125e782600163ffffffff613cd016565b81146125f257600080fd5b600061260582600163ffffffff613af016565b60d454604051634f6ccce760e01b81529192506000916001600160a01b0390911690634f6ccce79061263b9085906004016159e2565b60206040518083038186803b15801561265357600080fd5b505afa158015612667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061268b9190810190614b82565b60c98054600101908190559091506126a48b8284614041565b600081815260d6602052604090208b905586156126fd5760d8546001600160a01b03166126e35760405162461bcd60e51b815260040161088290615346565b600081815260d760205260409020805460ff191660011790555b60008b815260d7602052604090205460ff161561278e5760008b815260d7602052604090819020805460ff1916905560d8549051630852cd8d60e31b81526001600160a01b03909116906342966c689061275b908e906004016159e2565b600060405180830381600087803b15801561277557600080fd5b505af1158015612789573d6000803e3d6000fd5b505050505b86156127fe5760d8546001600160a01b03166309e0dafc6127ad610858565b836040518363ffffffff1660e01b81526004016127cb929190614d18565b600060405180830381600087803b1580156127e557600080fd5b505af11580156127f9573d6000803e3d6000fd5b505050505b612806610858565b6001600160a01b03167fb158e3c7933ac8052b746137731ce3370d2a3bc5479dbda93f31fa5f130f5e468c838560405161284293929190615a10565b60405180910390a2505060d8805460ff60a01b1916600160a01b179055505050505050505050565b60cd60209081526000928352604080842090915290825290205481565b60d854600160a01b900460ff166128b05760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b19169055600082815260d7602052604090205460ff1615612986576128dc610858565b60d8546040516331a9108f60e11b81526001600160a01b039283169290911690636352211e906129109086906004016159e2565b60206040518083038186803b15801561292857600080fd5b505afa15801561293c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612960919081019061484d565b6001600160a01b0316146129865760405162461bcd60e51b815260040161088290615453565b61298e6147ae565b50600082815260d360209081526040808320815160c08101835281546001600160a01b0390811682526001830154811682860190815260028401548386015260038401546060840152600484015460ff161515608084015260059093015460a083015287865260cc90945291909320925190929116612a0b610858565b6001600160a01b03161480612a3c575060018101546001600160a01b0316612a31610858565b6001600160a01b0316145b612a585760405162461bcd60e51b815260040161088290615453565b81516001600160a01b031615612c1d578160600151421015612a8c5760405162461bcd60e51b81526004016108829061554e565b816080015115612aae5760405162461bcd60e51b8152600401610882906156a8565b612ab784614300565b600084815260d7602052604090205460ff1615612b4857600084815260d7602052604090819020805460ff1916905560d8549051630852cd8d60e31b81526001600160a01b03909116906342966c6890612b159087906004016159e2565b600060405180830381600087803b158015612b2f57600080fd5b505af1158015612b43573d6000803e3d6000fd5b505050505b81516001600160a01b03166342842e0e30612b61610858565b8560a001516040518463ffffffff1660e01b8152600401612b8493929190614cf4565b600060405180830381600087803b158015612b9e57600080fd5b505af1158015612bb2573d6000803e3d6000fd5b50505050612bbe610858565b6001600160a01b031682600001516001600160a01b03167fc62daab170a6f948b96ecf94bc8026d453d9fa56f720914202e677c726a5f1f6868560a001518660400151604051612c1093929190615a10565b60405180910390a3612ec0565b8060030154421015612c415760405162461bcd60e51b81526004016108829061554e565b600481015460ff1615612c665760405162461bcd60e51b8152600401610882906150ea565b60008311612c865760405162461bcd60e51b8152600401610882906155e2565b8281600201541015612caa5760405162461bcd60e51b81526004016108829061529e565b8281600201541415612d5557612cbf84613fa9565b600084815260d7602052604090205460ff1615612d5057600084815260d7602052604090819020805460ff1916905560d8549051630852cd8d60e31b81526001600160a01b03909116906342966c6890612d1d9087906004016159e2565b600060405180830381600087803b158015612d3757600080fd5b505af1158015612d4b573d6000803e3d6000fd5b505050505b612dda565b6002810154612d6a908463ffffffff613af016565b600282015580546001600160a01b03908116600090815260cd60209081526040808320600186015490941683529290522054612dac908463ffffffff613af016565b81546001600160a01b03908116600090815260cd602090815260408083206001870154909416835292905220555b80546001600160a01b031663a9059cbb612df2610858565b856040518363ffffffff1660e01b8152600401612e10929190614d18565b602060405180830381600087803b158015612e2a57600080fd5b505af1158015612e3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612e629190810190614b32565b612e6b57600080fd5b612e73610858565b81546040516001600160a01b0392831692909116907f0d4e822e698a3b7d8bbfd9c6134543f053190e9179c0b891e527344267c74e2c90612eb79088908890615a02565b60405180910390a35b505060d8805460ff60a01b1916600160a01b1790555050565b60cc60205260009081526040902080546001820154600283015460038401546004909401546001600160a01b03938416949390921692909160ff1685565b612f1f610858565b6065546001600160a01b03908116911614612f4c5760405162461bcd60e51b815260040161088290615370565b60008111612f6c5760405162461bcd60e51b815260040161088290614f1c565b60d081905560405181907f3dda580d2b9d92da338ef46ec718e7b1dd0a2c505e3df4aa8d40360192a0f82290600090a250565b60ca8181548110612fac57fe5b600091825260209091200154905081565b612fc5610858565b6065546001600160a01b03908116911614612ff25760405162461bcd60e51b815260040161088290615370565b80613005816001600160a01b0316613e79565b6130215760405162461bcd60e51b815260040161088290615182565b506001600160a01b0316600090815260d260205260409020805460ff19166001179055565b60975460009060ff161561306c5760405162461bcd60e51b815260040161088290615249565b60d854600160a01b900460ff166130955760405162461bcd60e51b8152600401610882906157b2565b60d8805460ff60a01b19169055836130ac57600080fd5b4283116130cb5760405162461bcd60e51b81526004016108829061521c565b836130d58761396a565b6040516370a0823160e01b81526000906001600160a01b038916906370a0823190613104903090600401614ce0565b60206040518083038186803b15801561311c57600080fd5b505afa158015613130573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506131549190810190614b82565b9050613179613161610858565b6001600160a01b038a1690308963ffffffff6143a516565b6040516370a0823160e01b815281906001600160a01b038a16906370a08231906131a7903090600401614ce0565b60206040518083038186803b1580156131bf57600080fd5b505afa1580156131d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506131f79190810190614b82565b6001600160a01b03808b16600090815260cd60209081526040808320938d16835292905220549190039250613232908363ffffffff613cd016565b6001600160a01b03808a16600090815260cd60209081526040808320938c168352929052205561326488888488613b39565b92508315613276576132768388613c26565b866001600160a01b0316886001600160a01b03167feb65d0f36862bbd8763c5e2c983c9d753267d223eee35a224d8d0a9d7ef433a28585896040516132bd93929190615a10565b60405180910390a3505060d8805460ff60a01b1916600160a01b17905595945050505050565b6132eb610858565b6065546001600160a01b039081169116146133185760405162461bcd60e51b815260040161088290615370565b8061332b816001600160a01b0316613e79565b6133475760405162461bcd60e51b815260040161088290615182565b506001600160a01b0316600090815260d260205260409020805460ff19169055565b60cf546001600160a01b031681565b613380610858565b6065546001600160a01b039081169116146133ad5760405162461bcd60e51b815260040161088290615370565b806133c0816001600160a01b0316613e79565b6133dc5760405162461bcd60e51b815260040161088290615182565b6001600160a01b0382166134025760405162461bcd60e51b815260040161088290614f81565b5060d480546001600160a01b0319166001600160a01b0392909216919091179055565b60975460ff16156134485760405162461bcd60e51b815260040161088290615249565b60d8546001600160a01b03166134705760405162461bcd60e51b815260040161088290615346565b600081815260d7602052604090205460ff161561349f5760405162461bcd60e51b815260040161088290615121565b6134a76147ae565b50600081815260d36020908152604091829020825160c08101845281546001600160a01b0390811682526001830154169281019290925260028101549282019290925260038201546060820152600482015460ff161515608082015260059091015460a08201526135166147f8565b50600082815260cc6020908152604091829020825160a08101845281546001600160a01b039081168252600183015416928101929092526002810154928201929092526003820154606082015260049091015460ff161515608082015261357b610858565b6001600160a01b031682602001516001600160a01b031614806135ba57506135a1610858565b6001600160a01b031681602001516001600160a01b0316145b6135d65760405162461bcd60e51b8152600401610882906151f6565b81608001511580156135ea57508060800151155b6136065760405162461bcd60e51b815260040161088290615820565b61361783613612610858565b613c26565b505050565b613624610858565b6065546001600160a01b039081169116146136515760405162461bcd60e51b815260040161088290615370565b6001600160a01b0381166136775760405162461bcd60e51b815260040161088290615045565b6065546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b6136db610858565b6065546001600160a01b039081169116146137085760405162461bcd60e51b815260040161088290615370565b8061371b816001600160a01b0316613e79565b6137375760405162461bcd60e51b815260040161088290615182565b6001600160a01b03821661375d5760405162461bcd60e51b815260040161088290614f81565b5060d580546001600160a01b0319166001600160a01b0392909216919091179055565b600061378b82610d42565b8061379f575060cf546001600160a01b0316155b806137b3575060ce546001600160a01b0316155b806137be575060d054155b156137cb57506000610c07565b60ce546040805163313ce56760e01b815290516000926001600160a01b03169163313ce567916004808301926020929190829003018186803b15801561381057600080fd5b505afa158015613824573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506138489190810190614c7b565b60cf5460ce546040516350a2394560e01b815260ff93909316600a0a93506000926001600160a01b03928316926350a239459261388d928792909116906004016159eb565b60006040518083038186803b1580156138a557600080fd5b505afa1580156138b9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526138e19190810190614a9a565b6000815181106138ed57fe5b6020026020010151905061392d6139206103e86139146003856143fd90919063ffffffff16565b9063ffffffff61443716565b829063ffffffff613af016565b9050600061394a836139148460d0546143fd90919063ffffffff16565b9350610c0792505050565b60d76020526000908152604090205460ff1681565b600061397582613780565b90508015613aec57348111600081613996576139913484613af0565b6139a0565b6139a08334613af0565b905081156139e45760006139bf8461391484606463ffffffff6143fd16565b905060058111156139e25760405162461bcd60e51b81526004016108829061578d565b505b60d1546000906001600160a01b0316836139fe5784613a00565b345b604051613a0c90614cdd565b60006040518083038185875af1925050503d8060008114613a49576040519150601f19603f3d011682016040523d82523d6000602084013e613a4e565b606091505b5050905080613a6f5760405162461bcd60e51b8152600401610882906151c9565b82158015613a7d5750600082115b15610caf576000613a8c610858565b6001600160a01b031683604051613aa290614cdd565b60006040518083038185875af1925050503d8060008114613adf576040519150601f19603f3d011682016040523d82523d6000602084013e613ae4565b606091505b505050505050505b5050565b6000613b3283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250614479565b9392505050565b60c980546001908101918290556040805160a0810182526001600160a01b039788168152958716602080880182815288840197885260608901968752600060808a0181815287825260cc84528582209a518b546001600160a01b0319908116918e16919091178c5592518b880180549094169c169b909b17909155965160028901559451600388015596516004909601805460ff19169615159690961790955560ca80548083019091557f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee10182905594835260cb8252928220805494850181558252902090910181905590565b60d8546001600160a01b0316613c4e5760405162461bcd60e51b815260040161088290615346565b600082815260d7602052604090819020805460ff1916600117905560d854905163027836bf60e21b81526001600160a01b03909116906309e0dafc90613c9a9084908690600401614d18565b600060405180830381600087803b158015613cb457600080fd5b505af1158015613cc8573d6000803e3d6000fd5b505050505050565b600082820183811015613b325760405162461bcd60e51b8152600401610882906150b3565b60975460ff16613d175760405162461bcd60e51b815260040161088290614f53565b6097805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613d4a610858565b604051613d579190614ce0565b60405180910390a1565b6001600160a01b038116600090815260cb60205260408120545b80821015613e73576001600160a01b038316600090815260cb60205260409020805485919084908110613daa57fe5b90600052602060002001541415613e68576001600160a01b038316600090815260cb6020526040902080546000198301908110613de357fe5b906000526020600020015460cb6000856001600160a01b03166001600160a01b031681526020019081526020016000208381548110613e1e57fe5b60009182526020808320909101929092556001600160a01b038516815260cb90915260409020805480613e4d57fe5b60019003818190600052602060002001600090559055613e73565b600190910190613d7b565b50505050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590613ead57508115155b949350505050565b600054610100900460ff1680613ece5750613ece6144a5565b80613edc575060005460ff16155b613ef85760405162461bcd60e51b8152600401610882906153a5565b600054610100900460ff16158015613f23576000805460ff1961ff0019909116610100171660011790555b613f2b6144ab565b613f3361452c565b613f3b614606565b8015613f4d576000805461ff00191690555b50565b60975460ff1615613f735760405162461bcd60e51b815260040161088290615249565b6097805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613d4a610858565b600081815260cc6020908152604080832060048101805460ff19166001908117909155600282015482546001600160a01b03908116875260cd86528487209284015416865293529220546140029163ffffffff613af016565b81546001600160a01b03908116600090815260cd60209081526040808320600187018054861685529252909120929092559054613aec91849116613d61565b6140496147f8565b60cc60008581526020019081526020016000206040518060a00160405290816000820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b0316815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff16151515158152505090506040518060c0016040528060d460009054906101000a90046001600160a01b03166001600160a01b0316815260200182602001516001600160a01b0316815260200160018152602001826060015181526020016000151581526020018381525060d3600085815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160010160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550604082015181600201556060820151816003015560808201518160040160006101000a81548160ff02191690831515021790555060a08201518160050155905050614279600160cd600060d460009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001908152602001600020600084602001516001600160a01b03166001600160a01b0316815260200190815260200160002054613cd090919063ffffffff16565b60d4546001600160a01b03908116600090815260cd602090815260408083209582018051851684529582528083209490945560ca8054600181810183559184527f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee1018890559451909216815260cb8252918220805493840181558252902001919091555050565b600081815260d36020908152604080832060048101805460ff19166001908117909155600282015482546001600160a01b03908116875260cd86528487209284015416865293529220546143599163ffffffff613af016565b81546001600160a01b03908116600090815260cd60209081526040808320600180880154861685529083528184209590955586835260d3909152902090910154613aec91849116613d61565b613e73846323b872dd60e01b8585856040516024016143c693929190614cf4565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152614692565b60008261440c57506000611d54565b8282028284828161441957fe5b0414613b325760405162461bcd60e51b8152600401610882906152d5565b6000613b3283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614777565b6000818484111561449d5760405162461bcd60e51b81526004016108829190614e7d565b505050900390565b303b1590565b600054610100900460ff16806144c457506144c46144a5565b806144d2575060005460ff16155b6144ee5760405162461bcd60e51b8152600401610882906153a5565b600054610100900460ff16158015613f3b576000805460ff1961ff0019909116610100171660011790558015613f4d576000805461ff001916905550565b600054610100900460ff168061454557506145456144a5565b80614553575060005460ff16155b61456f5760405162461bcd60e51b8152600401610882906153a5565b600054610100900460ff1615801561459a576000805460ff1961ff0019909116610100171660011790555b60006145a4610858565b606580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015613f4d576000805461ff001916905550565b600054610100900460ff168061461f575061461f6144a5565b8061462d575060005460ff16155b6146495760405162461bcd60e51b8152600401610882906153a5565b600054610100900460ff16158015614674576000805460ff1961ff0019909116610100171660011790555b6097805460ff191690558015613f4d576000805461ff001916905550565b6146a4826001600160a01b0316613e79565b6146c05760405162461bcd60e51b815260040161088290615886565b60006060836001600160a01b0316836040516146dc9190614cc1565b6000604051808303816000865af19150503d8060008114614719576040519150601f19603f3d011682016040523d82523d6000602084013e61471e565b606091505b5091509150816147405760405162461bcd60e51b81526004016108829061514d565b805115613e73578080602001905161475b9190810190614b32565b613e735760405162461bcd60e51b81526004016108829061565e565b600081836147985760405162461bcd60e51b81526004016108829190614e7d565b5060008385816147a457fe5b0495945050505050565b6040518060c0016040528060006001600160a01b0316815260200160006001600160a01b031681526020016000815260200160008152602001600015158152602001600081525090565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915290565b8035611d5481615afa565b600060208284031215614842578081fd5b8135613b3281615afa565b60006020828403121561485e578081fd5b8151613b3281615afa565b6000806040838503121561487b578081fd5b823561488681615afa565b9150602083013561489681615afa565b809150509250929050565b600080600080608085870312156148b6578182fd5b84356148c181615afa565b935060208501356148d181615afa565b92506040850135915060608501356148e881615afa565b939692955090935050565b60008060008060808587031215614908578384fd5b843561491381615afa565b935060208581013561492481615afa565b935060408601359250606086013567ffffffffffffffff80821115614947578384fd5b81880189601f820112614958578485fd5b8035925081831115614968578485fd5b61497a601f8401601f19168501615a41565b9150828252898484830101111561498f578485fd5b8284820185840137509081019091019190915292959194509250565b600080600080600060a086880312156149c2578081fd5b85356149cd81615afa565b945060208601356149dd81615afa565b9350604086013592506060860135915060808601356149fb81615b0f565b809150509295509295909350565b60008060008060008060c08789031215614a21578081fd5b8635614a2c81615afa565b95506020870135614a3c81615afa565b945060408701359350606087013592506080870135915060a0870135614a6181615b0f565b809150509295509295509295565b60008060408385031215614a81578182fd5b8235614a8c81615afa565b946020939093013593505050565b60006020808385031215614aac578182fd5b825167ffffffffffffffff811115614ac2578283fd5b80840185601f820112614ad3578384fd5b80519150614ae8614ae383615a68565b615a41565b8281528381019082850185850284018601891015614b04578687fd5b8693505b84841015614b26578051835260019390930192918501918501614b08565b50979650505050505050565b600060208284031215614b43578081fd5b8151613b3281615b0f565b600060208284031215614b5f578081fd5b8135613b3281615b1d565b600060208284031215614b7b578081fd5b5035919050565b600060208284031215614b93578081fd5b5051919050565b60008060408385031215614bac578182fd5b82359150602083013561489681615afa565b6000806000806000858703610220811215614bd7578384fd5b863595506101a0601f1982011215614bed578384fd5b506020860193506101c0860135614c0381615b0f565b92506101e0860135614c1481615afa565b91506102008601356149fb81615b0f565b60008060408385031215614c37578182fd5b50508035926020909101359150565b60008060008060808587031215614c5b578182fd5b84359350602085013592506040850135915060608501356148e881615b0f565b600060208284031215614c8c578081fd5b8151613b3281615b2e565b6001600160a01b03169052565b15159052565b60020b9052565b62ffffff169052565b60ff169052565b60008251614cd3818460208701615ace565b9190910192915050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039485168152928416602084015262ffffff919091166040830152909116606082015260800190565b6001600160a01b03958616815293909416602084015260408301919091526060820152901515608082015260a00190565b6001600160a01b039687168152949095166020850152604084019290925260608301521515608082015260a081019190915260c00190565b6001600160a01b03998a16815297909816602088015260408701959095526060860193909352901515608085015260a0840152151560c083015260e08201529015156101008201526101200190565b6020808252825182820181905260009190848201906040850190845b81811015614e5157835183529284019291840191600101614e35565b50909695505050505050565b901515815260200190565b6001600160e01b031991909116815260200190565b6000602082528251806020840152614e9c816040850160208701615ace565b601f01601f19169190910160400192915050565b60208082526021908201527f536d616c6c657220756e6c6f636b2074696d65207468616e206578697374696e6040820152606760f81b606082015260800190565b6020808252601190820152701499599d5b99081155120819985a5b1959607a1b604082015260600190565b6020808252601d908201527f666565732073686f756c642062652067726561746572207468616e2030000000604082015260600190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252600f908201526e496e76616c6964206164647265737360881b604082015260600190565b6020808252601390820152722ab730baba3437b934b9b2b21039b2b73232b960691b604082015260600190565b6020808252601b908201527f43616e6e6f742073706c69742077697468647261776e206c6f636b0000000000604082015260600190565b6020808252601f908201527f496e76616c696420707269636520657374696d61746f72206164647265737300604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252600e908201526d125b9d985b1a5908185b5bdd5b9d60921b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526018908201527f45524332303a20616c72656164792077697468647261776e0000000000000000604082015260600190565b60208082526012908201527113919508185b1c9958591e481b5a5b9d195960721b604082015260600190565b6020808252818101527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604082015260600190565b60208082526027908201527f546865206164647265737320646f6573206e6f7420636f6e7461696e206120636040820152661bdb9d1c9858dd60ca1b606082015260800190565b602080825260139082015272119959481d1c985b9cd9995c8819985a5b1959606a1b604082015260600190565b6020808252600c908201526b155b985d5d1a1bdc9a5cd95960a21b604082015260600190565b602080825260139082015272496e76616c696420756e6c6f636b2074696d6560681b604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526011908201527020b63932b0b23c903bb4ba34323930bbb760791b604082015260600190565b6020808252601f908201527f496e737566666963656e742042616c616e636520746f20776974686472617700604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526016908201527510d85b89dd081cdc1b1a5d081b1bd8dad9590813919560521b604082015260600190565b60208082526010908201526f1391950e88155b9a5b9d185b1a5e995960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526016908201527543616e27742073706c697420656d707479206c6f636b60501b604082015260600190565b602080825260169082015275155b985d5d1a1bdc9a5cd959081d1bc8195e1d195b9960521b604082015260600190565b602080825260169082015275556e617574686f726973656420746f20756e6c6f636b60501b604082015260600190565b60208082526019908201527f496e76616c69642055534420746f6b656e206164647265737300000000000000604082015260600190565b6020808252601d908201527f496e73756666696369656e742062616c616e636520746f2073706c6974000000604082015260600190565b602080825260139082015272139195081b585b9859d95c881b9bdd081cd95d606a1b604082015260600190565b6020808252601690820152751391950e88151c985b9cd9995c88131bd8dac813919560521b604082015260600190565b60208082526017908201527f556e6c6f636b2074696d65206e6f742072656163686564000000000000000000604082015260600190565b6020808252601390820152721d8cc81b5a59dc985d1bdc881b9bdd081cd95d606a1b604082015260600190565b602080825260169082015275496e76616c69642077616c6c6574206164647265737360501b604082015260600190565b6020808252601f908201527f45524332303a2043616e6e6f74205769746864726177203020546f6b656e7300604082015260600190565b60208082526025908201527f4e46543a20736d616c6c657220756e6c6f636b54696d65207468616e206578696040820152647374696e6760d81b606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60208082526016908201527527232a1d1030b63932b0b23c903bb4ba34323930bbb760511b604082015260600190565b60208082526018908201527f45524332303a205472616e73666572204c6f636b204e46540000000000000000604082015260600190565b6020808252601b908201527f556e6c6f636b2074696d6520616c726561647920726561636865640000000000604082015260600190565b60208082526027908201527f45524332303a20736d616c6c657220756e6c6f636b54696d65207468616e206560408201526678697374696e6760c81b606082015260800190565b6020808252600b908201526a11995948139bdd0813595d60aa1b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526018908201527f556e617574686f726973656420746f207472616e736665720000000000000000604082015260600190565b6020808252601b908201527f546f6b656e2f4e465420616c72656164792077697468647261776e0000000000604082015260600190565b602080825260159082015274155b985d5d1a1bdc9a5cd959081d1bc814dc1b1a5d605a1b604082015260600190565b6020808252601f908201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604082015260600190565b6101a08101602083016158d9836158d48387614826565b614c97565b3560208301526158ec6040840184615ac1565b6158f96040840182614cba565b506159076060840184615a88565b6159146060840182614c97565b506159226080840184615a88565b61592f6080840182614c97565b5061593d60a0840184615ab4565b61594a60a0840182614cb1565b5061595860c0840184615aa2565b61596560c0840182614caa565b5061597360e0840184615aa2565b61598060e0840182614caa565b50610100838101359083015261012080840135908301526101406159a681850185615a88565b6159b282850182614c97565b505061016083810135908301526101806159ce81850185615a95565b6159da82850182614ca4565b505092915050565b90815260200190565b9182526001600160a01b0316602082015260400190565b918252602082015260400190565b9283526020830191909152604082015260600190565b93845260208401929092526040830152606082015260800190565b60405181810167ffffffffffffffff81118282101715615a6057600080fd5b604052919050565b600067ffffffffffffffff821115615a7e578081fd5b5060209081020190565b60008235613b3281615afa565b60008235613b3281615b0f565b600082358060020b8114613b32578182fd5b60008235613b3281615b1d565b60008235613b3281615b2e565b60005b83811015615ae9578181015183820152602001615ad1565b83811115613e735750506000910152565b6001600160a01b0381168114613f4d57600080fd5b8015158114613f4d57600080fd5b62ffffff81168114613f4d57600080fd5b60ff81168114613f4d57600080fdfea2646970667358221220a875bfc3cb8e3e0b79f24cb2c8b555e4c5407231c2c191adc930cba9b096851864736f6c63430006020033

Deployed Bytecode Sourcemap

31401:32714:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63979:36;63991:12;:10;:12::i;:::-;64005:9;63979:36;;;;;;;;;;;;;;;;31401:32714;;;;;45691:2368;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;52976:187;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;52976:187:0;;;;;;;;:::i;:::-;;;;;;;;35268:207;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;35268:207:0;;;;;;;;:::i;:::-;;;;;;;;63761:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;63761:167:0;;;;;;;;:::i;:::-;;32496:36;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32496:36:0;;;:::i;:::-;;;;;;;;49409:215;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;49409:215:0;;;;;;;;:::i;54388:129::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;54388:129:0;;;;;;;;:::i;:::-;;;;;;;;36771:1331;;;;;;;;;:::i;32331:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32331:30:0;;;:::i;48321:82::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48321:82:0;;;:::i;64031:81::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;64031:81:0;;;:::i;39643:2784::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;39643:2784:0;;;;;;;;:::i;32843:57::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32843:57:0;;;;;;;;:::i;32096:64::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32096:64:0;;;;;;;;:::i;22268:78::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22268:78:0;;;:::i;51325:113::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51325:113:0;;;:::i;32767:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32767:29:0;;;:::i;48411:760::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;48411:760:0;;;;;;;;:::i;20363:148::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20363:148:0;;;:::i;38155:1433::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;38155:1433:0;;;;;;;;:::i;32978:18::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32978:18:0;;;:::i;34990:78::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34990:78:0;;;:::i;48149:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48149:79:0;;;:::i;51481:1442::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;51481:1442:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;19721:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19721:79:0;;;:::i;32622:47::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32622:47:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;32028:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32028:24:0;;;:::i;50337:242::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;50337:242:0;;;;;;;;:::i;32465:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32465:24:0;;;:::i;51125:161::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;51125:161:0;;;;;;;;:::i;32709:51::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32709:51:0;;;:::i;54582:3533::-;;;;;;;;;:::i;32218:73::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32218:73:0;;;;;;;;:::i;42475:2635::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;42475:2635:0;;;;;;;;:::i;32167:44::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32167:44:0;;;;;;;;:::i;:::-;;;;;;;;;;;;49179:222;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;49179:222:0;;;;;;;;:::i;32059:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32059:30:0;;;;;;;;:::i;50671:149::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;50671:149:0;;;;;;;;:::i;35519:1211::-;;;;;;;;;:::i;50917:155::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;50917:155:0;;;;;;;;:::i;32368:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32368:37:0;;;:::i;49632:331::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;49632:331:0;;;;;;;;:::i;62645:691::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;62645:691:0;;;;;;;;:::i;20666:244::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20666:244:0;;;;;;;;:::i;49971:229::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;49971:229:0;;;;;;;;:::i;53175:1101::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;53175:1101:0;;;;;;;;:::i;32930:41::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;32930:41:0;;;;;;;;:::i;17997:106::-;18085:10;17997:106;:::o;45691:2368::-;22505:7;;45910:20;;22505:7;;22504:8;22496:37;;;;-1:-1:-1;;;22496:37:0;;;;;;;;;;;;;;;;;34456:11:::1;::::0;-1:-1:-1;;;34456:11:0;::::1;;;34448:55;;;;-1:-1:-1::0;;;34448:55:0::1;;;;;;;;;34581:11;:19:::0;;-1:-1:-1;;;;34581:19:0::1;::::0;;34595:5:::1;45976:16:::0;;;:11:::2;:16;::::0;;;;;;;46087:10:::2;:15:::0;;;;;;:28;-1:-1:-1;;;;;46087:28:0::2;46192:32:::0;;46184:67:::2;;;;-1:-1:-1::0;;;46184:67:0::2;;;;;;;;;46262:25;46290:16:::0;;;:11:::2;:16;::::0;;;;:28:::2;::::0;::::2;::::0;46358:29;;;46436:34;;::::2;::::0;46290:28;;-1:-1:-1;;;;;46358:29:0;;::::2;::::0;46436:34:::2;46489::::0;46481:69:::2;;;;-1:-1:-1::0;;;46481:69:0::2;;;;;;;;;46564:14;::::0;;;:9:::2;:14;::::0;;;;;::::2;;46561:169;;;46649:12;:10;:12::i;:::-;46628:3;::::0;46620:25:::2;::::0;-1:-1:-1;;;46620:25:0;;-1:-1:-1;;;;;46620:41:0;;::::2;::::0;46628:3;;::::2;::::0;46620:20:::2;::::0;:25:::2;::::0;46641:3;;46620:25:::2;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;46620:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;46620:25:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;46620:25:0;;;;;;;;;-1:-1:-1::0;;;;;46620:41:0::2;;46594:124;;;;-1:-1:-1::0;;;46594:124:0::2;;;;;;;;;46778:27;-1:-1:-1::0;;;;;46762:43:0::2;:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;46762:43:0::2;;46740:115;;;;-1:-1:-1::0;;;46740:115:0::2;;;;;;;;;46874:21;::::0;::::2;::::0;::::2;;:30;46866:70;;;;-1:-1:-1::0;;;46866:70:0::2;;;;;;;;;47245:12;47225:17;:32;47217:74;;;;-1:-1:-1::0;;;47217:74:0::2;;;;;;;;;47330:11;:22;;;47310:16;:42;;47302:88;;;;-1:-1:-1::0;;;47302:88:0::2;;;;;;;;;47445:31;47457:18;47445:11;:31::i;:::-;47513:35;:17:::0;47535:12;47513:35:::2;:21;:35;:::i;:::-;47487:23;::::0;::::2;:61:::0;47643:97:::2;47660:18:::0;47680:27;47709:12;47723:16;47643::::2;:97::i;:::-;47628:112;;47754:8;47751:98;;;47779:58;47795:12;47809:27;47779:15;:58::i;:::-;47864:67;47874:3;47879:11;:23;;;47904:12;47918;47864:67;;;;;;;;;;;;;;;;;;47989:27;-1:-1:-1::0;;;;;47947:102:0::2;47969:18;-1:-1:-1::0;;;;;47947:102:0::2;;47955:12;48018;48032:16;47947:102;;;;;;;;;;;;;;;;;-1:-1:-1::0;;34761:11:0::1;:18:::0;;-1:-1:-1;;;;34761:18:0::1;-1:-1:-1::0;;;34761:18:0::1;::::0;;-1:-1:-1;45691:2368:0;;;-1:-1:-1;;;;;;45691:2368:0:o;52976:187::-;-1:-1:-1;;;;;53108:47:0;;;;;;:27;:47;;;;;;;;;53101:54;;;;;;;;;;;;;;;;;53067:16;;53101:54;;;53108:47;53101:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52976:187;;;;:::o;35268:207::-;-1:-1:-1;;;35268:207:0;;;;;;:::o;63761:167::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;63887:3:::1;::::0;63871:49:::1;::::0;-1:-1:-1;;;63871:49:0;;-1:-1:-1;;;;;63887:3:0;;::::1;::::0;63871:38:::1;::::0;:49:::1;::::0;63910:9;;63871:49:::1;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;63871:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;63871:49:0;;;;63761:167:::0;:::o;32496:36::-;;;-1:-1:-1;;;;;32496:36:0;;:::o;49409:215::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;-1:-1:-1;;;;;49520:28:0;::::1;49512:63;;;;-1:-1:-1::0;;;49512:63:0::1;;;;;;;;;49586:13;:30:::0;;-1:-1:-1;;;;;;49586:30:0::1;-1:-1:-1::0;;;;;49586:30:0;;;::::1;::::0;;;::::1;::::0;;49409:215::o;54388:129::-;-1:-1:-1;;;;;54488:21:0;54459:4;54488:21;;;:14;:21;;;;;;;;;54388:129::o;36771:1331::-;22505:7;;37050:11;;22505:7;;22504:8;22496:37;;;;-1:-1:-1;;;22496:37:0;;;;;;;;;34456:11:::1;::::0;-1:-1:-1;;;34456:11:0;::::1;;;34448:55;;;;-1:-1:-1::0;;;34448:55:0::1;;;;;;;;;34581:11;:19:::0;;-1:-1:-1;;;;34581:19:0::1;::::0;;37087:11;37079:38:::2;;;;-1:-1:-1::0;;;37079:38:0::2;;;;;;;;;37150:15;37136:11;:29;37128:61;;;;-1:-1:-1::0;;;37128:61:0::2;;;;;;;;;37202:26;37214:13;37202:11;:26::i;:::-;-1:-1:-1::0;;;;;37334:33:0;;::::2;;::::0;;;:18:::2;:33;::::0;;;;;;;:53;;::::2;::::0;;;;;;;:66:::2;::::0;37392:7;37334:66:::2;:57;:66;:::i;:::-;-1:-1:-1::0;;;;;37278:33:0;;::::2;;::::0;;;:18:::2;:33;::::0;;;;;;;:53;;::::2;::::0;;;;;;;;;:122;;;;37419:9:::2;37417:11:::0;;::::2;::::0;;::::2;::::0;;;;37457:252;;::::2;::::0;::::2;::::0;;;;;;;::::2;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;37439:15;;;:10:::2;:15:::0;;;;;:270;;;;-1:-1:-1;;;;;;37439:270:0;;::::2;::::0;;::::2;::::0;;;::::2;::::0;;;;;;::::2;::::0;;;;::::2;::::0;::::2;::::0;;;::::2;::::0;;;;;::::2;::::0;::::2;::::0;;::::2;::::0;::::2;::::0;;::::2;::::0;::::2;::::0;;-1:-1:-1;;37439:270:0::2;::::0;::::2;;::::0;;;::::2;::::0;;;;::::2;::::0;;::::2;::::0;;;;37722:13:::2;27:10:-1::0;;23:18;;::::2;45:23:::0;;;37722::0;::::2;::::0;;;37756:47;;;:27:::2;:47:::0;;;;;27:10:-1;;23:18;;::::2;45:23:::0;;37756:57:0;;;;;;::::2;::::0;;;37417:11;-1:-1:-1;37826:80:0;::::2;;;37854:40;37870:3;37875:18;37854:15;:40::i;:::-;37924:13;-1:-1:-1::0;;;;;37916:39:0::2;;37956:12;:10;:12::i;:::-;37978:4;37985:8;37916:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;37916:78:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;37916:78:0;;;;38053:18;-1:-1:-1::0;;;;;38012:82:0::2;38028:13;-1:-1:-1::0;;;;;38012:82:0::2;;38023:3;38043:8;38073:7;38082:11;38012:82;;;;;;;;;;;;;;;;;;34761:11:::1;:18:::0;;-1:-1:-1;;;;34761:18:0::1;-1:-1:-1::0;;;34761:18:0::1;::::0;;36771:1331;;-1:-1:-1;;;;;;36771:1331:0:o;32331:30::-;;;-1:-1:-1;;;;;32331:30:0;;:::o;48321:82::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;48385:10:::1;:8;:10::i;:::-;48321:82::o:0;64031:81::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;64086:11:::1;:18:::0;;-1:-1:-1;;;;64086:18:0::1;-1:-1:-1::0;;;64086:18:0::1;::::0;;64031:81::o;39643:2784::-;39760:18;39818:15;;;:10;:15;;;;;;;;39872:11;:16;;;;;39905:22;;-1:-1:-1;;;;;39905:22:0;:38;39901:2443;;39990:3;;-1:-1:-1;;;;;39990:3:0;39974:12;:10;:12::i;:::-;-1:-1:-1;;;;;39974:19:0;;:37;;;;-1:-1:-1;39997:14:0;;;;:9;:14;;;;;;;;39974:37;39970:393;;;40058:27;;;;-1:-1:-1;;;;;40058:27:0;;-1:-1:-1;39970:393:0;;;40162:14;;;;:9;:14;;;;;;;;40161:15;40152:52;;;;-1:-1:-1;;;40152:52:0;;;;;;;;;40247:27;;;;-1:-1:-1;;;;;40247:27:0;40231:12;:10;:12::i;:::-;-1:-1:-1;;;;;40231:43:0;;40223:80;;;;-1:-1:-1;;;40223:80:0;;;;;;;;;40335:12;:10;:12::i;:::-;40322:25;;39970:393;40388:19;;;;;;40387:20;40379:55;;;;-1:-1:-1;;;40379:55:0;;;;;;;;;40644:21;;;;40604:22;;-1:-1:-1;;;;;40604:22:0;;;40585:42;;;;:18;:42;;;;;;;;:54;;;;;;;;;;:81;;;:58;:81;:::i;:::-;40529:22;;-1:-1:-1;;;;;40529:22:0;;;40510:42;;;;:18;:42;;;;;;;;:54;;;;;;;;;;:156;;;;40890:21;;;;40844:22;;;;40825:42;;;;;;;;:60;;;;;;;;;;;;;;:87;;;:64;:87;:::i;:::-;40763:22;;-1:-1:-1;;;;;40763:22:0;;;40744:42;;;;:18;:42;;;;;;;;:60;;;;;;;;;:168;40941:52;40977:3;40982:10;40941:35;:52::i;:::-;41072:27;;;:46;;-1:-1:-1;;;;;;41072:46:0;-1:-1:-1;;;;;41072:46:0;;;;;39901:2443;;;41189:3;;-1:-1:-1;;;;;41189:3:0;41173:12;:10;:12::i;:::-;-1:-1:-1;;;;;41173:19:0;;:37;;;;-1:-1:-1;41196:14:0;;;;:9;:14;;;;;;;;41173:37;41169:386;;;41257:29;;;;-1:-1:-1;;;;;41257:29:0;;-1:-1:-1;41169:386:0;;;41350:14;;;;:9;:14;;;;;;;;41349:15;41340:54;;;;-1:-1:-1;;;41340:54:0;;;;;;;;;41437:29;;;;-1:-1:-1;;;;;41437:29:0;41421:12;:10;:12::i;:::-;-1:-1:-1;;;;;41421:45:0;;41413:82;;;;-1:-1:-1;;;41413:82:0;;;;;;;;;41527:12;:10;:12::i;:::-;41514:25;;41169:386;41592:21;;;;;;41591:22;41583:59;;;;-1:-1:-1;;;41583:59:0;;;;;;;;;41852:23;;;;41810:24;;-1:-1:-1;;;;;41810:24:0;;;41791:44;;;;:18;:44;;;;;;;;:56;;;;;;;;;;:85;;;:60;:85;:::i;:::-;41737:24;;-1:-1:-1;;;;;41737:24:0;;;41718:44;;;;:18;:44;;;;;;;;:56;;;;;;;;;;:158;;;;42100:23;;;;42052:24;;;;42033:44;;;;;;;;:62;;;;;;;;;;;;;;:91;;;:66;:91;:::i;:::-;41973:24;;-1:-1:-1;;;;;41973:24:0;;;41954:44;;;;:18;:44;;;;;;;;:62;;;;;;;;;:170;42153:52;42189:3;42194:10;42153:35;:52::i;:::-;42284:29;;;:48;;-1:-1:-1;;;;;;42284:48:0;-1:-1:-1;;;;;42284:48:0;;;;;39901:2443;-1:-1:-1;;;;;;;;42364:45:0;;;;;:27;:45;;;;;;;27:10:-1;;39:1;23:18;;45:23;;42364:55:0;;;;;;;39643:2784::o;32843:57::-;;;;;;;;;;;;;:::o;32096:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22268:78::-;22331:7;;;;22268:78;:::o;51325:113::-;51376:16;51417:13;51410:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51325:113;:::o;32767:29::-;;;-1:-1:-1;;;;;32767:29:0;;:::o;48411:760::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;48583:15:::1;34858:20;:7;-1:-1:-1::0;;;;;34858:18:0::1;;:20::i;:::-;34850:72;;;;-1:-1:-1::0;;;34850:72:0::1;;;;;;;;;48618:16:::2;34858:20;:7;-1:-1:-1::0;;;;;34858:18:0::2;;:20::i;:::-;34850:72;;;;-1:-1:-1::0;;;34850:72:0::2;;;;;;;;;-1:-1:-1::0;;;;;48660:29:0;::::3;48652:73;;;;-1:-1:-1::0;;;48652:73:0::3;;;;;;;;;-1:-1:-1::0;;;;;48744:30:0;::::3;48736:68;;;;-1:-1:-1::0;;;48736:68:0::3;;;;;;;;;48836:1;48823:10;:14;48815:56;;;;-1:-1:-1::0;;;48815:56:0::3;;;;;;;;;-1:-1:-1::0;;;;;48890:28:0;::::3;48882:63;;;;-1:-1:-1::0;;;48882:63:0::3;;;;;;;;;48956:14;:49:::0;;-1:-1:-1;;;;;48956:49:0;;::::3;-1:-1:-1::0;;;;;;48956:49:0;;::::3;;::::0;;;49016:15:::3;:34:::0;;;;::::3;::::0;;::::3;;::::0;;49061:9:::3;:22:::0;;;49094:13:::3;:30:::0;;;;::::3;::::0;;;::::3;::::0;;;::::3;::::0;;49140:23:::3;::::0;49073:10;;49140:23:::3;::::0;48956:14:::3;::::0;49140:23:::3;34933:1:::2;20003::::1;48411:760:::0;;;;:::o;20363:148::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;20454:6:::1;::::0;20433:40:::1;::::0;20470:1:::1;::::0;-1:-1:-1;;;;;20454:6:0::1;::::0;20433:40:::1;::::0;20470:1;;20433:40:::1;20484:6;:19:::0;;-1:-1:-1;;;;;;20484:19:0::1;::::0;;20363:148::o;38155:1433::-;38294:15;38280:11;:29;38272:61;;;;-1:-1:-1;;;38272:61:0;;;;;;;;;38344:26;38373:15;;;:10;:15;;;;;;;;38427:11;:16;;;;;38459:9;:14;;;;;;;;38456:341;;;38535:12;:10;:12::i;:::-;38514:3;;38498:33;;-1:-1:-1;;;38498:33:0;;-1:-1:-1;;;;;38498:49:0;;;;38514:3;;;;38498:28;;:33;;38527:3;;38498:33;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38498:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;38498:33:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;38498:33:0;;;;;;;;;-1:-1:-1;;;;;38498:49:0;;38490:84;;;;-1:-1:-1;;;38490:84:0;;;;;;;;;38456:341;;;38632:27;;;;-1:-1:-1;;;;;38632:27:0;38616:12;:10;:12::i;:::-;-1:-1:-1;;;;;38616:43:0;;:110;;;-1:-1:-1;38697:29:0;;;;-1:-1:-1;;;;;38697:29:0;38681:12;:10;:12::i;:::-;-1:-1:-1;;;;;38681:45:0;;38616:110;38607:178;;;;-1:-1:-1;;;38607:178:0;;;;;;;;;38812:22;;-1:-1:-1;;;;;38812:22:0;:38;38809:718;;38898:9;:20;;;38884:11;:34;38876:84;;;;-1:-1:-1;;;38876:84:0;;;;;;;;;38984:19;;;;;;38983:20;38975:55;;;;-1:-1:-1;;;38975:55:0;;;;;;;;;39082:20;;;:34;;;38809:718;;;39207:11;:22;;;39193:11;:36;39167:137;;;;-1:-1:-1;;;39167:137:0;;;;;;;;;39346:21;;;;;;39345:22;39319:108;;;;-1:-1:-1;;;39319:108:0;;;;;;;;;39479:22;;;:36;;;38809:718;39542:38;39563:3;39568:11;39542:38;;;;;;;;;;;;;;;;38155:1433;;;;:::o;32978:18::-;;;-1:-1:-1;;;;;32978:18:0;;:::o;34990:78::-;35042:18;:16;:18::i;48149:79::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;48212:8:::1;:6;:8::i;51481:1442::-:0;51569:21;51874:14;;;:9;:14;;;;;;51569:21;;;;;;;;;;;;;;;;51874:14;;51899:25;;:::i;:::-;-1:-1:-1;51927:15:0;;;;:10;:15;;;;;;;;;51899:43;;;;;;;;;-1:-1:-1;;;;;51899:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51953:24;;:::i;:::-;-1:-1:-1;51980:16:0;;;;:11;:16;;;;;;;;;51953:43;;;;;;;;;-1:-1:-1;;;;;51953:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52013:22;;:38;;52009:907;;-1:-1:-1;52105:22:0;52130:27;;;:22;:27;;;;;;;;;;52200:22;;52241:27;;;;52287:21;;;;52327:20;;;;52366:19;;;;52405:17;;;;;52200:22;;-1:-1:-1;52241:27:0;;-1:-1:-1;52287:21:0;-1:-1:-1;52327:20:0;;-1:-1:-1;52366:19:0;;-1:-1:-1;52405:17:0;;-1:-1:-1;52441:4:0;;-1:-1:-1;52130:27:0;-1:-1:-1;52497:11:0;-1:-1:-1;52174:349:0;;52009:907;52600:24;;52643:29;;;;52691:23;;;;52733:22;;;;52774:21;;;;;52600:24;;-1:-1:-1;52643:29:0;;-1:-1:-1;52691:23:0;-1:-1:-1;52733:22:0;;-1:-1:-1;52774:21:0;-1:-1:-1;52600:24:0;;-1:-1:-1;52600:24:0;;-1:-1:-1;52600:24:0;;-1:-1:-1;52878:11:0;;-1:-1:-1;52574:330:0;;-1:-1:-1;52574:330:0;51481:1442;;;;;;;;;;;;:::o;19721:79::-;19786:6;;-1:-1:-1;;;;;19786:6:0;19721:79;:::o;32622:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32622:47:0;;;;;;;;;;;;;;;;;:::o;32028:24::-;;;;:::o;50337:242::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;50437:19:::1;34858:20;:7;-1:-1:-1::0;;;;;34858:18:0::1;;:20::i;:::-;34850:72;;;;-1:-1:-1::0;;;34850:72:0::1;;;;;;;;;-1:-1:-1::0;;;;;50482:33:0;::::2;50474:61;;;;-1:-1:-1::0;;;50474:61:0::2;;;;;;;;;-1:-1:-1::0;50546:3:0::2;:25:::0;;-1:-1:-1;;;;;;50546:25:0::2;-1:-1:-1::0;;;;;50546:25:0;;;::::2;::::0;;;::::2;::::0;;50337:242::o;32465:24::-;;;;:::o;51125:161::-;51232:46;;-1:-1:-1;;;51232:46:0;;51201:7;;-1:-1:-1;;;;;51232:31:0;;;;;:46;;51272:4;;51232:46;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51232:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;51232:46:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;51232:46:0;;;;;;;;;51225:53;51125:161;-1:-1:-1;;51125:161:0:o;32709:51::-;;;-1:-1:-1;;;;;32709:51:0;;:::o;54582:3533::-;22505:7;;;;22504:8;22496:37;;;;-1:-1:-1;;;22496:37:0;;;;;;;;;34456:11:::1;::::0;-1:-1:-1;;;34456:11:0;::::1;;;34448:55;;;;-1:-1:-1::0;;;34448:55:0::1;;;;;;;;;34581:11;:19:::0;;-1:-1:-1;;;;34581:19:0::1;::::0;;54858:26:::2;::::0;-1:-1:-1;;;;;54858:26:0::2;54842:81;;;;-1:-1:-1::0;;;54842:81:0::2;;;;;;;;;54950:10;::::0;-1:-1:-1;;;;;54950:10:0::2;54934:65;;;;-1:-1:-1::0;;;54934:65:0::2;;;;;;;;;55010:24;;:::i;:::-;-1:-1:-1::0;55037:16:0::2;::::0;;;:11:::2;:16;::::0;;;;;;;;55010:43;;::::2;::::0;::::2;::::0;;;;-1:-1:-1;;;;;55010:43:0;;::::2;::::0;;;;::::2;::::0;::::2;::::0;;::::2;::::0;;;;::::2;::::0;::::2;::::0;;;;;;;;::::2;::::0;::::2;::::0;;;;;;;::::2;::::0;;::::2;::::0;::::2;;;;::::0;;;;;55072:15:::2;:40;55064:80;;;;-1:-1:-1::0;;;55064:80:0::2;;;;;;;;;55179:11;:29;;;-1:-1:-1::0;;;;;55163:45:0::2;:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;55163:45:0::2;;55155:77;;;;-1:-1:-1::0;;;55155:77:0::2;;;;;;;;;55252:11;:21;;;55251:22;55243:52;;;;-1:-1:-1::0;;;55243:52:0::2;;;;;;;;;55343:26;::::0;:40:::2;::::0;;-1:-1:-1;;;55343:40:0;;;;55308:32:::2;::::0;-1:-1:-1;;;;;55343:26:0::2;::::0;:38:::2;::::0;:40:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;:26;:40;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;55343:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;55343:40:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;55343:40:0;;;;;;;;;55308:75:::0;-1:-1:-1;55504:4:0::2;55496:21;55469:24;55569:13;::::0;;;::::2;::::0;::::2;;;;-1:-1:-1::0;;;;;55562:31:0::2;;55602:4;55562:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;55562:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;55562:46:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;55562:46:0;;;;;;;;;55532:76:::0;-1:-1:-1;55623:27:0::2;55660:13;::::0;;;::::2;::::0;::::2;;;;-1:-1:-1::0;;;;;55653:31:0::2;;55693:4;55653:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;55653:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;55653:46:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;55653:46:0;;;;;;;;;55623:76;;55789:11;55786:152;;;55821:10;::::0;-1:-1:-1;;;;;55821:10:0::2;:45;55867:13;::::0;;;::::2;::::0;::::2;;;;55882;::::0;;;::::2;::::0;::::2;;;;55897:10;::::0;;;::::2;::::0;::::2;;;;55909:12;55821:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;55821:101:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;55821:101:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;55821:101:0;;;;;;;;;;55786:152;55961:11;;::::0;::::2;:6:::0;:11:::2;;;55990:10;::::0;55954:75:::2;::::0;-1:-1:-1;;;55954:75:0;;-1:-1:-1;;;;;55954:27:0;;::::2;::::0;::::2;::::0;:75:::2;::::0;55990:10;::::2;::::0;56003:25:::2;::::0;::::2;;::::0;55954:75:::2;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;55954:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;55954:75:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;55954:75:0;;;;;;;;;-1:-1:-1::0;56046:10:0::2;::::0;:26:::2;::::0;-1:-1:-1;;;56046:26:0;;-1:-1:-1;;;;;56046:10:0;;::::2;::::0;:18:::2;::::0;:26:::2;::::0;56065:6;;56046:26:::2;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;56046:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;;;;56153:4:0::2;56145:21;:40:::0;;::::2;56125:17;56224:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;56224:17:0::2;56248:9;56224:38;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;56200:62:0;;;56285:13;56277:43;;;;-1:-1:-1::0;;;56277:43:0::2;;;;;;;;;56337:26;56373:13;::::0;;;::::2;::::0;::::2;;;;-1:-1:-1::0;;;;;56366:31:0::2;;56406:4;56366:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;56366:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;56366:46:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;56366:46:0;;;;;;;;;56337:75:::0;-1:-1:-1;56450:40:0;;::::2;56509:16:::0;;56505:125:::2;;56562:13;::::0;;;::::2;::::0;::::2;;;;-1:-1:-1::0;;;;;56555:30:0::2;;56586:12;:10;:12::i;:::-;56600;56555:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;56555:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;56555:58:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;56555:58:0;;;;;;;;;56547:67;;;::::0;::::2;;56646:26;56682:6;:13;;;;;;;;;;;;-1:-1:-1::0;;;;;56675:31:0::2;;56715:4;56675:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;56675:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;56675:46:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;56675:46:0;;;;;;;;;56646:75:::0;-1:-1:-1;56759:40:0;;::::2;56818:16:::0;;56814:125:::2;;56871:6;:13;;;;;;;;;;;;-1:-1:-1::0;;;;;56864:30:0::2;;56895:12;:10;:12::i;:::-;56909;56864:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;56864:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;56864:58:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;56864:58:0;;;;;;;;;56856:67;;;::::0;::::2;;34613:1;;;;;;;;;57005:24;57025:3;57005:19;:24::i;:::-;57134:26;::::0;:40:::2;::::0;;-1:-1:-1;;;57134:40:0;;;;57100:31:::2;::::0;-1:-1:-1;;;;;57134:26:0::2;::::0;:38:::2;::::0;:40:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;:26;:40;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;57134:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;57134:40:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;57134:40:0;;;;;;;;;57100:74:::0;-1:-1:-1;57220:31:0::2;:24:::0;57249:1:::2;57220:31;:28;:31;:::i;:::-;57193:23;:58;57185:67;;;::::0;::::2;;57263:18;57284:30;:23:::0;57312:1:::2;57284:30;:27;:30;:::i;:::-;57343:26;::::0;:51:::2;::::0;-1:-1:-1;;;57343:51:0;;57263;;-1:-1:-1;57325:15:0::2;::::0;-1:-1:-1;;;;;57343:26:0;;::::2;::::0;:39:::2;::::0;:51:::2;::::0;57263;;57343::::2;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;57343:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;57343:51:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;57343:51:0;;;;;;;;;57509:9;57507:11:::0;;::::2;;::::0;;;;57325:69;;-1:-1:-1;57529:42:0::2;57544:3:::0;57507:11;57325:69;57529:14:::2;:42::i;:::-;57584:36;::::0;;;:22:::2;:36;::::0;;;;:42;;;57639:131;::::2;;;57675:3;::::0;-1:-1:-1;;;;;57675:3:0::2;57667:46;;;;-1:-1:-1::0;;;57667:46:0::2;;;;;;;;;57728:23;::::0;;;:9:::2;:23;::::0;;;;:30;;-1:-1:-1;;57728:30:0::2;57754:4;57728:30;::::0;;57639:131:::2;57785:14;::::0;;;:9:::2;:14;::::0;;;;;::::2;;57782:122;;;57842:5;57825:14:::0;;;:9:::2;:14;::::0;;;;;;:22;;-1:-1:-1;;57825:22:0::2;::::0;;57878:3:::2;::::0;57862:30;;-1:-1:-1;;;57862:30:0;;-1:-1:-1;;;;;57878:3:0;;::::2;::::0;57862:25:::2;::::0;:30:::2;::::0;57835:3;;57862:30:::2;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;57862:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;57862:30:0;;;;57782:122;57918:8;57914:109;;;57958:3;::::0;-1:-1:-1;;;;;57958:3:0::2;57942:41;57984:12;:10;:12::i;:::-;57998;57942:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;57942:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;57942:69:0;;;;57914:109;58066:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;58048:59:0::2;;58080:3;58085:12;58099:7;58048:59;;;;;;;;;;;;;;;;;-1:-1:-1::0;;34761:11:0::1;:18:::0;;-1:-1:-1;;;;34761:18:0::1;-1:-1:-1::0;;;34761:18:0::1;::::0;;-1:-1:-1;;;;;;;;;54582:3533:0:o;32218:73::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;42475:2635::-;34456:11;;-1:-1:-1;;;34456:11:0;;;;34448:55;;;;-1:-1:-1;;;34448:55:0;;;;;;;;;34581:11;:19;;-1:-1:-1;;;;34581:19:0;;;34595:5;42605:14;;;:9:::1;:14;::::0;;;;;34581:19;42605:14:::1;42602:130;;;42681:12;:10;:12::i;:::-;42660:3;::::0;42644:33:::1;::::0;-1:-1:-1;;;42644:33:0;;-1:-1:-1;;;;;42644:49:0;;::::1;::::0;42660:3;;::::1;::::0;42644:28:::1;::::0;:33:::1;::::0;42673:3;;42644:33:::1;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;42644:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;42644:33:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;42644:33:0;;;;;;;;;-1:-1:-1::0;;;;;42644:49:0::1;;42636:84;;;;-1:-1:-1::0;;;42636:84:0::1;;;;;;;;;42742:25;;:::i;:::-;-1:-1:-1::0;42770:15:0::1;::::0;;;:10:::1;:15;::::0;;;;;;;42742:43;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;42742:43:0;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;::::1;;;;::::0;;;;::::1;::::0;;::::1;::::0;;;;;42824:16;;;:11:::1;:16:::0;;;;;;;42892:27;;42742:43;;42824:16;42876:43:::1;:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;42876:43:0::1;;:92;;;-1:-1:-1::0;42939:29:0::1;::::0;::::1;::::0;-1:-1:-1;;;;;42939:29:0::1;42923:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;42923:45:0::1;;42876:92;42853:166;;;;-1:-1:-1::0;;;42853:166:0::1;;;;;;;;;43157:22:::0;;-1:-1:-1;;;;;43157:38:0::1;::::0;43154:1949:::1;;43239:9;:20;;;43220:15;:39;;43212:75;;;;-1:-1:-1::0;;;43212:75:0::1;;;;;;;;;43311:9;:19;;;43310:20;43302:55;;;;-1:-1:-1::0;;;43302:55:0::1;;;;;;;;;43374:22;43392:3;43374:17;:22::i;:::-;43416:14;::::0;;;:9:::1;:14;::::0;;;;;::::1;;43413:138;;;43481:5;43464:14:::0;;;:9:::1;:14;::::0;;;;;;:22;;-1:-1:-1;;43464:22:0::1;::::0;;43521:3:::1;::::0;43505:30;;-1:-1:-1;;;43505:30:0;;-1:-1:-1;;;;;43521:3:0;;::::1;::::0;43505:25:::1;::::0;:30:::1;::::0;43474:3;;43505:30:::1;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;43505:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;43505:30:0;;;;43413:138;43625:22:::0;;-1:-1:-1;;;;;43617:48:0::1;;43674:4;43681:12;:10;:12::i;:::-;43695:9;:17;;;43617:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;43617:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;43617:96:0;;;;43800:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;43735:101:0::1;43757:9;:22;;;-1:-1:-1::0;;;;;43735:101:0::1;;43752:3;43781:9;:17;;;43814:9;:21;;;43735:101;;;;;;;;;;;;;;;;;43154:1949;;;43914:11;:22;;;43895:15;:41;;43887:77;;;;-1:-1:-1::0;;;43887:77:0::1;;;;;;;;;43988:21;::::0;::::1;::::0;::::1;;43987:22;43979:59;;;;-1:-1:-1::0;;;43979:59:0::1;;;;;;;;;44071:1;44061:7;:11;44053:55;;;;-1:-1:-1::0;;;44053:55:0::1;;;;;;;;;44158:7;44131:11;:23;;;:34;;44123:78;;;;-1:-1:-1::0;;;44123:78:0::1;;;;;;;;;44278:7;44251:11;:23;;;:34;44248:612;;;44305:24;44325:3;44305:19;:24::i;:::-;44352:14;::::0;;;:9:::1;:14;::::0;;;;;::::1;;44348:137;;;44407:5;44390:14:::0;;;:9:::1;:14;::::0;;;;;;:22;;-1:-1:-1;;44390:22:0::1;::::0;;44451:3:::1;::::0;44435:30;;-1:-1:-1;;;44435:30:0;;-1:-1:-1;;;;;44451:3:0;;::::1;::::0;44435:25:::1;::::0;:30:::1;::::0;44400:3;;44435:30:::1;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;44435:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;44435:30:0;;;;44348:137;44248:612;;;44601:23;::::0;::::1;::::0;:36:::1;::::0;44629:7;44601:36:::1;:27;:36;:::i;:::-;44575:23;::::0;::::1;:62:::0;44775:24;;-1:-1:-1;;;;;44775:24:0;;::::1;44756:44;::::0;;;:18:::1;:44;::::0;;;;;;;44775:24;44801:29;::::1;::::0;;;::::1;44756:75:::0;;;;;;;:88:::1;::::0;44836:7;44756:88:::1;:79;:88;:::i;:::-;44675:24:::0;;-1:-1:-1;;;;;44675:24:0;;::::1;44656:44;::::0;;;:18:::1;:44;::::0;;;;;;;44675:24;44701:29;::::1;::::0;;;::::1;44656:75:::0;;;;;;:188;44248:612:::1;44939:24:::0;;-1:-1:-1;;;;;44939:24:0::1;44932:41;44974:12;:10;:12::i;:::-;44988:7;44932:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;44932:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;44932:64:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;44932:64:0;;;;;;;;;44924:73;;;::::0;::::1;;45069:12;:10;:12::i;:::-;45043:24:::0;;45019:72:::1;::::0;-1:-1:-1;;;;;45019:72:0;;::::1;::::0;45043:24;;::::1;::::0;45019:72:::1;::::0;::::1;::::0;45038:3;;45083:7;;45019:72:::1;;;;;;;;;;43154:1949;-1:-1:-1::0;;34761:11:0;:18;;-1:-1:-1;;;;34761:18:0;-1:-1:-1;;;34761:18:0;;;-1:-1:-1;;42475:2635:0:o;32167:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32167:44:0;;;;;;;;;;;;;;:::o;49179:222::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;49287:1:::1;49274:10;:14;49266:55;;;;-1:-1:-1::0;;;49266:55:0::1;;;;;;;;;49332:9;:22:::0;;;49370:23:::1;::::0;49344:10;;49370:23:::1;::::0;;;::::1;49179:222:::0;:::o;32059:30::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32059:30:0;:::o;50671:149::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;50761:5:::1;34858:20;:7;-1:-1:-1::0;;;;;34858:18:0::1;;:20::i;:::-;34850:72;;;;-1:-1:-1::0;;;34850:72:0::1;;;;;;;;;-1:-1:-1::0;;;;;;50784:21:0::2;;::::0;;;:14:::2;:21;::::0;;;;:28;;-1:-1:-1;;50784:28:0::2;50808:4;50784:28;::::0;;50671:149::o;35519:1211::-;22505:7;;35773:11;;22505:7;;22504:8;22496:37;;;;-1:-1:-1;;;22496:37:0;;;;;;;;;34456:11:::1;::::0;-1:-1:-1;;;34456:11:0;::::1;;;34448:55;;;;-1:-1:-1::0;;;34448:55:0::1;;;;;;;;;34581:11;:19:::0;;-1:-1:-1;;;;34581:19:0::1;::::0;;35810:11;35802:20:::2;;;::::0;::::2;;35855:15;35841:11;:29;35833:61;;;;-1:-1:-1::0;;;35833:61:0::2;;;;;;;;;35924:7:::0;35944:26:::2;35956:13:::0;35944:11:::2;:26::i;:::-;36019:46;::::0;-1:-1:-1;;;36019:46:0;;35995:21:::2;::::0;-1:-1:-1;;;;;36019:31:0;::::2;::::0;::::2;::::0;:46:::2;::::0;36059:4:::2;::::0;36019:46:::2;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;36019:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;36019:46:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;36019:46:0;;;;;;;;;35995:70;;36118:76;36157:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;36118:38:0;::::2;::::0;36179:4:::2;36186:7:::0;36118:76:::2;:38;:76;:::i;:::-;36216:46;::::0;-1:-1:-1;;;36216:46:0;;36265:13;;-1:-1:-1;;;;;36216:31:0;::::2;::::0;::::2;::::0;:46:::2;::::0;36256:4:::2;::::0;36216:46:::2;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::2;5:2;36216:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;36216:46:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;36216:46:0;;;;;;;;;-1:-1:-1::0;;;;;36384:33:0;;::::2;;::::0;;;:18:::2;:33;::::0;;;;;;;:53;;::::2;::::0;;;;;;;36216:62;;::::2;::::0;-1:-1:-1;36384:67:0::2;::::0;36216:62;36384:67:::2;:57;:67;:::i;:::-;-1:-1:-1::0;;;;;36328:33:0;;::::2;;::::0;;;:18:::2;:33;::::0;;;;;;;:53;;::::2;::::0;;;;;;:123;36468:74:::2;36347:13:::0;36362:18;36520:8;36530:11;36468:16:::2;:74::i;:::-;36462:80;;36558:8;36555:80;;;36583:40;36599:3;36604:18;36583:15;:40::i;:::-;36680:18;-1:-1:-1::0;;;;;36652:70:0::2;36665:13;-1:-1:-1::0;;;;;36652:70:0::2;;36660:3;36700:8;36710:11;36652:70;;;;;;;;;;;;;;;;;-1:-1:-1::0;;34761:11:0::1;:18:::0;;-1:-1:-1;;;;34761:18:0::1;-1:-1:-1::0;;;34761:18:0::1;::::0;;35519:1211;;-1:-1:-1;;;;;35519:1211:0:o;50917:155::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;51012:5:::1;34858:20;:7;-1:-1:-1::0;;;;;34858:18:0::1;;:20::i;:::-;34850:72;;;;-1:-1:-1::0;;;34850:72:0::1;;;;;;;;;-1:-1:-1::0;;;;;;51035:21:0::2;51059:5;51035:21:::0;;;:14:::2;:21;::::0;;;;:29;;-1:-1:-1;;51035:29:0::2;::::0;;50917:155::o;32368:37::-;;;-1:-1:-1;;;;;32368:37:0;;:::o;49632:331::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;49755:27:::1;34858:20;:7;-1:-1:-1::0;;;;;34858:18:0::1;;:20::i;:::-;34850:72;;;;-1:-1:-1::0;;;34850:72:0::1;;;;;;;;;-1:-1:-1::0;;;;;49808:41:0;::::2;49800:69;;;;-1:-1:-1::0;;;49800:69:0::2;;;;;;;;;-1:-1:-1::0;49880:26:0::2;:75:::0;;-1:-1:-1;;;;;;49880:75:0::2;-1:-1:-1::0;;;;;49880:75:0;;;::::2;::::0;;;::::2;::::0;;49632:331::o;62645:691::-;22505:7;;;;22504:8;22496:37;;;;-1:-1:-1;;;22496:37:0;;;;;;;;;62747:3:::1;::::0;-1:-1:-1;;;;;62747:3:0::1;62739:46;;;;-1:-1:-1::0;;;62739:46:0::1;;;;;;;;;62819:14;::::0;;;:9:::1;:14;::::0;;;;;::::1;;62818:15;62796:84;;;;-1:-1:-1::0;;;62796:84:0::1;;;;;;;;;62891:25;;:::i;:::-;-1:-1:-1::0;62919:15:0::1;::::0;;;:10:::1;:15;::::0;;;;;;;;62891:43;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;62891:43:0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;::::1;::::0;::::1;;;;::::0;;;;::::1;::::0;;::::1;::::0;;;;;62945:24:::1;;:::i;:::-;-1:-1:-1::0;62972:16:0::1;::::0;;;:11:::1;:16;::::0;;;;;;;;62945:43;;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;;;62945:43:0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;;;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;::::1;;;;::::0;;;;63055:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;63024:43:0::1;:9;:27;;;-1:-1:-1::0;;;;;63024:43:0::1;;:92;;;;63104:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;63071:45:0::1;:11;:29;;;-1:-1:-1::0;;;;;63071:45:0::1;;63024:92;63001:157;;;;-1:-1:-1::0;;;63001:157:0::1;;;;;;;;;63179:9;:19;;;63178:20;:46;;;;;63203:11;:21;;;63202:22;63178:46;63169:112;;;;-1:-1:-1::0;;;63169:112:0::1;;;;;;;;;63294:34;63310:3;63315:12;:10;:12::i;:::-;63294:15;:34::i;:::-;22544:1;;62645:691:::0;:::o;20666:244::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;-1:-1:-1;;;;;20755:22:0;::::1;20747:73;;;;-1:-1:-1::0;;;20747:73:0::1;;;;;;;;;20857:6;::::0;20836:38:::1;::::0;-1:-1:-1;;;;;20836:38:0;;::::1;::::0;20857:6:::1;::::0;20836:38:::1;::::0;20857:6:::1;::::0;20836:38:::1;20885:6;:17:::0;;-1:-1:-1;;;;;;20885:17:0::1;-1:-1:-1::0;;;;;20885:17:0;;;::::1;::::0;;;::::1;::::0;;20666:244::o;49971:229::-;19943:12;:10;:12::i;:::-;19933:6;;-1:-1:-1;;;;;19933:6:0;;;:22;;;19925:67;;;;-1:-1:-1;;;19925:67:0;;;;;;;;;50062:11:::1;34858:20;:7;-1:-1:-1::0;;;;;34858:18:0::1;;:20::i;:::-;34850:72;;;;-1:-1:-1::0;;;34850:72:0::1;;;;;;;;;-1:-1:-1::0;;;;;50099:25:0;::::2;50091:53;;;;-1:-1:-1::0;;;50091:53:0::2;;;;;;;;;-1:-1:-1::0;50155:10:0::2;:37:::0;;-1:-1:-1;;;;;;50155:37:0::2;-1:-1:-1::0;;;;;50155:37:0;;;::::2;::::0;;;::::2;::::0;;49971:229::o;53175:1101::-;53256:7;53336:26;53348:13;53336:11;:26::i;:::-;:80;;;-1:-1:-1;53387:14:0;;-1:-1:-1;;;;;53387:14:0;53379:37;53336:80;:126;;;-1:-1:-1;53433:15:0;;-1:-1:-1;;;;;53433:15:0;:29;53336:126;:157;;;-1:-1:-1;53479:9:0;;:14;53336:157;53332:937;;;-1:-1:-1;53526:1:0;53519:8;;53332:937;53737:15;;53722:42;;;-1:-1:-1;;;53722:42:0;;;;53688:17;;-1:-1:-1;;;;;53737:15:0;;53722:40;;:42;;;;;;;;;;;;;;53737:15;53722:42;;;5:2:-1;;;;30:1;27;20:12;5:2;53722:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53722:42:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;53722:42:0;;;;;;;;;53812:14;;53862:15;;53812:66;;-1:-1:-1;;;53812:66:0;;53714:51;;;;;53708:2;:57;;-1:-1:-1;53782:27:0;;-1:-1:-1;;;;;53812:14:0;;;;:38;;:66;;53708:57;;53862:15;;;;53812:66;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53812:66:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53812:66:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;53812:66:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;53812:66:0;;;;;;;;;53879:1;53812:69;;;;;;;;;;;;;;53782:99;;54079:61;54103:36;54134:4;54103:26;54127:1;54103:19;:23;;:26;;;;:::i;:::-;:30;:36;:30;:36;:::i;:::-;54079:19;;:61;:23;:61;:::i;:::-;54057:83;;54157:17;54177:49;54216:9;54177:34;54191:19;54177:9;;:13;;:34;;;;:::i;:49::-;54157:69;-1:-1:-1;54241:16:0;;-1:-1:-1;;;54241:16:0;32930:41;;;;;;;;;;;;;;;:::o;61506:1113::-;61595:27;61625;61638:13;61625:12;:27::i;:::-;61595:57;-1:-1:-1;61667:23:0;;61663:949;;61736:9;:31;-1:-1:-1;61708:25:0;61736:31;61800:150;;61906:44;61919:9;61930:19;61906:12;:44::i;:::-;61800:150;;;61841:44;61854:19;61875:9;61841:12;:44::i;:::-;61782:168;;61987:20;61983:258;;;62029:29;62061:41;62082:19;62061:16;:7;62073:3;62061:16;:11;:16;:::i;:41::-;62029:73;;62208:1;62183:21;:26;;62175:50;;;;-1:-1:-1;;;62175:50:0;;;;;;;;;61983:258;;62273:13;;62256:12;;-1:-1:-1;;;;;62273:13:0;62298:20;:54;;62333:19;62298:54;;;62321:9;62298:54;62273:84;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;62255:102:0;;;62380:7;62372:39;;;;-1:-1:-1;;;62372:39:0;;;;;;;;;62469:20;62468:21;:36;;;;;62503:1;62493:7;:11;62468:36;62464:137;;;62526:18;62549:12;:10;:12::i;:::-;-1:-1:-1;;;;;62549:17:0;62573:7;62549:36;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;-1:-1;;;;61663:949:0;;;;61506:1113;;:::o;4222:136::-;4280:7;4307:43;4311:1;4314;4307:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4300:50;4222:136;-1:-1:-1;;;4222:136:0:o;59061:591::-;59281:9;59279:11;;;;;;;;;;59320:220;;;;;;;;-1:-1:-1;;;;;59320:220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59320:220:0;;;;;;59301:16;;;:11;:16;;;;;:239;;;;-1:-1:-1;;;;;;59301:239:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;59301:239:0;;;;;;;;;;;59553:13;27:10:-1;;23:18;;;45:23;;;59553::0;;;;;59587:47;;;:27;:47;;;;;27:10:-1;;23:18;;;45:23;;59587:57:0;;;;;;;;;;59279:11;59061:591::o;63344:279::-;63468:3;;-1:-1:-1;;;;;63468:3:0;63460:46;;;;-1:-1:-1;;;63460:46:0;;;;;;;;;63517:14;;;;:9;:14;;;;;;;:21;;-1:-1:-1;;63517:21:0;63534:4;63517:21;;;63565:3;;63549:66;;-1:-1:-1;;;63549:66:0;;-1:-1:-1;;;;;63565:3:0;;;;63549:41;;:66;;63591:18;;63527:3;;63549:66;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;63549:66:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;63549:66:0;;;;63344:279;;:::o;3766:181::-;3824:7;3856:5;;;3880:6;;;;3872:46;;;;-1:-1:-1;;;3872:46:0;;;;;;;;23001:120;22704:7;;;;22696:40;;;;-1:-1:-1;;;22696:40:0;;;;;;;;;23060:7:::1;:15:::0;;-1:-1:-1;;23060:15:0::1;::::0;;23091:22:::1;23100:12;:10;:12::i;:::-;23091:22;;;;;;;;;;;;;;;23001:120::o:0;60817:681::-;-1:-1:-1;;;;;61041:47:0;;61001:9;61041:47;;;:27;:47;;;;;:54;61106:385;61118:9;61116:1;:11;61106:385;;;-1:-1:-1;;;;;61153:47:0;;;;;;:27;:47;;;;;:50;;61207:3;;61153:47;61201:1;;61153:50;;;;;;;;;;;;;;:57;61149:331;;;-1:-1:-1;;;;;61306:47:0;;;;;;:27;:47;;;;;:62;;-1:-1:-1;;61354:13:0;;;61306:62;;;;;;;;;;;;;;61231:27;:47;61259:18;-1:-1:-1;;;;;61231:47:0;-1:-1:-1;;;;;61231:47:0;;;;;;;;;;;;61279:1;61231:50;;;;;;;;;;;;;;;;;;;:137;;;;-1:-1:-1;;;;;61387:47:0;;;;:27;:47;;;;;;:53;;;;;;;;;;;;;;;;;;;;;;;;61459:5;;61149:331;61129:3;;;;;61106:385;;;60817:681;;;;:::o;9026:619::-;9086:4;9554:20;;9397:66;9594:23;;;;;;:42;;-1:-1:-1;9621:15:0;;;9594:42;9586:51;9026:619;-1:-1:-1;;;;9026:619:0:o;35076:184::-;15966:12;;;;;;;;:31;;;15982:15;:13;:15::i;:::-;15966:47;;;-1:-1:-1;16002:11:0;;;;16001:12;15966:47;15958:106;;;;-1:-1:-1;;;15958:106:0;;;;;;;;;16073:19;16096:12;;;;;;16095:13;16115:83;;;;16144:12;:19;;-1:-1:-1;;;;16144:19:0;;;;;16172:18;16159:4;16172:18;;;16115:83;35151:26:::1;:24;:26::i;:::-;35188;:24;:26::i;:::-;35225:27;:25;:27::i;:::-;16220:14:::0;16216:57;;;16260:5;16245:20;;-1:-1:-1;;16245:20:0;;;16216:57;35076:184;:::o;22819:118::-;22505:7;;;;22504:8;22496:37;;;;-1:-1:-1;;;22496:37:0;;;;;;;;;22879:7:::1;:14:::0;;-1:-1:-1;;22879:14:0::1;22889:4;22879:14;::::0;;22909:20:::1;22916:12;:10;:12::i;59660:576::-:0;59747:25;59775:16;;;:11;:16;;;;;;;;59850:21;;;:28;;-1:-1:-1;;59850:28:0;59874:4;59850:28;;;;;;60112:23;;;;60051:24;;-1:-1:-1;;;;;60051:24:0;;;60032:44;;:18;:44;;;;;60077:29;;;;;60032:75;;;;;;;:104;;;:79;:104;:::i;:::-;59963:24;;-1:-1:-1;;;;;59963:24:0;;;59944:44;;;;:18;:44;;;;;;;;59963:24;59989:29;;;;;;59944:75;;;;;;;:192;;;;60198:29;;60157:71;;60193:3;;60198:29;60157:35;:71::i;58123:930::-;58264:24;;:::i;:::-;58291:11;:16;58303:3;58291:16;;;;;;;;;;;58264:43;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58264:43:0;-1:-1:-1;;;;;58264:43:0;-1:-1:-1;;;;;58264:43:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58264:43:0;-1:-1:-1;;;;;58264:43:0;-1:-1:-1;;;;;58264:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58346:299;;;;;;;;58392:26;;;;;;;;;-1:-1:-1;;;;;58392:26:0;-1:-1:-1;;;;;58346:299:0;;;;;58453:11;:29;;;-1:-1:-1;;;;;58346:299:0;;;;;58510:1;58346:299;;;;58538:11;:22;;;58346:299;;;;58586:5;58346:299;;;;;;58615:8;58346:299;;;58318:10;:25;58329:13;58318:25;;;;;;;;;;;:327;;;;;;;;;;;;;-1:-1:-1;;;;;58318:327:0;;;;;-1:-1:-1;;;;;58318:327:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58318:327:0;;;;;-1:-1:-1;;;;;58318:327:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58817:93;58908:1;58817:18;:55;58844:26;;;;;;;;;-1:-1:-1;;;;;58844:26:0;-1:-1:-1;;;;;58817:55:0;-1:-1:-1;;;;;58817:55:0;;;;;;;;;;;;:86;58873:11;:29;;;-1:-1:-1;;;;;58817:86:0;-1:-1:-1;;;;;58817:86:0;;;;;;;;;;;;;:90;;:93;;;;:::i;:::-;58741:26;;-1:-1:-1;;;;;58741:26:0;;;58714:55;;;;:18;:55;;;;;;;;58770:29;;;;;58714:86;;;;;;;;;;:196;;;;58923:13;27:10:-1;;58741:26:0;23:18:-1;;;45:23;;58923:33:0;;;;;;;;58995:29;;58967:58;;;;;:27;:58;;;;;27:10:-1;;23:18;;;45:23;;58967:78:0;;;;;;;;;-1:-1:-1;;58123:930:0:o;60244:565::-;60329:26;60358:15;;;:10;:15;;;;;;;;60431:19;;;:26;;-1:-1:-1;;60431:26:0;60453:4;60431:26;;;;;;60683:21;;;;60626:22;;-1:-1:-1;;;;;60626:22:0;;;60607:42;;:18;:42;;;;;60650:27;;;;;60607:71;;;;;;;:98;;;:75;:98;:::i;:::-;60542:22;;-1:-1:-1;;;;;60542:22:0;;;60523:42;;;;:18;:42;;;;;;;;60542:22;60566:27;;;;;;60523:71;;;;;;;;:182;;;;60767:15;;;:10;:15;;;;;:33;;;;60726:75;;60762:3;;60767:33;60726:35;:75::i;11849:205::-;11950:96;11970:5;12000:27;;;12029:4;12035:2;12039:5;11977:68;;;;;;;;;;;;;;;-1:-1:-1;;26:21;;;22:32;6:49;;11977:68:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;;;;11977:68:0;;;179:29:-1;;;;160:49;;;11950:19:0;:96::i;5096:471::-;5154:7;5399:6;5395:47;;-1:-1:-1;5429:1:0;5422:8;;5395:47;5466:5;;;5470:1;5466;:5;:1;5490:5;;;;;:10;5482:56;;;;-1:-1:-1;;;5482:56:0;;;;;;;;6035:132;6093:7;6120:39;6124:1;6127;6120:39;;;;;;;;;;;;;;;;;:3;:39::i;4653:192::-;4739:7;4775:12;4767:6;;;;4759:29;;;;-1:-1:-1;;;4759:29:0;;;;;;;;;;-1:-1:-1;;;4811:5:0;;;4653:192::o;16367:508::-;16784:4;16830:17;16862:7;16367:508;:::o;17918:69::-;15966:12;;;;;;;;:31;;;15982:15;:13;:15::i;:::-;15966:47;;;-1:-1:-1;16002:11:0;;;;16001:12;15966:47;15958:106;;;;-1:-1:-1;;;15958:106:0;;;;;;;;;16073:19;16096:12;;;;;;16095:13;16115:83;;;;16144:12;:19;;-1:-1:-1;;;;16144:19:0;;;;;16172:18;16159:4;16172:18;;;16220:14;16216:57;;;16260:5;16245:20;;-1:-1:-1;;16245:20:0;;;17918:69;:::o;19436:202::-;15966:12;;;;;;;;:31;;;15982:15;:13;:15::i;:::-;15966:47;;;-1:-1:-1;16002:11:0;;;;16001:12;15966:47;15958:106;;;;-1:-1:-1;;;15958:106:0;;;;;;;;;16073:19;16096:12;;;;;;16095:13;16115:83;;;;16144:12;:19;;-1:-1:-1;;;;16144:19:0;;;;;16172:18;16159:4;16172:18;;;16115:83;19508:17:::1;19528:12;:10;:12::i;:::-;19551:6;:18:::0;;-1:-1:-1;;;;;;19551:18:0::1;-1:-1:-1::0;;;;;19551:18:0;::::1;::::0;;::::1;::::0;;;19585:43:::1;::::0;19551:18;;-1:-1:-1;19551:18:0;-1:-1:-1;;19585:43:0::1;::::0;-1:-1:-1;;19585:43:0::1;16206:1;16220:14:::0;16216:57;;;16260:5;16245:20;;-1:-1:-1;;16245:20:0;;;19436:202;:::o;22068:98::-;15966:12;;;;;;;;:31;;;15982:15;:13;:15::i;:::-;15966:47;;;-1:-1:-1;16002:11:0;;;;16001:12;15966:47;15958:106;;;;-1:-1:-1;;;15958:106:0;;;;;;;;;16073:19;16096:12;;;;;;16095:13;16115:83;;;;16144:12;:19;;-1:-1:-1;;;;16144:19:0;;;;;16172:18;16159:4;16172:18;;;16115:83;22141:7:::1;:15:::0;;-1:-1:-1;;22141:15:0::1;::::0;;16216:57;;;;16260:5;16245:20;;-1:-1:-1;;16245:20:0;;;22068:98;:::o;13708:1115::-;14313:27;14321:5;-1:-1:-1;;;;;14313:25:0;;:27::i;:::-;14305:71;;;;-1:-1:-1;;;14305:71:0;;;;;;;;;14450:12;14464:23;14499:5;-1:-1:-1;;;;;14491:19:0;14511:4;14491:25;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;14449:67:0;;;;14535:7;14527:52;;;;-1:-1:-1;;;14527:52:0;;;;;;;;;14596:17;;:21;14592:224;;14738:10;14727:30;;;;;;;;;;;;;;14719:85;;;;-1:-1:-1;;;14719:85:0;;;;;;;;6655:345;6741:7;6843:12;6836:5;6828:28;;;;-1:-1:-1;;;6828:28:0;;;;;;;;;;;6867:9;6883:1;6879;:5;;;;;;;6655:345;-1:-1:-1;;;;;6655:345:0:o;31401:32714::-;;;;;;;;;;-1:-1:-1;;;;;31401:32714:0;;;;;;-1:-1:-1;;;;;31401:32714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;-1:-1:-1;31401:32714:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;3065:241;;3169:2;3157:9;3148:7;3144:23;3140:32;3137:2;;;-1:-1;;3175:12;3137:2;85:6;72:20;97:33;124:5;97:33;;3313:263;;3428:2;3416:9;3407:7;3403:23;3399:32;3396:2;;;-1:-1;;3434:12;3396:2;226:6;220:13;238:33;265:5;238:33;;3847:366;;;3968:2;3956:9;3947:7;3943:23;3939:32;3936:2;;;-1:-1;;3974:12;3936:2;85:6;72:20;97:33;124:5;97:33;;;4026:63;-1:-1;4126:2;4165:22;;72:20;97:33;72:20;97:33;;;4134:63;;;;3930:283;;;;;;4220:633;;;;;4383:3;4371:9;4362:7;4358:23;4354:33;4351:2;;;-1:-1;;4390:12;4351:2;85:6;72:20;97:33;124:5;97:33;;;4442:63;-1:-1;4542:2;4581:22;;72:20;97:33;72:20;97:33;;;4550:63;-1:-1;4650:2;4689:22;;2584:20;;-1:-1;4758:2;4805:22;;358:20;383:41;358:20;383:41;;;4345:508;;;;-1:-1;4345:508;;-1:-1;;4345:508;4860:721;;;;;5024:3;5012:9;5003:7;4999:23;4995:33;4992:2;;;-1:-1;;5031:12;4992:2;85:6;72:20;97:33;124:5;97:33;;;5083:63;-1:-1;5183:2;5222:22;;;72:20;97:33;72:20;97:33;;;5191:63;-1:-1;5291:2;5330:22;;2584:20;;-1:-1;5427:2;5412:18;;5399:32;5451:18;5440:30;;;5437:2;;;-1:-1;;5473:12;5437:2;5548:6;5537:9;5533:22;1552:3;1545:4;1537:6;1533:17;1529:27;1519:2;;-1:-1;;1560:12;1519:2;1607:6;1594:20;1580:34;;5451:18;66016:6;66013:30;66010:2;;;-1:-1;;66046:12;66010:2;1629:64;66119:9;66100:17;;-1:-1;;66096:33;66177:15;;1629:64;;;1620:73;;1713:6;1706:5;1699:21;1817:3;5183:2;1808:6;1741;1799:16;;1796:25;1793:2;;;-1:-1;;1824:12;1793:2;70474:6;5183:2;1741:6;1737:17;5183:2;1775:5;1771:16;70451:30;-1:-1;70512:16;;;;;;70505:27;;;;4986:595;;;;-1:-1;4986:595;-1:-1;4986:595;5588:737;;;;;;5757:3;5745:9;5736:7;5732:23;5728:33;5725:2;;;-1:-1;;5764:12;5725:2;85:6;72:20;97:33;124:5;97:33;;;5816:63;-1:-1;5916:2;5955:22;;72:20;97:33;72:20;97:33;;;5924:63;-1:-1;6024:2;6063:22;;2584:20;;-1:-1;6132:2;6171:22;;2584:20;;-1:-1;6240:3;6277:22;;1248:20;1273:30;1248:20;1273:30;;;6249:60;;;;5719:606;;;;;;;;;6332:863;;;;;;;6518:3;6506:9;6497:7;6493:23;6489:33;6486:2;;;-1:-1;;6525:12;6486:2;85:6;72:20;97:33;124:5;97:33;;;6577:63;-1:-1;6677:2;6716:22;;72:20;97:33;72:20;97:33;;;6685:63;-1:-1;6785:2;6824:22;;2584:20;;-1:-1;6893:2;6932:22;;2584:20;;-1:-1;7001:3;7041:22;;2584:20;;-1:-1;7110:3;7147:22;;1248:20;1273:30;1248:20;1273:30;;;7119:60;;;;6480:715;;;;;;;;;7202:366;;;7323:2;7311:9;7302:7;7298:23;7294:32;7291:2;;;-1:-1;;7329:12;7291:2;85:6;72:20;97:33;124:5;97:33;;;7381:63;7481:2;7520:22;;;;2584:20;;-1:-1;;;7285:283;7575:392;;7715:2;;7703:9;7694:7;7690:23;7686:32;7683:2;;;-1:-1;;7721:12;7683:2;7772:17;7766:24;7810:18;7802:6;7799:30;7796:2;;;-1:-1;;7832:12;7796:2;7934:6;7923:9;7919:22;582:3;575:4;567:6;563:17;559:27;549:2;;-1:-1;;590:12;549:2;630:6;624:13;610:27;;652:80;667:64;724:6;667:64;;;652:80;;;760:21;;;817:14;;;;792:17;;;906;;;897:27;;;;894:36;-1:-1;891:2;;;-1:-1;;933:12;891:2;-1:-1;959:10;;953:217;978:6;975:1;972:13;953:217;;;2732:13;;1046:61;;1000:1;993:9;;;;;1121:14;;;;1149;;953:217;;;-1:-1;7852:99;7677:290;-1:-1;;;;;;;7677:290;7974:257;;8086:2;8074:9;8065:7;8061:23;8057:32;8054:2;;;-1:-1;;8092:12;8054:2;1396:6;1390:13;1408:30;1432:5;1408:30;;8238:239;;8341:2;8329:9;8320:7;8316:23;8312:32;8309:2;;;-1:-1;;8347:12;8309:2;2461:6;2448:20;2473:32;2499:5;2473:32;;8484:241;;8588:2;8576:9;8567:7;8563:23;8559:32;8556:2;;;-1:-1;;8594:12;8556:2;-1:-1;2584:20;;8550:175;-1:-1;8550:175;8732:263;;8847:2;8835:9;8826:7;8822:23;8818:32;8815:2;;;-1:-1;;8853:12;8815:2;-1:-1;2732:13;;8809:186;-1:-1;8809:186;9002:366;;;9123:2;9111:9;9102:7;9098:23;9094:32;9091:2;;;-1:-1;;9129:12;9091:2;2597:6;2584:20;9181:63;;9281:2;9324:9;9320:22;72:20;97:33;124:5;97:33;;9375:799;;;;;;9562:9;9553:7;9549:23;9574:3;9549:23;9545:33;9542:2;;;-1:-1;;9581:12;9542:2;2584:20;;;-1:-1;2190:3;-1:-1;;2172:16;;2168:26;2165:2;;;-1:-1;;2197:12;2165:2;;9733;9809:9;9805:22;9741:96;;9874:3;9915:9;9911:22;1248:20;1273:30;1297:5;1273:30;;;9883:60;-1:-1;9980:3;10020:22;;2312:20;2337:33;2312:20;2337:33;;;9989:63;-1:-1;10089:3;10126:22;;1248:20;1273:30;1248:20;1273:30;;10181:366;;;10302:2;10290:9;10281:7;10277:23;10273:32;10270:2;;;-1:-1;;10308:12;10270:2;-1:-1;;2584:20;;;10460:2;10499:22;;;2584:20;;-1:-1;10264:283;10554:611;;;;;10706:3;10694:9;10685:7;10681:23;10677:33;10674:2;;;-1:-1;;10713:12;10674:2;2597:6;2584:20;10765:63;;10865:2;10908:9;10904:22;2584:20;10873:63;;10973:2;11016:9;11012:22;2584:20;10981:63;;11081:2;11121:9;11117:22;1248:20;1273:30;1297:5;1273:30;;11172:259;;11285:2;11273:9;11264:7;11260:23;11256:32;11253:2;;;-1:-1;;11291:12;11253:2;3010:6;3004:13;3022:31;3047:5;3022:31;;11769:137;-1:-1;;;;;68748:54;11856:45;;11850:56;12872:94;68417:13;68410:21;12927:34;;12921:45;14103:97;68665:1;68654:20;14160:35;;14154:46;34340:100;68886:8;68875:20;34399:36;;34393:47;34794:97;69057:4;69046:16;34851:35;;34845:46;34898:262;;13361:5;66470:12;13472:52;13517:6;13512:3;13505:4;13498:5;13494:16;13472:52;;;13536:16;;;;;35023:137;-1:-1;;35023:137;35167:370;35522:10;35346:191;35544:213;-1:-1;;;;;68748:54;;;;11856:45;;35662:2;35647:18;;35633:124;36252:467;-1:-1;;;;;68748:54;;;11699:58;;68748:54;;;;36622:2;36607:18;;11699:58;36705:2;36690:18;;34625:37;;;;36442:2;36427:18;;36413:306;36726:340;-1:-1;;;;;68748:54;;;;11699:58;;37052:2;37037:18;;34625:37;36880:2;36865:18;;36851:215;37073:543;-1:-1;;;;;68748:54;;;11856:45;;68748:54;;;37438:2;37423:18;;11856:45;68886:8;68875:20;;;;37519:2;37504:18;;34399:36;68748:54;;;37602:2;37587:18;;34291:37;37273:3;37258:19;;37244:372;38065:647;-1:-1;;;;;68748:54;;;11856:45;;68748:54;;;;38454:2;38439:18;;11856:45;38537:2;38522:18;;34625:37;;;;38620:2;38605:18;;34625:37;68417:13;;68410:21;38697:3;38682:19;;12927:34;38289:3;38274:19;;38260:452;38719:759;-1:-1;;;;;68748:54;;;11856:45;;68748:54;;;;39136:2;39121:18;;11856:45;39219:2;39204:18;;34625:37;;;;39302:2;39287:18;;34625:37;68417:13;68410:21;39379:3;39364:19;;12927:34;68759:42;39448:19;;34625:37;;;;38971:3;38956:19;;38942:536;39485:1071;-1:-1;;;;;68748:54;;;11856:45;;68748:54;;;;39974:2;39959:18;;11856:45;40057:2;40042:18;;34625:37;;;;40140:2;40125:18;;34625:37;;;;68417:13;;68410:21;40217:3;40202:19;;12927:34;68759:42;40286:19;;34625:37;68417:13;68410:21;40379:3;40364:19;;12927:34;40463:3;40448:19;;34625:37;68417:13;;68410:21;40541:3;40526:19;;12927:34;39809:3;39794:19;;39780:776;40894:361;41062:2;41076:47;;;66470:12;;41047:18;;;67002:19;;;40894:361;;41062:2;66324:14;;;;67042;;;;40894:361;12582:260;12607:6;12604:1;12601:13;12582:260;;;12668:13;;34625:37;;66857:14;;;;11592;;;;12629:1;12622:9;12582:260;;;-1:-1;41129:116;;41033:222;-1:-1;;;;;;41033:222;41262:201;68417:13;;68410:21;12927:34;;41374:2;41359:18;;41345:118;41470:209;-1:-1;;;;;;68504:78;;;;13153:36;;41586:2;41571:18;;41557:122;42486:301;;42624:2;42645:17;42638:47;14352:5;66470:12;67014:6;42624:2;42613:9;42609:18;67002:19;14446:52;14491:6;67042:14;42613:9;67042:14;42624:2;14472:5;14468:16;14446:52;;;66119:9;70891:14;-1:-1;;70887:28;14510:39;;;;67042:14;14510:39;;42595:192;-1:-1;;42595:192;42794:407;42985:2;42999:47;;;14786:2;42970:18;;;67002:19;14822:34;67042:14;;;14802:55;-1:-1;;;14877:12;;;14870:25;14914:12;;;42956:245;43208:407;43399:2;43413:47;;;15165:2;43384:18;;;67002:19;-1:-1;;;67042:14;;;15181:40;15240:12;;;43370:245;43622:407;43813:2;43827:47;;;15491:2;43798:18;;;67002:19;15527:31;67042:14;;;15507:52;15578:12;;;43784:245;44036:407;44227:2;44241:47;;;15829:2;44212:18;;;67002:19;-1:-1;;;67042:14;;;15845:43;15907:12;;;44198:245;44450:407;44641:2;44655:47;;;16158:2;44626:18;;;67002:19;-1:-1;;;67042:14;;;16174:38;16231:12;;;44612:245;44864:407;45055:2;45069:47;;;16482:2;45040:18;;;67002:19;-1:-1;;;67042:14;;;16498:42;16559:12;;;45026:245;45278:407;45469:2;45483:47;;;16810:2;45454:18;;;67002:19;16846:29;67042:14;;;16826:50;16895:12;;;45440:245;45692:407;45883:2;45897:47;;;17146:2;45868:18;;;67002:19;17182:33;67042:14;;;17162:54;17235:12;;;45854:245;46106:407;46297:2;46311:47;;;17486:2;46282:18;;;67002:19;17522:34;67042:14;;;17502:55;-1:-1;;;17577:12;;;17570:30;17619:12;;;46268:245;46520:407;46711:2;46725:47;;;17870:2;46696:18;;;67002:19;-1:-1;;;67042:14;;;17886:37;17942:12;;;46682:245;46934:407;47125:2;47139:47;;;18193:2;47110:18;;;67002:19;18229:29;67042:14;;;18209:50;18278:12;;;47096:245;47348:407;47539:2;47553:47;;;18529:2;47524:18;;;67002:19;18565:26;67042:14;;;18545:47;18611:12;;;47510:245;47762:407;47953:2;47967:47;;;18862:2;47938:18;;;67002:19;-1:-1;;;67042:14;;;18878:41;18938:12;;;47924:245;48176:407;48367:2;48381:47;;;48352:18;;;67002:19;19225:34;67042:14;;;19205:55;19279:12;;;48338:245;48590:407;48781:2;48795:47;;;19530:2;48766:18;;;67002:19;19566:34;67042:14;;;19546:55;-1:-1;;;19621:12;;;19614:31;19664:12;;;48752:245;49004:407;49195:2;49209:47;;;19915:2;49180:18;;;67002:19;-1:-1;;;67042:14;;;19931:42;19992:12;;;49166:245;49418:407;49609:2;49623:47;;;20243:2;49594:18;;;67002:19;-1:-1;;;67042:14;;;20259:35;20313:12;;;49580:245;49832:407;50023:2;50037:47;;;20564:2;50008:18;;;67002:19;-1:-1;;;67042:14;;;20580:42;20641:12;;;49994:245;50246:407;50437:2;50451:47;;;20892:2;50422:18;;;67002:19;-1:-1;;;67042:14;;;20908:39;20966:12;;;50408:245;50660:407;50851:2;50865:47;;;21217:2;50836:18;;;67002:19;-1:-1;;;67042:14;;;21233:40;21292:12;;;50822:245;51074:407;51265:2;51279:47;;;21543:2;51250:18;;;67002:19;21579:33;67042:14;;;21559:54;21632:12;;;51236:245;51488:407;51679:2;51693:47;;;21883:2;51664:18;;;67002:19;21919:34;67042:14;;;21899:55;-1:-1;;;21974:12;;;21967:25;22011:12;;;51650:245;51902:407;52093:2;52107:47;;;22262:2;52078:18;;;67002:19;-1:-1;;;67042:14;;;22278:45;22342:12;;;52064:245;52316:407;52507:2;52521:47;;;22593:2;52492:18;;;67002:19;-1:-1;;;67042:14;;;22609:39;22667:12;;;52478:245;52730:407;52921:2;52935:47;;;52906:18;;;67002:19;22954:34;67042:14;;;22934:55;23008:12;;;52892:245;53144:407;53335:2;53349:47;;;23259:2;53320:18;;;67002:19;23295:34;67042:14;;;23275:55;-1:-1;;;23350:12;;;23343:38;23400:12;;;53306:245;53558:407;53749:2;53763:47;;;23651:2;53734:18;;;67002:19;-1:-1;;;67042:14;;;23667:45;23731:12;;;53720:245;53972:407;54163:2;54177:47;;;23982:2;54148:18;;;67002:19;-1:-1;;;67042:14;;;23998:45;24062:12;;;54134:245;54386:407;54577:2;54591:47;;;24313:2;54562:18;;;67002:19;-1:-1;;;67042:14;;;24329:45;24393:12;;;54548:245;54800:407;54991:2;55005:47;;;24644:2;54976:18;;;67002:19;24680:27;67042:14;;;24660:48;24727:12;;;54962:245;55214:407;55405:2;55419:47;;;24978:2;55390:18;;;67002:19;25014:31;67042:14;;;24994:52;25065:12;;;55376:245;55628:407;55819:2;55833:47;;;25316:2;55804:18;;;67002:19;-1:-1;;;67042:14;;;25332:42;25393:12;;;55790:245;56042:407;56233:2;56247:47;;;25949:2;56218:18;;;67002:19;-1:-1;;;67042:14;;;25965:45;26029:12;;;56204:245;56456:407;56647:2;56661:47;;;26280:2;56632:18;;;67002:19;26316:25;67042:14;;;26296:46;26361:12;;;56618:245;56870:407;57061:2;57075:47;;;26612:2;57046:18;;;67002:19;-1:-1;;;67042:14;;;26628:42;26689:12;;;57032:245;57284:407;57475:2;57489:47;;;26940:2;57460:18;;;67002:19;-1:-1;;;67042:14;;;26956:45;27020:12;;;57446:245;57698:407;57889:2;57903:47;;;27271:2;57874:18;;;67002:19;27307:33;67042:14;;;27287:54;27360:12;;;57860:245;58112:407;58303:2;58317:47;;;27611:2;58288:18;;;67002:19;27647:34;67042:14;;;27627:55;-1:-1;;;27702:12;;;27695:29;27743:12;;;58274:245;58526:407;58717:2;58731:47;;;27994:2;58702:18;;;67002:19;28030:34;67042:14;;;28010:55;-1:-1;;;28085:12;;;28078:34;28131:12;;;58688:245;58940:407;59131:2;59145:47;;;28382:2;59116:18;;;67002:19;-1:-1;;;67042:14;;;28398:45;28462:12;;;59102:245;59354:407;59545:2;59559:47;;;28713:2;59530:18;;;67002:19;28749:26;67042:14;;;28729:47;28795:12;;;59516:245;59768:407;59959:2;59973:47;;;29046:2;59944:18;;;67002:19;29082:29;67042:14;;;29062:50;29131:12;;;59930:245;60182:407;60373:2;60387:47;;;29382:2;60358:18;;;67002:19;29418:34;67042:14;;;29398:55;-1:-1;;;29473:12;;;29466:31;29516:12;;;60344:245;60596:407;60787:2;60801:47;;;29767:2;60772:18;;;67002:19;-1:-1;;;67042:14;;;29783:34;29836:12;;;60758:245;61010:407;61201:2;61215:47;;;30087:2;61186:18;;;67002:19;30123:33;67042:14;;;30103:54;30176:12;;;61172:245;61424:407;61615:2;61629:47;;;30427:2;61600:18;;;67002:19;30463:26;67042:14;;;30443:47;30509:12;;;61586:245;61838:407;62029:2;62043:47;;;30760:2;62014:18;;;67002:19;30796:29;67042:14;;;30776:50;30845:12;;;62000:245;62252:407;62443:2;62457:47;;;31096:2;62428:18;;;67002:19;-1:-1;;;67042:14;;;31112:44;31175:12;;;62414:245;62666:407;62857:2;62871:47;;;31426:2;62842:18;;;67002:19;31462:33;67042:14;;;31442:54;31515:12;;;62828:245;63080:342;63262:3;63247:19;;67505:2;67496:12;;31897:63;63251:9;67470:39;67496:12;31874:16;67470:39;;;31897:63;;;2584:20;67505:2;32140:14;;34625:37;32232:48;32274:4;32263:16;;32267:5;32232:48;;;32286:59;32274:4;32334:3;32330:14;32316:12;32286:59;;;;32409:50;32453:4;32446:5;32442:16;32435:5;32409:50;;;32465:63;32453:4;32517:3;32513:14;32499:12;32465:63;;;;32592:50;32636:4;32629:5;32625:16;32618:5;32592:50;;;32648:63;32636:4;32700:3;32696:14;32682:12;32648:63;;;;32772:49;32815:4;32808:5;32804:16;32797:5;32772:49;;;32827:61;32815:4;32877:3;32873:14;32859:12;32827:61;;;;32955:48;32997:4;32990:5;32986:16;32979:5;32955:48;;;33009:59;32997:4;33057:3;33053:14;33039:12;33009:59;;;;33135:48;33177:4;33170:5;33166:16;33159:5;33135:48;;;33189:59;33177:4;33237:3;33233:14;33219:12;33189:59;;;-1:-1;33360:6;33349:18;;;2584:20;33422:16;;;34625:37;33551:6;33540:18;;;2584:20;33613:16;;;34625:37;33741:6;33697:52;33730:18;;;33353:5;33697:52;;;33755:65;33741:6;33807:3;33803:16;33789:12;33755:65;;;-1:-1;;33930:6;33919:18;;;2584:20;33992:16;;;34625:37;34119:6;34078:49;34108:18;;;33923:5;34078:49;;;34133:59;34119:6;34179:3;34175:16;34161:12;34133:59;;;;;63233:189;;;;;63429:213;34625:37;;;63547:2;63532:18;;63518:124;63649:324;34625:37;;;-1:-1;;;;;68748:54;63959:2;63944:18;;11856:45;63795:2;63780:18;;63766:207;63980:324;34625:37;;;64290:2;64275:18;;34625:37;64126:2;64111:18;;64097:207;64311:435;34625:37;;;64649:2;64634:18;;34625:37;;;;64732:2;64717:18;;34625:37;64485:2;64470:18;;64456:290;64753:547;34625:37;;;65120:2;65105:18;;34625:37;;;;65203:2;65188:18;;34625:37;65286:2;65271:18;;34625:37;64955:3;64940:19;;64926:374;65307:256;65369:2;65363:9;65395:17;;;65470:18;65455:34;;65491:22;;;65452:62;65449:2;;;65527:1;;65517:12;65449:2;65369;65536:22;65347:216;;-1:-1;65347:216;65570:304;;65729:18;65721:6;65718:30;65715:2;;;-1:-1;;65751:12;65715:2;-1:-1;65796:4;65784:17;;;65849:15;;65652:222;67396:119;;85:6;72:20;97:33;124:5;97:33;;67524:113;;1261:6;1248:20;1273:30;1297:5;1273:30;;67646:115;;1977:6;1964:20;71393:5;68665:1;68654:20;71370:5;71367:33;71357:2;;-1:-1;;71404:12;67770:117;;2461:6;2448:20;2473:32;2499:5;2473:32;;68024:115;;2873:6;2860:20;2885:31;2910:5;2885:31;;70547:268;70612:1;70619:101;70633:6;70630:1;70627:13;70619:101;;;70700:11;;;70694:18;70681:11;;;70674:39;70655:2;70648:10;70619:101;;;70735:6;70732:1;70729:13;70726:2;;;-1:-1;;70612:1;70782:16;;70775:27;70596:219;70928:117;-1:-1;;;;;68748:54;;70987:35;;70977:2;;71036:1;;71026:12;71192:111;71273:5;68417:13;68410:21;71251:5;71248:32;71238:2;;71294:1;;71284:12;71554:115;68886:8;71639:5;68875:20;71615:5;71612:34;71602:2;;71660:1;;71650:12;71800:113;69057:4;71883:5;69046:16;71860:5;71857:33;71847:2;;71904:1;;71894:12

Swarm Source

ipfs://a875bfc3cb8e3e0b79f24cb2c8b555e4c5407231c2c191adc930cba9b0968518

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.