ETH Price: $2,994.74 (+4.66%)
Gas: 2 Gwei

Token

Bored Bunny (BUNNY)
 

Overview

Max Total Supply

4,999 BUNNY

Holders

3,670

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 BUNNY
0xdb4e4b3fd41ebd2c89940c803e8a9e82c10331fa
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Bored Bunny is a collection of 4999 unique 3D well-designed Bunnies.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BoredBunny

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-04
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.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/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @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 making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.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 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.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.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.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 IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    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));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    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'
        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) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _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. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/finance/PaymentSplitter.sol


// OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol)

pragma solidity ^0.8.0;




/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 *
 * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
 * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
 * to run tests before sending real value to this contract.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    mapping(IERC20 => uint256) private _erc20TotalReleased;
    mapping(IERC20 => mapping(address => uint256)) private _erc20Released;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
     * contract.
     */
    function totalReleased(IERC20 token) public view returns (uint256) {
        return _erc20TotalReleased[token];
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
     * IERC20 contract.
     */
    function released(IERC20 token, address account) public view returns (uint256) {
        return _erc20Released[token][account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + totalReleased();
        uint256 payment = _pendingPayment(account, totalReceived, released(account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] += payment;
        _totalReleased += payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
     * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
     * contract.
     */
    function release(IERC20 token, address account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
        uint256 payment = _pendingPayment(account, totalReceived, released(token, account));

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _erc20Released[token][account] += payment;
        _erc20TotalReleased[token] += payment;

        SafeERC20.safeTransfer(token, account, payment);
        emit ERC20PaymentReleased(token, account, payment);
    }

    /**
     * @dev internal logic for computing the pending payment of an `account` given the token historical balances and
     * already released amounts.
     */
    function _pendingPayment(
        address account,
        uint256 totalReceived,
        uint256 alreadyReleased
    ) private view returns (uint256) {
        return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.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/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

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

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/BoredBunny.sol



pragma solidity ^0.8.4;






contract BoredBunny is
    ERC721Enumerable,
    Ownable,
    PaymentSplitter,
    ReentrancyGuard
{
    using Strings for uint256;
    using Counters for Counters.Counter;

    uint256 public maxSupply = 4999;
    uint256 public giftSupply = 23;
    uint256 public totalNFT;
    uint256 public totalMint;

    string public baseURI;
    string public notRevealedUri;
    string public baseExtension = ".json";

    bool public isBurnEnabled = false;
    bool public paused = false;
    bool public revealed = false;
    bool public presaleM = false;
    bool public publicM = false;

    uint256 presaleAmountLimit = 2;
    mapping(address => uint256) public _presaleClaimed;

    uint256 _price = 400000000000000000; //0.4 ETH

    Counters.Counter private _tokenIds;

    uint256[] private _teamShares = [25, 15, 20, 15, 15, 10];
    address[] private _team = [
        0x27688581c2030B882170b981A1e5878646726BBe,
        0xf2647e7B6ca208AD764e7Ce8A46Df64D4149cEb7,
        0x5BE12124a1c0ddB35Ce6c74C08914604A32379A7,
        0x750256AbdA0577040E37b1E10C7F24CcaAD1fbde,
        0xeE6752Ec7a4017229D7757154563062849a1DFE1,
        0xa4444624749b52cB5a7d798F318d58A5B21c2D0f
    ];

    constructor()
        ERC721("Bored Bunny", "BUNNY")
        PaymentSplitter(_team, _teamShares)
        ReentrancyGuard()
    {}

    function changePauseState() public onlyOwner {
        paused = !paused;
    }

    function changePresaleState() public onlyOwner {
        presaleM = !presaleM;
    }

    function changePublicState() public onlyOwner {
        publicM = !publicM;
    }

    function setBaseURI(string calldata _tokenBaseURI) external onlyOwner {
        baseURI = _tokenBaseURI;
    }

    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner {
        isBurnEnabled = _isBurnEnabled;
    }



    function giftMint(address[] calldata _addresses) external onlyOwner {
        require(
            totalNFT + _addresses.length <= maxSupply,
            "Bored Bunny: max total supply exceeded"
        );

        uint256 _newItemId;
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Bored Bunny: recepient is the null address"
            );
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(_addresses[ind], _newItemId);
            totalNFT = totalNFT + 1;
        }
    }

    function presaleMint(uint256 _amount) external payable nonReentrant{
        require(presaleM, "Bored Bonny: Presale is OFF");
        require(!paused, "Bored Bunny: contract is paused");
        require(
            _amount <= presaleAmountLimit,
            "Bored Bunny: You can't mint so much tokens"
        );
        require(
            _presaleClaimed[msg.sender] + _amount <= presaleAmountLimit,
            "Bored Bunny: You can't mint so much tokens"
        );

        require(
            totalMint + _amount <= maxSupply - giftSupply,
            "Bored Bunny: max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Bored Bunny: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _presaleClaimed[msg.sender] = _presaleClaimed[msg.sender] + 1;
            totalNFT = totalNFT + 1;
            totalMint = totalMint + 1;
            
        }
    }

    function publicMint(uint256 _amount) external payable nonReentrant{
        require(publicM, "Bored Bonny: Public is OFF");
        require(_amount > 0, "Bored Bunny: zero amount");
        require(
            totalMint + _amount <= maxSupply - giftSupply,
            "Bored Bunny: max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Bored Bunny: Ether value sent is not correct"
        );
        require(!paused, "Bored Bunny: contract is paused");
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            totalNFT = totalNFT + 1;
            totalMint = totalMint +1;
        }
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function changeTotalSupply(uint256 _newSupply) public onlyOwner {
        maxSupply = _newSupply;
    }

    function changeGiftSupply(uint256 _newGiftSupply) public onlyOwner {
        giftSupply = _newGiftSupply;
    }

    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "Bored Bunny: burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "Bored Bunny: burn caller is not owner nor approved"
        );
        _burn(tokenId);
        totalNFT = totalNFT - 1;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newGiftSupply","type":"uint256"}],"name":"changeGiftSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changePublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"changeTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"giftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

611387601355601760145560c06040526005608081905264173539b7b760d91b60a09081526200003391601991906200062b565b50601a805464ffffffffff191690556002601b5567058d15e176280000601d556040805160c08101825260198152600f60208201819052601492820192909252606081018290526080810191909152600a60a08201526200009990601f906006620006ba565b506040805160c0810182527327688581c2030b882170b981a1e5878646726bbe815273f2647e7b6ca208ad764e7ce8a46df64d4149ceb7602080830191909152735be12124a1c0ddb35ce6c74c08914604a32379a79282019290925273750256abda0577040e37b1e10c7f24ccaad1fbde606082015273ee6752ec7a4017229d7757154563062849a1dfe1608082015273a4444624749b52cb5a7d798f318d58a5b21c2d0f60a08201526200015191906006620006fd565b503480156200015f57600080fd5b50602080546040805182840281018401909152818152919082820182828015620001b357602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000194575b5050505050601f8054806020026020016040519081016040528092919081815260200182805480156200020657602002820191906000526020600020905b815481526020019060010190808311620001f1575b5050604080518082018252600b81526a426f7265642042756e6e7960a81b60208083019182528351808501909452600584526442554e4e5960d81b9084015281519195509193506200025d9250600091906200062b565b508051620002739060019060208401906200062b565b505050620002906200028a620003e760201b60201c565b620003eb565b8051825114620003025760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620003555760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f207061796565730000000000006044820152606401620002f9565b60005b8251811015620003d957620003c48382815181106200038757634e487b7160e01b600052603260045260246000fd5b6020026020010151838381518110620003b057634e487b7160e01b600052603260045260246000fd5b60200260200101516200043d60201b60201c565b80620003d081620007c4565b91505062000358565b5050600160125550620007f8565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004aa5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b6064820152608401620002f9565b60008111620004fc5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a207368617265732061726520300000006044820152606401620002f9565b6001600160a01b0382166000908152600d602052604090205415620005785760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b6064820152608401620002f9565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b54620005e29082906200076c565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054620006399062000787565b90600052602060002090601f0160209004810192826200065d5760008555620006a8565b82601f106200067857805160ff1916838001178555620006a8565b82800160010185558215620006a8579182015b82811115620006a85782518255916020019190600101906200068b565b50620006b692915062000755565b5090565b828054828255906000526020600020908101928215620006a8579160200282015b82811115620006a8578251829060ff16905591602001919060010190620006db565b828054828255906000526020600020908101928215620006a8579160200282015b82811115620006a857825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200071e565b5b80821115620006b6576000815560010162000756565b60008219821115620007825762000782620007e2565b500190565b600181811c908216806200079c57607f821691505b60208210811415620007be57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620007db57620007db620007e2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6138e280620008086000396000f3fe6080604052600436106103535760003560e01c806360e5bb85116101c6578063a5fd7bec116100f7578063d5abeb0111610095578063e33b7de31161006f578063e33b7de3146109f4578063e985e9c514610a09578063f2c4ce1e14610a52578063f2fde38b14610a7257600080fd5b8063d5abeb0114610988578063d79779b21461099e578063da3ef23f146109d457600080fd5b8063c87b56dd116100d1578063c87b56dd1461090a578063c9b298f11461092a578063ce7c2ac21461093d578063d082a3f71461097357600080fd5b8063a5fd7bec146108b5578063b88d4fde146108d5578063c6682862146108f557600080fd5b80638cc4de19116101645780639852595c1161013e5780639852595c14610828578063a22cb4651461085e578063a45063c01461087e578063a475b5dd146108a057600080fd5b80638cc4de19146107c85780638da5cb5b146107f557806395d89b411461081357600080fd5b80636e0e5b19116101a05780636e0e5b191461075357806370a0823114610773578063715018a6146107935780638b83209b146107a857600080fd5b806360e5bb85146107095780636352211e1461071e5780636c0360eb1461073e57600080fd5b80632db11544116102a057806348b750441161023e57806352e973261161021857806352e973261461069457806355f804b3146106b457806359a7715a146106d45780635c975abb146106ea57600080fd5b806348b75044146106345780634f6ccce714610654578063518302271461067457600080fd5b8063406072a91161027a578063406072a91461059957806342842e0e146105df57806342966c68146105ff57806346e79ffc1461061f57600080fd5b80632db11544146105515780632f745c59146105645780633a98ef391461058457600080fd5b8063095ea7b31161030d57806318160ddd116102e757806318160ddd146104e657806319165587146104fb5780632254b0151461051b57806323b872dd1461053157600080fd5b8063095ea7b31461048357806310ed7621146104a55780631798d58b146104c557600080fd5b8062456379146103a157806301ffc9a7146103ca57806306fdde03146103fa57806307ebec271461041c578063081812fc14610436578063081c8c441461046e57600080fd5b3661039c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ad57600080fd5b506103b760155481565b6040519081526020015b60405180910390f35b3480156103d657600080fd5b506103ea6103e53660046132c5565b610a92565b60405190151581526020016103c1565b34801561040657600080fd5b5061040f610abd565b6040516103c19190613527565b34801561042857600080fd5b50601a546103ea9060ff1681565b34801561044257600080fd5b506104566104513660046133b0565b610b4f565b6040516001600160a01b0390911681526020016103c1565b34801561047a57600080fd5b5061040f610be9565b34801561048f57600080fd5b506104a361049e3660046131f2565b610c77565b005b3480156104b157600080fd5b506104a36104c03660046133b0565b610d8d565b3480156104d157600080fd5b50601a546103ea906301000000900460ff1681565b3480156104f257600080fd5b506008546103b7565b34801561050757600080fd5b506104a36105163660046130b4565b610dbc565b34801561052757600080fd5b506103b760145481565b34801561053d57600080fd5b506104a361054c366004613108565b610eea565b6104a361055f3660046133b0565b610f1b565b34801561057057600080fd5b506103b761057f3660046131f2565b611175565b34801561059057600080fd5b50600b546103b7565b3480156105a557600080fd5b506103b76105b43660046132fd565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b3480156105eb57600080fd5b506104a36105fa366004613108565b61120b565b34801561060b57600080fd5b506104a361061a3660046133b0565b611226565b34801561062b57600080fd5b506104a3611307565b34801561064057600080fd5b506104a361064f3660046132fd565b61134e565b34801561066057600080fd5b506103b761066f3660046133b0565b611536565b34801561068057600080fd5b50601a546103ea9062010000900460ff1681565b3480156106a057600080fd5b506104a36106af3660046133b0565b6115d7565b3480156106c057600080fd5b506104a36106cf36600461330f565b611606565b3480156106e057600080fd5b506103b760165481565b3480156106f657600080fd5b50601a546103ea90610100900460ff1681565b34801561071557600080fd5b506104a361163c565b34801561072a57600080fd5b506104566107393660046133b0565b611689565b34801561074a57600080fd5b5061040f611700565b34801561075f57600080fd5b506104a361076e36600461328d565b61170d565b34801561077f57600080fd5b506103b761078e3660046130b4565b61174a565b34801561079f57600080fd5b506104a36117d1565b3480156107b457600080fd5b506104566107c33660046133b0565b611807565b3480156107d457600080fd5b506103b76107e33660046130b4565b601c6020526000908152604090205481565b34801561080157600080fd5b50600a546001600160a01b0316610456565b34801561081f57600080fd5b5061040f611845565b34801561083457600080fd5b506103b76108433660046130b4565b6001600160a01b03166000908152600e602052604090205490565b34801561086a57600080fd5b506104a36108793660046131c5565b611854565b34801561088a57600080fd5b50601a546103ea90640100000000900460ff1681565b3480156108ac57600080fd5b506104a3611863565b3480156108c157600080fd5b506104a36108d036600461321d565b6118a0565b3480156108e157600080fd5b506104a36108f0366004613148565b611a5f565b34801561090157600080fd5b5061040f611a91565b34801561091657600080fd5b5061040f6109253660046133b0565b611a9e565b6104a36109383660046133b0565b611c1e565b34801561094957600080fd5b506103b76109583660046130b4565b6001600160a01b03166000908152600d602052604090205490565b34801561097f57600080fd5b506104a3611ea6565b34801561099457600080fd5b506103b760135481565b3480156109aa57600080fd5b506103b76109b93660046130b4565b6001600160a01b031660009081526010602052604090205490565b3480156109e057600080fd5b506104a36109ef36600461336a565b611ef1565b348015610a0057600080fd5b50600c546103b7565b348015610a1557600080fd5b506103ea610a243660046130d0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a5e57600080fd5b506104a3610a6d36600461336a565b611f2e565b348015610a7e57600080fd5b506104a3610a8d3660046130b4565b611f6b565b60006001600160e01b0319821663780e9d6360e01b1480610ab75750610ab782612006565b92915050565b606060008054610acc906137c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610af8906137c7565b8015610b455780601f10610b1a57610100808354040283529160200191610b45565b820191906000526020600020905b815481529060010190602001808311610b2857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bcd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60188054610bf6906137c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c22906137c7565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b505050505081565b6000610c8282611689565b9050806001600160a01b0316836001600160a01b03161415610cf05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bc4565b336001600160a01b0382161480610d0c5750610d0c8133610a24565b610d7e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bc4565b610d888383612056565b505050565b600a546001600160a01b03163314610db75760405162461bcd60e51b8152600401610bc490613669565b601455565b6001600160a01b0381166000908152600d6020526040902054610df15760405162461bcd60e51b8152600401610bc49061358c565b6000610dfc600c5490565b610e069047613739565b90506000610e338383610e2e866001600160a01b03166000908152600e602052604090205490565b6120c4565b905080610e525760405162461bcd60e51b8152600401610bc49061361e565b6001600160a01b0383166000908152600e602052604081208054839290610e7a908490613739565b9250508190555080600c6000828254610e939190613739565b90915550610ea39050838261210a565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ef43382612223565b610f105760405162461bcd60e51b8152600401610bc49061369e565b610d88838383612319565b60026012541415610f6e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc4565b6002601255601a54640100000000900460ff16610fcd5760405162461bcd60e51b815260206004820152601a60248201527f426f72656420426f6e6e793a205075626c6963206973204f46460000000000006044820152606401610bc4565b6000811161101d5760405162461bcd60e51b815260206004820152601860248201527f426f7265642042756e6e793a207a65726f20616d6f756e7400000000000000006044820152606401610bc4565b60145460135461102d9190613784565b8160165461103b9190613739565b11156110895760405162461bcd60e51b815260206004820181905260248201527f426f7265642042756e6e793a206d617820737570706c792065786365656465646044820152606401610bc4565b3481601d546110989190613765565b11156110b65760405162461bcd60e51b8152600401610bc4906135d2565b601a54610100900460ff161561110e5760405162461bcd60e51b815260206004820152601f60248201527f426f7265642042756e6e793a20636f6e747261637420697320706175736564006044820152606401610bc4565b6000805b8281101561116b57611128601e80546001019055565b601e54915061113733836124c4565b601554611145906001613739565b601555601654611156906001613739565b6016558061116381613802565b915050611112565b5050600160125550565b60006111808361174a565b82106111e25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bc4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d8883838360405180602001604052806000815250611a5f565b601a5460ff166112785760405162461bcd60e51b815260206004820152601d60248201527f426f7265642042756e6e793a206275726e696e672064697361626c65640000006044820152606401610bc4565b6112823382612223565b6112e95760405162461bcd60e51b815260206004820152603260248201527f426f7265642042756e6e793a206275726e2063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bc4565b6112f2816124de565b60016015546113019190613784565b60155550565b600a546001600160a01b031633146113315760405162461bcd60e51b8152600401610bc490613669565b601a805461ff001981166101009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546113835760405162461bcd60e51b8152600401610bc49061358c565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156113db57600080fd5b505afa1580156113ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141391906133c8565b61141d9190613739565b905060006114568383610e2e87876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806114755760405162461bcd60e51b8152600401610bc49061361e565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906114ac908490613739565b90915550506001600160a01b038416600090815260106020526040812080548392906114d9908490613739565b909155506114ea9050848483612585565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061154160085490565b82106115a45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bc4565b600882815481106115c557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146116015760405162461bcd60e51b8152600401610bc490613669565b601355565b600a546001600160a01b031633146116305760405162461bcd60e51b8152600401610bc490613669565b610d8860178383612f31565b600a546001600160a01b031633146116665760405162461bcd60e51b8152600401610bc490613669565b601a805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610ab75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bc4565b60178054610bf6906137c7565b600a546001600160a01b031633146117375760405162461bcd60e51b8152600401610bc490613669565b601a805460ff1916911515919091179055565b60006001600160a01b0382166117b55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bc4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117fb5760405162461bcd60e51b8152600401610bc490613669565b61180560006125d7565b565b6000600f828154811061182a57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610acc906137c7565b61185f338383612629565b5050565b600a546001600160a01b0316331461188d5760405162461bcd60e51b8152600401610bc490613669565b601a805462ff0000191662010000179055565b600a546001600160a01b031633146118ca5760405162461bcd60e51b8152600401610bc490613669565b6013546015546118db908390613739565b11156119385760405162461bcd60e51b815260206004820152602660248201527f426f7265642042756e6e793a206d617820746f74616c20737570706c7920657860448201526518d95959195960d21b6064820152608401610bc4565b6000805b82811015611a5957600084848381811061196657634e487b7160e01b600052603260045260246000fd5b905060200201602081019061197b91906130b4565b6001600160a01b031614156119e55760405162461bcd60e51b815260206004820152602a60248201527f426f7265642042756e6e793a20726563657069656e7420697320746865206e756044820152696c6c206164647265737360b01b6064820152608401610bc4565b6119f3601e80546001019055565b601e549150611a36848483818110611a1b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a3091906130b4565b836124c4565b601554611a44906001613739565b60155580611a5181613802565b91505061193c565b50505050565b611a693383612223565b611a855760405162461bcd60e51b8152600401610bc49061369e565b611a59848484846126f8565b60198054610bf6906137c7565b6000818152600260205260409020546060906001600160a01b0316611b1d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bc4565b601a5462010000900460ff16611bbf5760188054611b3a906137c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b66906137c7565b8015611bb35780601f10611b8857610100808354040283529160200191611bb3565b820191906000526020600020905b815481529060010190602001808311611b9657829003601f168201915b50505050509050919050565b6000611bc961272b565b90506000815111611be95760405180602001604052806000815250611c17565b80611bf38461273a565b6019604051602001611c0793929190613428565b6040516020818303038152906040525b9392505050565b60026012541415611c715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc4565b6002601255601a546301000000900460ff16611ccf5760405162461bcd60e51b815260206004820152601b60248201527f426f72656420426f6e6e793a2050726573616c65206973204f464600000000006044820152606401610bc4565b601a54610100900460ff1615611d275760405162461bcd60e51b815260206004820152601f60248201527f426f7265642042756e6e793a20636f6e747261637420697320706175736564006044820152606401610bc4565b601b54811115611d495760405162461bcd60e51b8152600401610bc4906136ef565b601b54336000908152601c6020526040902054611d67908390613739565b1115611d855760405162461bcd60e51b8152600401610bc4906136ef565b601454601354611d959190613784565b81601654611da39190613739565b1115611df15760405162461bcd60e51b815260206004820181905260248201527f426f7265642042756e6e793a206d617820737570706c792065786365656465646044820152606401610bc4565b3481601d54611e009190613765565b1115611e1e5760405162461bcd60e51b8152600401610bc4906135d2565b6000805b8281101561116b57611e38601e80546001019055565b601e549150611e4733836124c4565b336000908152601c6020526040902054611e62906001613739565b336000908152601c6020526040902055601554611e80906001613739565b601555601654611e91906001613739565b60165580611e9e81613802565b915050611e22565b600a546001600160a01b03163314611ed05760405162461bcd60e51b8152600401610bc490613669565b601a805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b03163314611f1b5760405162461bcd60e51b8152600401610bc490613669565b805161185f906019906020840190612fb5565b600a546001600160a01b03163314611f585760405162461bcd60e51b8152600401610bc490613669565b805161185f906018906020840190612fb5565b600a546001600160a01b03163314611f955760405162461bcd60e51b8152600401610bc490613669565b6001600160a01b038116611ffa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc4565b612003816125d7565b50565b60006001600160e01b031982166380ac58cd60e01b148061203757506001600160e01b03198216635b5e139f60e01b145b80610ab757506301ffc9a760e01b6001600160e01b0319831614610ab7565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061208b82611689565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916120ee9086613765565b6120f89190613751565b6121029190613784565b949350505050565b8047101561215a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121a7576040519150601f19603f3d011682016040523d82523d6000602084013e6121ac565b606091505b5050905080610d885760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc4565b6000818152600260205260408120546001600160a01b031661229c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bc4565b60006122a783611689565b9050806001600160a01b0316846001600160a01b031614806122e25750836001600160a01b03166122d784610b4f565b6001600160a01b0316145b8061210257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b031661232c82611689565b6001600160a01b0316146123945760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bc4565b6001600160a01b0382166123f65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc4565b612401838383612854565b61240c600082612056565b6001600160a01b0383166000908152600360205260408120805460019290612435908490613784565b90915550506001600160a01b0382166000908152600360205260408120805460019290612463908490613739565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61185f82826040518060200160405280600081525061290c565b60006124e982611689565b90506124f781600084612854565b612502600083612056565b6001600160a01b038116600090815260036020526040812080546001929061252b908490613784565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d8890849061293f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561268b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bc4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612703848484612319565b61270f84848484612a11565b611a595760405162461bcd60e51b8152600401610bc49061353a565b606060178054610acc906137c7565b60608161275e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612788578061277281613802565b91506127819050600a83613751565b9150612762565b60008167ffffffffffffffff8111156127b157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127db576020820181803683370190505b5090505b8415612102576127f0600183613784565b91506127fd600a8661381d565b612808906030613739565b60f81b81838151811061282b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061284d600a86613751565b94506127df565b6001600160a01b0383166128af576128aa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6128d2565b816001600160a01b0316836001600160a01b0316146128d2576128d28382612b1e565b6001600160a01b0382166128e957610d8881612bbb565b826001600160a01b0316826001600160a01b031614610d8857610d888282612c94565b6129168383612cd8565b6129236000848484612a11565b610d885760405162461bcd60e51b8152600401610bc49061353a565b6000612994826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e269092919063ffffffff16565b805190915015610d8857808060200190518101906129b291906132a9565b610d885760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bc4565b60006001600160a01b0384163b15612b1357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a559033908990889088906004016134ea565b602060405180830381600087803b158015612a6f57600080fd5b505af1925050508015612a9f575060408051601f3d908101601f19168201909252612a9c918101906132e1565b60015b612af9573d808015612acd576040519150601f19603f3d011682016040523d82523d6000602084013e612ad2565b606091505b508051612af15760405162461bcd60e51b8152600401610bc49061353a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612102565b506001949350505050565b60006001612b2b8461174a565b612b359190613784565b600083815260076020526040902054909150808214612b88576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612bcd90600190613784565b60008381526009602052604081205460088054939450909284908110612c0357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612c3257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c7857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c9f8361174a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612d2e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bc4565b6000818152600260205260409020546001600160a01b031615612d935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bc4565b612d9f60008383612854565b6001600160a01b0382166000908152600360205260408120805460019290612dc8908490613739565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060612102848460008585843b612e7f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc4565b600080866001600160a01b03168587604051612e9b919061340c565b60006040518083038185875af1925050503d8060008114612ed8576040519150601f19603f3d011682016040523d82523d6000602084013e612edd565b606091505b5091509150612eed828286612ef8565b979650505050505050565b60608315612f07575081611c17565b825115612f175782518084602001fd5b8160405162461bcd60e51b8152600401610bc49190613527565b828054612f3d906137c7565b90600052602060002090601f016020900481019282612f5f5760008555612fa5565b82601f10612f785782800160ff19823516178555612fa5565b82800160010185558215612fa5579182015b82811115612fa5578235825591602001919060010190612f8a565b50612fb1929150613029565b5090565b828054612fc1906137c7565b90600052602060002090601f016020900481019282612fe35760008555612fa5565b82601f10612ffc57805160ff1916838001178555612fa5565b82800160010185558215612fa5579182015b82811115612fa557825182559160200191906001019061300e565b5b80821115612fb1576000815560010161302a565b600067ffffffffffffffff808411156130595761305961385d565b604051601f8501601f19908116603f011681019082821181831017156130815761308161385d565b8160405280935085815286868601111561309a57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156130c5578081fd5b8135611c1781613873565b600080604083850312156130e2578081fd5b82356130ed81613873565b915060208301356130fd81613873565b809150509250929050565b60008060006060848603121561311c578081fd5b833561312781613873565b9250602084013561313781613873565b929592945050506040919091013590565b6000806000806080858703121561315d578081fd5b843561316881613873565b9350602085013561317881613873565b925060408501359150606085013567ffffffffffffffff81111561319a578182fd5b8501601f810187136131aa578182fd5b6131b98782356020840161303e565b91505092959194509250565b600080604083850312156131d7578182fd5b82356131e281613873565b915060208301356130fd81613888565b60008060408385031215613204578182fd5b823561320f81613873565b946020939093013593505050565b6000806020838503121561322f578182fd5b823567ffffffffffffffff80821115613246578384fd5b818501915085601f830112613259578384fd5b813581811115613267578485fd5b8660208260051b850101111561327b578485fd5b60209290920196919550909350505050565b60006020828403121561329e578081fd5b8135611c1781613888565b6000602082840312156132ba578081fd5b8151611c1781613888565b6000602082840312156132d6578081fd5b8135611c1781613896565b6000602082840312156132f2578081fd5b8151611c1781613896565b600080604083850312156130e2578182fd5b60008060208385031215613321578182fd5b823567ffffffffffffffff80821115613338578384fd5b818501915085601f83011261334b578384fd5b813581811115613359578485fd5b86602082850101111561327b578485fd5b60006020828403121561337b578081fd5b813567ffffffffffffffff811115613391578182fd5b8201601f810184136133a1578182fd5b6121028482356020840161303e565b6000602082840312156133c1578081fd5b5035919050565b6000602082840312156133d9578081fd5b5051919050565b600081518084526133f881602086016020860161379b565b601f01601f19169290920160200192915050565b6000825161341e81846020870161379b565b9190910192915050565b60008451602061343b8285838a0161379b565b85519184019161344e8184848a0161379b565b85549201918390600181811c908083168061346a57607f831692505b85831081141561348857634e487b7160e01b88526022600452602488fd5b80801561349c57600181146134ad576134d9565b60ff198516885283880195506134d9565b60008b815260209020895b858110156134d15781548a8201529084019088016134b8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061351d908301846133e0565b9695505050505050565b602081526000611c1760208301846133e0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602c908201527f426f7265642042756e6e793a2045746865722076616c75652073656e7420697360408201526b081b9bdd0818dbdc9c9958dd60a21b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602a908201527f426f7265642042756e6e793a20596f752063616e2774206d696e7420736f206d60408201526975636820746f6b656e7360b01b606082015260800190565b6000821982111561374c5761374c613831565b500190565b60008261376057613760613847565b500490565b600081600019048311821515161561377f5761377f613831565b500290565b60008282101561379657613796613831565b500390565b60005b838110156137b657818101518382015260200161379e565b83811115611a595750506000910152565b600181811c908216806137db57607f821691505b602082108114156137fc57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561381657613816613831565b5060010190565b60008261382c5761382c613847565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461200357600080fd5b801515811461200357600080fd5b6001600160e01b03198116811461200357600080fdfea26469706673582212201a7ffe6a88c44e538938e9ceba2504a11e82c96e9cf6bdf74e7a734d8cf47ba964736f6c63430008040033

Deployed Bytecode

0x6080604052600436106103535760003560e01c806360e5bb85116101c6578063a5fd7bec116100f7578063d5abeb0111610095578063e33b7de31161006f578063e33b7de3146109f4578063e985e9c514610a09578063f2c4ce1e14610a52578063f2fde38b14610a7257600080fd5b8063d5abeb0114610988578063d79779b21461099e578063da3ef23f146109d457600080fd5b8063c87b56dd116100d1578063c87b56dd1461090a578063c9b298f11461092a578063ce7c2ac21461093d578063d082a3f71461097357600080fd5b8063a5fd7bec146108b5578063b88d4fde146108d5578063c6682862146108f557600080fd5b80638cc4de19116101645780639852595c1161013e5780639852595c14610828578063a22cb4651461085e578063a45063c01461087e578063a475b5dd146108a057600080fd5b80638cc4de19146107c85780638da5cb5b146107f557806395d89b411461081357600080fd5b80636e0e5b19116101a05780636e0e5b191461075357806370a0823114610773578063715018a6146107935780638b83209b146107a857600080fd5b806360e5bb85146107095780636352211e1461071e5780636c0360eb1461073e57600080fd5b80632db11544116102a057806348b750441161023e57806352e973261161021857806352e973261461069457806355f804b3146106b457806359a7715a146106d45780635c975abb146106ea57600080fd5b806348b75044146106345780634f6ccce714610654578063518302271461067457600080fd5b8063406072a91161027a578063406072a91461059957806342842e0e146105df57806342966c68146105ff57806346e79ffc1461061f57600080fd5b80632db11544146105515780632f745c59146105645780633a98ef391461058457600080fd5b8063095ea7b31161030d57806318160ddd116102e757806318160ddd146104e657806319165587146104fb5780632254b0151461051b57806323b872dd1461053157600080fd5b8063095ea7b31461048357806310ed7621146104a55780631798d58b146104c557600080fd5b8062456379146103a157806301ffc9a7146103ca57806306fdde03146103fa57806307ebec271461041c578063081812fc14610436578063081c8c441461046e57600080fd5b3661039c577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ad57600080fd5b506103b760155481565b6040519081526020015b60405180910390f35b3480156103d657600080fd5b506103ea6103e53660046132c5565b610a92565b60405190151581526020016103c1565b34801561040657600080fd5b5061040f610abd565b6040516103c19190613527565b34801561042857600080fd5b50601a546103ea9060ff1681565b34801561044257600080fd5b506104566104513660046133b0565b610b4f565b6040516001600160a01b0390911681526020016103c1565b34801561047a57600080fd5b5061040f610be9565b34801561048f57600080fd5b506104a361049e3660046131f2565b610c77565b005b3480156104b157600080fd5b506104a36104c03660046133b0565b610d8d565b3480156104d157600080fd5b50601a546103ea906301000000900460ff1681565b3480156104f257600080fd5b506008546103b7565b34801561050757600080fd5b506104a36105163660046130b4565b610dbc565b34801561052757600080fd5b506103b760145481565b34801561053d57600080fd5b506104a361054c366004613108565b610eea565b6104a361055f3660046133b0565b610f1b565b34801561057057600080fd5b506103b761057f3660046131f2565b611175565b34801561059057600080fd5b50600b546103b7565b3480156105a557600080fd5b506103b76105b43660046132fd565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b3480156105eb57600080fd5b506104a36105fa366004613108565b61120b565b34801561060b57600080fd5b506104a361061a3660046133b0565b611226565b34801561062b57600080fd5b506104a3611307565b34801561064057600080fd5b506104a361064f3660046132fd565b61134e565b34801561066057600080fd5b506103b761066f3660046133b0565b611536565b34801561068057600080fd5b50601a546103ea9062010000900460ff1681565b3480156106a057600080fd5b506104a36106af3660046133b0565b6115d7565b3480156106c057600080fd5b506104a36106cf36600461330f565b611606565b3480156106e057600080fd5b506103b760165481565b3480156106f657600080fd5b50601a546103ea90610100900460ff1681565b34801561071557600080fd5b506104a361163c565b34801561072a57600080fd5b506104566107393660046133b0565b611689565b34801561074a57600080fd5b5061040f611700565b34801561075f57600080fd5b506104a361076e36600461328d565b61170d565b34801561077f57600080fd5b506103b761078e3660046130b4565b61174a565b34801561079f57600080fd5b506104a36117d1565b3480156107b457600080fd5b506104566107c33660046133b0565b611807565b3480156107d457600080fd5b506103b76107e33660046130b4565b601c6020526000908152604090205481565b34801561080157600080fd5b50600a546001600160a01b0316610456565b34801561081f57600080fd5b5061040f611845565b34801561083457600080fd5b506103b76108433660046130b4565b6001600160a01b03166000908152600e602052604090205490565b34801561086a57600080fd5b506104a36108793660046131c5565b611854565b34801561088a57600080fd5b50601a546103ea90640100000000900460ff1681565b3480156108ac57600080fd5b506104a3611863565b3480156108c157600080fd5b506104a36108d036600461321d565b6118a0565b3480156108e157600080fd5b506104a36108f0366004613148565b611a5f565b34801561090157600080fd5b5061040f611a91565b34801561091657600080fd5b5061040f6109253660046133b0565b611a9e565b6104a36109383660046133b0565b611c1e565b34801561094957600080fd5b506103b76109583660046130b4565b6001600160a01b03166000908152600d602052604090205490565b34801561097f57600080fd5b506104a3611ea6565b34801561099457600080fd5b506103b760135481565b3480156109aa57600080fd5b506103b76109b93660046130b4565b6001600160a01b031660009081526010602052604090205490565b3480156109e057600080fd5b506104a36109ef36600461336a565b611ef1565b348015610a0057600080fd5b50600c546103b7565b348015610a1557600080fd5b506103ea610a243660046130d0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610a5e57600080fd5b506104a3610a6d36600461336a565b611f2e565b348015610a7e57600080fd5b506104a3610a8d3660046130b4565b611f6b565b60006001600160e01b0319821663780e9d6360e01b1480610ab75750610ab782612006565b92915050565b606060008054610acc906137c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610af8906137c7565b8015610b455780601f10610b1a57610100808354040283529160200191610b45565b820191906000526020600020905b815481529060010190602001808311610b2857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610bcd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60188054610bf6906137c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c22906137c7565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b505050505081565b6000610c8282611689565b9050806001600160a01b0316836001600160a01b03161415610cf05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bc4565b336001600160a01b0382161480610d0c5750610d0c8133610a24565b610d7e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bc4565b610d888383612056565b505050565b600a546001600160a01b03163314610db75760405162461bcd60e51b8152600401610bc490613669565b601455565b6001600160a01b0381166000908152600d6020526040902054610df15760405162461bcd60e51b8152600401610bc49061358c565b6000610dfc600c5490565b610e069047613739565b90506000610e338383610e2e866001600160a01b03166000908152600e602052604090205490565b6120c4565b905080610e525760405162461bcd60e51b8152600401610bc49061361e565b6001600160a01b0383166000908152600e602052604081208054839290610e7a908490613739565b9250508190555080600c6000828254610e939190613739565b90915550610ea39050838261210a565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ef43382612223565b610f105760405162461bcd60e51b8152600401610bc49061369e565b610d88838383612319565b60026012541415610f6e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc4565b6002601255601a54640100000000900460ff16610fcd5760405162461bcd60e51b815260206004820152601a60248201527f426f72656420426f6e6e793a205075626c6963206973204f46460000000000006044820152606401610bc4565b6000811161101d5760405162461bcd60e51b815260206004820152601860248201527f426f7265642042756e6e793a207a65726f20616d6f756e7400000000000000006044820152606401610bc4565b60145460135461102d9190613784565b8160165461103b9190613739565b11156110895760405162461bcd60e51b815260206004820181905260248201527f426f7265642042756e6e793a206d617820737570706c792065786365656465646044820152606401610bc4565b3481601d546110989190613765565b11156110b65760405162461bcd60e51b8152600401610bc4906135d2565b601a54610100900460ff161561110e5760405162461bcd60e51b815260206004820152601f60248201527f426f7265642042756e6e793a20636f6e747261637420697320706175736564006044820152606401610bc4565b6000805b8281101561116b57611128601e80546001019055565b601e54915061113733836124c4565b601554611145906001613739565b601555601654611156906001613739565b6016558061116381613802565b915050611112565b5050600160125550565b60006111808361174a565b82106111e25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610bc4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d8883838360405180602001604052806000815250611a5f565b601a5460ff166112785760405162461bcd60e51b815260206004820152601d60248201527f426f7265642042756e6e793a206275726e696e672064697361626c65640000006044820152606401610bc4565b6112823382612223565b6112e95760405162461bcd60e51b815260206004820152603260248201527f426f7265642042756e6e793a206275726e2063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bc4565b6112f2816124de565b60016015546113019190613784565b60155550565b600a546001600160a01b031633146113315760405162461bcd60e51b8152600401610bc490613669565b601a805461ff001981166101009182900460ff1615909102179055565b6001600160a01b0381166000908152600d60205260409020546113835760405162461bcd60e51b8152600401610bc49061358c565b6001600160a01b0382166000908152601060205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b1580156113db57600080fd5b505afa1580156113ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061141391906133c8565b61141d9190613739565b905060006114568383610e2e87876001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b9050806114755760405162461bcd60e51b8152600401610bc49061361e565b6001600160a01b038085166000908152601160209081526040808320938716835292905290812080548392906114ac908490613739565b90915550506001600160a01b038416600090815260106020526040812080548392906114d9908490613739565b909155506114ea9050848483612585565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600061154160085490565b82106115a45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bc4565b600882815481106115c557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146116015760405162461bcd60e51b8152600401610bc490613669565b601355565b600a546001600160a01b031633146116305760405162461bcd60e51b8152600401610bc490613669565b610d8860178383612f31565b600a546001600160a01b031633146116665760405162461bcd60e51b8152600401610bc490613669565b601a805464ff000000001981166401000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610ab75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bc4565b60178054610bf6906137c7565b600a546001600160a01b031633146117375760405162461bcd60e51b8152600401610bc490613669565b601a805460ff1916911515919091179055565b60006001600160a01b0382166117b55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bc4565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146117fb5760405162461bcd60e51b8152600401610bc490613669565b61180560006125d7565b565b6000600f828154811061182a57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031692915050565b606060018054610acc906137c7565b61185f338383612629565b5050565b600a546001600160a01b0316331461188d5760405162461bcd60e51b8152600401610bc490613669565b601a805462ff0000191662010000179055565b600a546001600160a01b031633146118ca5760405162461bcd60e51b8152600401610bc490613669565b6013546015546118db908390613739565b11156119385760405162461bcd60e51b815260206004820152602660248201527f426f7265642042756e6e793a206d617820746f74616c20737570706c7920657860448201526518d95959195960d21b6064820152608401610bc4565b6000805b82811015611a5957600084848381811061196657634e487b7160e01b600052603260045260246000fd5b905060200201602081019061197b91906130b4565b6001600160a01b031614156119e55760405162461bcd60e51b815260206004820152602a60248201527f426f7265642042756e6e793a20726563657069656e7420697320746865206e756044820152696c6c206164647265737360b01b6064820152608401610bc4565b6119f3601e80546001019055565b601e549150611a36848483818110611a1b57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611a3091906130b4565b836124c4565b601554611a44906001613739565b60155580611a5181613802565b91505061193c565b50505050565b611a693383612223565b611a855760405162461bcd60e51b8152600401610bc49061369e565b611a59848484846126f8565b60198054610bf6906137c7565b6000818152600260205260409020546060906001600160a01b0316611b1d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610bc4565b601a5462010000900460ff16611bbf5760188054611b3a906137c7565b80601f0160208091040260200160405190810160405280929190818152602001828054611b66906137c7565b8015611bb35780601f10611b8857610100808354040283529160200191611bb3565b820191906000526020600020905b815481529060010190602001808311611b9657829003601f168201915b50505050509050919050565b6000611bc961272b565b90506000815111611be95760405180602001604052806000815250611c17565b80611bf38461273a565b6019604051602001611c0793929190613428565b6040516020818303038152906040525b9392505050565b60026012541415611c715760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610bc4565b6002601255601a546301000000900460ff16611ccf5760405162461bcd60e51b815260206004820152601b60248201527f426f72656420426f6e6e793a2050726573616c65206973204f464600000000006044820152606401610bc4565b601a54610100900460ff1615611d275760405162461bcd60e51b815260206004820152601f60248201527f426f7265642042756e6e793a20636f6e747261637420697320706175736564006044820152606401610bc4565b601b54811115611d495760405162461bcd60e51b8152600401610bc4906136ef565b601b54336000908152601c6020526040902054611d67908390613739565b1115611d855760405162461bcd60e51b8152600401610bc4906136ef565b601454601354611d959190613784565b81601654611da39190613739565b1115611df15760405162461bcd60e51b815260206004820181905260248201527f426f7265642042756e6e793a206d617820737570706c792065786365656465646044820152606401610bc4565b3481601d54611e009190613765565b1115611e1e5760405162461bcd60e51b8152600401610bc4906135d2565b6000805b8281101561116b57611e38601e80546001019055565b601e549150611e4733836124c4565b336000908152601c6020526040902054611e62906001613739565b336000908152601c6020526040902055601554611e80906001613739565b601555601654611e91906001613739565b60165580611e9e81613802565b915050611e22565b600a546001600160a01b03163314611ed05760405162461bcd60e51b8152600401610bc490613669565b601a805463ff00000019811663010000009182900460ff1615909102179055565b600a546001600160a01b03163314611f1b5760405162461bcd60e51b8152600401610bc490613669565b805161185f906019906020840190612fb5565b600a546001600160a01b03163314611f585760405162461bcd60e51b8152600401610bc490613669565b805161185f906018906020840190612fb5565b600a546001600160a01b03163314611f955760405162461bcd60e51b8152600401610bc490613669565b6001600160a01b038116611ffa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc4565b612003816125d7565b50565b60006001600160e01b031982166380ac58cd60e01b148061203757506001600160e01b03198216635b5e139f60e01b145b80610ab757506301ffc9a760e01b6001600160e01b0319831614610ab7565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061208b82611689565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600b546001600160a01b0384166000908152600d6020526040812054909183916120ee9086613765565b6120f89190613751565b6121029190613784565b949350505050565b8047101561215a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121a7576040519150601f19603f3d011682016040523d82523d6000602084013e6121ac565b606091505b5050905080610d885760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc4565b6000818152600260205260408120546001600160a01b031661229c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bc4565b60006122a783611689565b9050806001600160a01b0316846001600160a01b031614806122e25750836001600160a01b03166122d784610b4f565b6001600160a01b0316145b8061210257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b031661232c82611689565b6001600160a01b0316146123945760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bc4565b6001600160a01b0382166123f65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc4565b612401838383612854565b61240c600082612056565b6001600160a01b0383166000908152600360205260408120805460019290612435908490613784565b90915550506001600160a01b0382166000908152600360205260408120805460019290612463908490613739565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61185f82826040518060200160405280600081525061290c565b60006124e982611689565b90506124f781600084612854565b612502600083612056565b6001600160a01b038116600090815260036020526040812080546001929061252b908490613784565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d8890849061293f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561268b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bc4565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612703848484612319565b61270f84848484612a11565b611a595760405162461bcd60e51b8152600401610bc49061353a565b606060178054610acc906137c7565b60608161275e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612788578061277281613802565b91506127819050600a83613751565b9150612762565b60008167ffffffffffffffff8111156127b157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127db576020820181803683370190505b5090505b8415612102576127f0600183613784565b91506127fd600a8661381d565b612808906030613739565b60f81b81838151811061282b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061284d600a86613751565b94506127df565b6001600160a01b0383166128af576128aa81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6128d2565b816001600160a01b0316836001600160a01b0316146128d2576128d28382612b1e565b6001600160a01b0382166128e957610d8881612bbb565b826001600160a01b0316826001600160a01b031614610d8857610d888282612c94565b6129168383612cd8565b6129236000848484612a11565b610d885760405162461bcd60e51b8152600401610bc49061353a565b6000612994826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e269092919063ffffffff16565b805190915015610d8857808060200190518101906129b291906132a9565b610d885760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bc4565b60006001600160a01b0384163b15612b1357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a559033908990889088906004016134ea565b602060405180830381600087803b158015612a6f57600080fd5b505af1925050508015612a9f575060408051601f3d908101601f19168201909252612a9c918101906132e1565b60015b612af9573d808015612acd576040519150601f19603f3d011682016040523d82523d6000602084013e612ad2565b606091505b508051612af15760405162461bcd60e51b8152600401610bc49061353a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612102565b506001949350505050565b60006001612b2b8461174a565b612b359190613784565b600083815260076020526040902054909150808214612b88576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612bcd90600190613784565b60008381526009602052604081205460088054939450909284908110612c0357634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612c3257634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c7857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c9f8361174a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612d2e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610bc4565b6000818152600260205260409020546001600160a01b031615612d935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610bc4565b612d9f60008383612854565b6001600160a01b0382166000908152600360205260408120805460019290612dc8908490613739565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060612102848460008585843b612e7f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc4565b600080866001600160a01b03168587604051612e9b919061340c565b60006040518083038185875af1925050503d8060008114612ed8576040519150601f19603f3d011682016040523d82523d6000602084013e612edd565b606091505b5091509150612eed828286612ef8565b979650505050505050565b60608315612f07575081611c17565b825115612f175782518084602001fd5b8160405162461bcd60e51b8152600401610bc49190613527565b828054612f3d906137c7565b90600052602060002090601f016020900481019282612f5f5760008555612fa5565b82601f10612f785782800160ff19823516178555612fa5565b82800160010185558215612fa5579182015b82811115612fa5578235825591602001919060010190612f8a565b50612fb1929150613029565b5090565b828054612fc1906137c7565b90600052602060002090601f016020900481019282612fe35760008555612fa5565b82601f10612ffc57805160ff1916838001178555612fa5565b82800160010185558215612fa5579182015b82811115612fa557825182559160200191906001019061300e565b5b80821115612fb1576000815560010161302a565b600067ffffffffffffffff808411156130595761305961385d565b604051601f8501601f19908116603f011681019082821181831017156130815761308161385d565b8160405280935085815286868601111561309a57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156130c5578081fd5b8135611c1781613873565b600080604083850312156130e2578081fd5b82356130ed81613873565b915060208301356130fd81613873565b809150509250929050565b60008060006060848603121561311c578081fd5b833561312781613873565b9250602084013561313781613873565b929592945050506040919091013590565b6000806000806080858703121561315d578081fd5b843561316881613873565b9350602085013561317881613873565b925060408501359150606085013567ffffffffffffffff81111561319a578182fd5b8501601f810187136131aa578182fd5b6131b98782356020840161303e565b91505092959194509250565b600080604083850312156131d7578182fd5b82356131e281613873565b915060208301356130fd81613888565b60008060408385031215613204578182fd5b823561320f81613873565b946020939093013593505050565b6000806020838503121561322f578182fd5b823567ffffffffffffffff80821115613246578384fd5b818501915085601f830112613259578384fd5b813581811115613267578485fd5b8660208260051b850101111561327b578485fd5b60209290920196919550909350505050565b60006020828403121561329e578081fd5b8135611c1781613888565b6000602082840312156132ba578081fd5b8151611c1781613888565b6000602082840312156132d6578081fd5b8135611c1781613896565b6000602082840312156132f2578081fd5b8151611c1781613896565b600080604083850312156130e2578182fd5b60008060208385031215613321578182fd5b823567ffffffffffffffff80821115613338578384fd5b818501915085601f83011261334b578384fd5b813581811115613359578485fd5b86602082850101111561327b578485fd5b60006020828403121561337b578081fd5b813567ffffffffffffffff811115613391578182fd5b8201601f810184136133a1578182fd5b6121028482356020840161303e565b6000602082840312156133c1578081fd5b5035919050565b6000602082840312156133d9578081fd5b5051919050565b600081518084526133f881602086016020860161379b565b601f01601f19169290920160200192915050565b6000825161341e81846020870161379b565b9190910192915050565b60008451602061343b8285838a0161379b565b85519184019161344e8184848a0161379b565b85549201918390600181811c908083168061346a57607f831692505b85831081141561348857634e487b7160e01b88526022600452602488fd5b80801561349c57600181146134ad576134d9565b60ff198516885283880195506134d9565b60008b815260209020895b858110156134d15781548a8201529084019088016134b8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061351d908301846133e0565b9695505050505050565b602081526000611c1760208301846133e0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602c908201527f426f7265642042756e6e793a2045746865722076616c75652073656e7420697360408201526b081b9bdd0818dbdc9c9958dd60a21b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602a908201527f426f7265642042756e6e793a20596f752063616e2774206d696e7420736f206d60408201526975636820746f6b656e7360b01b606082015260800190565b6000821982111561374c5761374c613831565b500190565b60008261376057613760613847565b500490565b600081600019048311821515161561377f5761377f613831565b500290565b60008282101561379657613796613831565b500390565b60005b838110156137b657818101518382015260200161379e565b83811115611a595750506000910152565b600181811c908216806137db57607f821691505b602082108114156137fc57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561381657613816613831565b5060010190565b60008261382c5761382c613847565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461200357600080fd5b801515811461200357600080fd5b6001600160e01b03198116811461200357600080fdfea26469706673582212201a7ffe6a88c44e538938e9ceba2504a11e82c96e9cf6bdf74e7a734d8cf47ba964736f6c63430008040033

Deployed Bytecode Sourcemap

63208:6313:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28055:40;10003:10;28055:40;;;-1:-1:-1;;;;;10236:32:1;;;10218:51;;28085:9:0;10300:2:1;10285:18;;10278:34;10191:18;28055:40:0;;;;;;;63208:6313;;;;;63470:23;;;;;;;;;;;;;;;;;;;26208:25:1;;;26196:2;26181:18;63470:23:0;;;;;;;;56982:224;;;;;;;;;;-1:-1:-1;56982:224:0;;;;;:::i;:::-;;:::i;:::-;;;11260:14:1;;11253:22;11235:41;;11223:2;11208:18;56982:224:0;11190:92:1;44476:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;63642:33::-;;;;;;;;;;-1:-1:-1;63642:33:0;;;;;;;;46035:221;;;;;;;;;;-1:-1:-1;46035:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9992:32:1;;;9974:51;;9962:2;9947:18;46035:221:0;9929:102:1;63561:28:0;;;;;;;;;;;;;:::i;45558:411::-;;;;;;;;;;-1:-1:-1;45558:411:0;;;;;:::i;:::-;;:::i;:::-;;69074:113;;;;;;;;;;-1:-1:-1;69074:113:0;;;;;:::i;:::-;;:::i;63750:28::-;;;;;;;;;;-1:-1:-1;63750:28:0;;;;;;;;;;;57622:113;;;;;;;;;;-1:-1:-1;57710:10:0;:17;57622:113;;29841:566;;;;;;;;;;-1:-1:-1;29841:566:0;;;;;:::i;:::-;;:::i;63433:30::-;;;;;;;;;;;;;;;;46785:339;;;;;;;;;;-1:-1:-1;46785:339:0;;;;;:::i;:::-;;:::i;67102:827::-;;;;;;:::i;:::-;;:::i;57290:256::-;;;;;;;;;;-1:-1:-1;57290:256:0;;;;;:::i;:::-;;:::i;28186:91::-;;;;;;;;;;-1:-1:-1;28257:12:0;;28186:91;;29315:135;;;;;;;;;;-1:-1:-1;29315:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;29412:21:0;;;29385:7;29412:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;29315:135;47195:185;;;;;;;;;;-1:-1:-1;47195:185:0;;;;;:::i;:::-;;:::i;69195:323::-;;;;;;;;;;-1:-1:-1;69195:323:0;;;;;:::i;:::-;;:::i;64578:80::-;;;;;;;;;;;;;:::i;30675:641::-;;;;;;;;;;-1:-1:-1;30675:641:0;;;;;:::i;:::-;;:::i;57812:233::-;;;;;;;;;;-1:-1:-1;57812:233:0;;;;;:::i;:::-;;:::i;63715:28::-;;;;;;;;;;-1:-1:-1;63715:28:0;;;;;;;;;;;68961:105;;;;;;;;;;-1:-1:-1;68961:105:0;;;;;:::i;:::-;;:::i;64851:112::-;;;;;;;;;;-1:-1:-1;64851:112:0;;;;;:::i;:::-;;:::i;63500:24::-;;;;;;;;;;;;;;;;63682:26;;;;;;;;;;-1:-1:-1;63682:26:0;;;;;;;;;;;64760:83;;;;;;;;;;;;;:::i;44170:239::-;;;;;;;;;;-1:-1:-1;44170:239:0;;;;;:::i;:::-;;:::i;63533:21::-;;;;;;;;;;;;;:::i;65156:115::-;;;;;;;;;;-1:-1:-1;65156:115:0;;;;;:::i;:::-;;:::i;43900:208::-;;;;;;;;;;-1:-1:-1;43900:208:0;;;;;:::i;:::-;;:::i;11850:103::-;;;;;;;;;;;;;:::i;29541:100::-;;;;;;;;;;-1:-1:-1;29541:100:0;;;;;:::i;:::-;;:::i;63858:50::-;;;;;;;;;;-1:-1:-1;63858:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;11199:87;;;;;;;;;;-1:-1:-1;11272:6:0;;-1:-1:-1;;;;;11272:6:0;11199:87;;44645:104;;;;;;;;;;;;;:::i;29037:109::-;;;;;;;;;;-1:-1:-1;29037:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;29120:18:0;29093:7;29120:18;;;:9;:18;;;;;;;29037:109;46328:155;;;;;;;;;;-1:-1:-1;46328:155:0;;;;;:::i;:::-;;:::i;63785:27::-;;;;;;;;;;-1:-1:-1;63785:27:0;;;;;;;;;;;65079:69;;;;;;;;;;;;;:::i;65283:645::-;;;;;;;;;;-1:-1:-1;65283:645:0;;;;;:::i;:::-;;:::i;47451:328::-;;;;;;;;;;-1:-1:-1;47451:328:0;;;;;:::i;:::-;;:::i;63596:37::-;;;;;;;;;;;;;:::i;67937:723::-;;;;;;;;;;-1:-1:-1;67937:723:0;;;;;:::i;:::-;;:::i;65936:1158::-;;;;;;:::i;:::-;;:::i;28833:105::-;;;;;;;;;;-1:-1:-1;28833:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;28914:16:0;28887:7;28914:16;;;:7;:16;;;;;;;28833:105;64666:86;;;;;;;;;;;;;:::i;63395:31::-;;;;;;;;;;;;;;;;28623:119;;;;;;;;;;-1:-1:-1;28623:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;28708:26:0;28681:7;28708:26;;;:19;:26;;;;;;;28623:119;68668:151;;;;;;;;;;-1:-1:-1;68668:151:0;;;;;:::i;:::-;;:::i;28371:95::-;;;;;;;;;;-1:-1:-1;28444:14:0;;28371:95;;46554:164;;;;;;;;;;-1:-1:-1;46554:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;46675:25:0;;;46651:4;46675:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;46554:164;68827:126;;;;;;;;;;-1:-1:-1;68827:126:0;;;;;:::i;:::-;;:::i;12108:201::-;;;;;;;;;;-1:-1:-1;12108:201:0;;;;;:::i;:::-;;:::i;56982:224::-;57084:4;-1:-1:-1;;;;;;57108:50:0;;-1:-1:-1;;;57108:50:0;;:90;;;57162:36;57186:11;57162:23;:36::i;:::-;57101:97;56982:224;-1:-1:-1;;56982:224:0:o;44476:100::-;44530:13;44563:5;44556:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44476:100;:::o;46035:221::-;46111:7;49378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49378:16:0;46131:73;;;;-1:-1:-1;;;46131:73:0;;19935:2:1;46131:73:0;;;19917:21:1;19974:2;19954:18;;;19947:30;20013:34;19993:18;;;19986:62;-1:-1:-1;;;20064:18:1;;;20057:42;20116:19;;46131:73:0;;;;;;;;;-1:-1:-1;46224:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;46224:24:0;;46035:221::o;63561:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45558:411::-;45639:13;45655:23;45670:7;45655:14;:23::i;:::-;45639:39;;45703:5;-1:-1:-1;;;;;45697:11:0;:2;-1:-1:-1;;;;;45697:11:0;;;45689:57;;;;-1:-1:-1;;;45689:57:0;;21942:2:1;45689:57:0;;;21924:21:1;21981:2;21961:18;;;21954:30;22020:34;22000:18;;;21993:62;-1:-1:-1;;;22071:18:1;;;22064:31;22112:19;;45689:57:0;21914:223:1;45689:57:0;10003:10;-1:-1:-1;;;;;45781:21:0;;;;:62;;-1:-1:-1;45806:37:0;45823:5;10003:10;46554:164;:::i;45806:37::-;45759:168;;;;-1:-1:-1;;;45759:168:0;;17975:2:1;45759:168:0;;;17957:21:1;18014:2;17994:18;;;17987:30;18053:34;18033:18;;;18026:62;18124:26;18104:18;;;18097:54;18168:19;;45759:168:0;17947:246:1;45759:168:0;45940:21;45949:2;45953:7;45940:8;:21::i;:::-;45558:411;;;:::o;69074:113::-;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;69152:10:::1;:27:::0;69074:113::o;29841:566::-;-1:-1:-1;;;;;29917:16:0;;29936:1;29917:16;;;:7;:16;;;;;;29909:71;;;;-1:-1:-1;;;29909:71:0;;;;;;;:::i;:::-;29993:21;30041:15;28444:14;;;28371:95;30041:15;30017:39;;:21;:39;:::i;:::-;29993:63;;30067:15;30085:58;30101:7;30110:13;30125:17;30134:7;-1:-1:-1;;;;;29120:18:0;29093:7;29120:18;;;:9;:18;;;;;;;29037:109;30125:17;30085:15;:58::i;:::-;30067:76;-1:-1:-1;30164:12:0;30156:68;;;;-1:-1:-1;;;30156:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30237:18:0;;;;;;:9;:18;;;;;:29;;30259:7;;30237:18;:29;;30259:7;;30237:29;:::i;:::-;;;;;;;;30295:7;30277:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;30315:35:0;;-1:-1:-1;30333:7:0;30342;30315:17;:35::i;:::-;30366:33;;;-1:-1:-1;;;;;10236:32:1;;10218:51;;10300:2;10285:18;;10278:34;;;30366:33:0;;10191:18:1;30366:33:0;;;;;;;29841:566;;;:::o;46785:339::-;46980:41;10003:10;47013:7;46980:18;:41::i;:::-;46972:103;;;;-1:-1:-1;;;46972:103:0;;;;;;;:::i;:::-;47088:28;47098:4;47104:2;47108:7;47088:9;:28::i;67102:827::-;6173:1;6771:7;;:19;;6763:63;;;;-1:-1:-1;;;6763:63:0;;25132:2:1;6763:63:0;;;25114:21:1;25171:2;25151:18;;;25144:30;25210:33;25190:18;;;25183:61;25261:18;;6763:63:0;25104:181:1;6763:63:0;6173:1;6904:7;:18;67187:7:::1;::::0;;;::::1;;;67179:46;;;::::0;-1:-1:-1;;;67179:46:0;;12951:2:1;67179:46:0::1;::::0;::::1;12933:21:1::0;12990:2;12970:18;;;12963:30;13029:28;13009:18;;;13002:56;13075:18;;67179:46:0::1;12923:176:1::0;67179:46:0::1;67254:1;67244:7;:11;67236:48;;;::::0;-1:-1:-1;;;67236:48:0;;19221:2:1;67236:48:0::1;::::0;::::1;19203:21:1::0;19260:2;19240:18;;;19233:30;19299:26;19279:18;;;19272:54;19343:18;;67236:48:0::1;19193:174:1::0;67236:48:0::1;67352:10;;67340:9;;:22;;;;:::i;:::-;67329:7;67317:9;;:19;;;;:::i;:::-;:45;;67295:127;;;::::0;-1:-1:-1;;;67295:127:0;;25492:2:1;67295:127:0::1;::::0;::::1;25474:21:1::0;;;25511:18;;;25504:30;25570:34;25550:18;;;25543:62;25622:18;;67295:127:0::1;25464:182:1::0;67295:127:0::1;67475:9;67464:7;67455:6;;:16;;;;:::i;:::-;:29;;67433:123;;;;-1:-1:-1::0;;;67433:123:0::1;;;;;;;:::i;:::-;67576:6;::::0;::::1;::::0;::::1;;;67575:7;67567:51;;;::::0;-1:-1:-1;;;67567:51:0;;13306:2:1;67567:51:0::1;::::0;::::1;13288:21:1::0;13345:2;13325:18;;;13318:30;13384:33;13364:18;;;13357:61;13435:18;;67567:51:0::1;13278:181:1::0;67567:51:0::1;67629:18;::::0;67658:264:::1;67686:7;67680:3;:13;67658:264;;;67717:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;67717:21:::1;67766:9;964:14:::0;67753:32:::1;;67800:33;67810:10;67822;67800:9;:33::i;:::-;67859:8;::::0;:12:::1;::::0;67870:1:::1;67859:12;:::i;:::-;67848:8;:23:::0;67898:9:::1;::::0;:12:::1;::::0;67909:1:::1;67898:12;:::i;:::-;67886:9;:24:::0;67695:5;::::1;::::0;::::1;:::i;:::-;;;;67658:264;;;-1:-1:-1::0;;6129:1:0;7083:7;:22;-1:-1:-1;67102:827:0:o;57290:256::-;57387:7;57423:23;57440:5;57423:16;:23::i;:::-;57415:5;:31;57407:87;;;;-1:-1:-1;;;57407:87:0;;11713:2:1;57407:87:0;;;11695:21:1;11752:2;11732:18;;;11725:30;11791:34;11771:18;;;11764:62;-1:-1:-1;;;11842:18:1;;;11835:41;11893:19;;57407:87:0;11685:233:1;57407:87:0;-1:-1:-1;;;;;;57512:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;57290:256::o;47195:185::-;47333:39;47350:4;47356:2;47360:7;47333:39;;;;;;;;;;;;:16;:39::i;69195:323::-;69254:13;;;;69246:55;;;;-1:-1:-1;;;69246:55:0;;23950:2:1;69246:55:0;;;23932:21:1;23989:2;23969:18;;;23962:30;24028:31;24008:18;;;24001:59;24077:18;;69246:55:0;23922:179:1;69246:55:0;69334:39;69353:10;69365:7;69334:18;:39::i;:::-;69312:139;;;;-1:-1:-1;;;69312:139:0;;22344:2:1;69312:139:0;;;22326:21:1;22383:2;22363:18;;;22356:30;22422:34;22402:18;;;22395:62;-1:-1:-1;;;22473:18:1;;;22466:48;22531:19;;69312:139:0;22316:240:1;69312:139:0;69462:14;69468:7;69462:5;:14::i;:::-;69509:1;69498:8;;:12;;;;:::i;:::-;69487:8;:23;-1:-1:-1;69195:323:0:o;64578:80::-;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;64644:6:::1;::::0;;-1:-1:-1;;64634:16:0;::::1;64644:6;::::0;;;::::1;;;64643:7;64634:16:::0;;::::1;;::::0;;64578:80::o;30675:641::-;-1:-1:-1;;;;;30757:16:0;;30776:1;30757:16;;;:7;:16;;;;;;30749:71;;;;-1:-1:-1;;;30749:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28708:26:0;;30833:21;28708:26;;;:19;:26;;;;;;30857:30;;-1:-1:-1;;;30857:30:0;;30881:4;30857:30;;;9974:51:1;-1:-1:-1;;;;;30857:15:0;;;;;9947:18:1;;30857:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;30833:77;;30921:15;30939:65;30955:7;30964:13;30979:24;30988:5;30995:7;-1:-1:-1;;;;;29412:21:0;;;29385:7;29412:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;29315:135;30939:65;30921:83;-1:-1:-1;31025:12:0;31017:68;;;;-1:-1:-1;;;31017:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31098:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;31132:7;;31098:21;:41;;31132:7;;31098:41;:::i;:::-;;;;-1:-1:-1;;;;;;;31150:26:0;;;;;;:19;:26;;;;;:37;;31180:7;;31150:26;:37;;31180:7;;31150:37;:::i;:::-;;;;-1:-1:-1;31200:47:0;;-1:-1:-1;31223:5:0;31230:7;31239;31200:22;:47::i;:::-;31263:45;;;-1:-1:-1;;;;;10236:32:1;;;10218:51;;10300:2;10285:18;;10278:34;;;31263:45:0;;;;;10191:18:1;31263:45:0;;;;;;;30675:641;;;;:::o;57812:233::-;57887:7;57923:30;57710:10;:17;;57622:113;57923:30;57915:5;:38;57907:95;;;;-1:-1:-1;;;57907:95:0;;24308:2:1;57907:95:0;;;24290:21:1;24347:2;24327:18;;;24320:30;24386:34;24366:18;;;24359:62;-1:-1:-1;;;24437:18:1;;;24430:42;24489:19;;57907:95:0;24280:234:1;57907:95:0;58020:10;58031:5;58020:17;;;;;;-1:-1:-1;;;58020:17:0;;;;;;;;;;;;;;;;;58013:24;;57812:233;;;:::o;68961:105::-;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;69036:9:::1;:22:::0;68961:105::o;64851:112::-;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;64932:23:::1;:7;64942:13:::0;;64932:23:::1;:::i;64760:83::-:0;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;64828:7:::1;::::0;;-1:-1:-1;;64817:18:0;::::1;64828:7:::0;;;;::::1;;;64827:8;64817:18:::0;;::::1;;::::0;;64760:83::o;44170:239::-;44242:7;44278:16;;;:7;:16;;;;;;-1:-1:-1;;;;;44278:16:0;44313:19;44305:73;;;;-1:-1:-1;;;44305:73:0;;18811:2:1;44305:73:0;;;18793:21:1;18850:2;18830:18;;;18823:30;18889:34;18869:18;;;18862:62;-1:-1:-1;;;18940:18:1;;;18933:39;18989:19;;44305:73:0;18783:231:1;63533:21:0;;;;;;;:::i;65156:115::-;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;65233:13:::1;:30:::0;;-1:-1:-1;;65233:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;65156:115::o;43900:208::-;43972:7;-1:-1:-1;;;;;44000:19:0;;43992:74;;;;-1:-1:-1;;;43992:74:0;;18400:2:1;43992:74:0;;;18382:21:1;18439:2;18419:18;;;18412:30;18478:34;18458:18;;;18451:62;-1:-1:-1;;;18529:18:1;;;18522:40;18579:19;;43992:74:0;18372:232:1;43992:74:0;-1:-1:-1;;;;;;44084:16:0;;;;;:9;:16;;;;;;;43900:208::o;11850:103::-;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;11915:30:::1;11942:1;11915:18;:30::i;:::-;11850:103::o:0;29541:100::-;29592:7;29619;29627:5;29619:14;;;;;;-1:-1:-1;;;29619:14:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29619:14:0;;29541:100;-1:-1:-1;;29541:100:0:o;44645:104::-;44701:13;44734:7;44727:14;;;;;:::i;46328:155::-;46423:52;10003:10;46456:8;46466;46423:18;:52::i;:::-;46328:155;;:::o;65079:69::-;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;65125:8:::1;:15:::0;;-1:-1:-1;;65125:15:0::1;::::0;::::1;::::0;;65079:69::o;65283:645::-;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;65416:9:::1;::::0;65384:8:::1;::::0;:28:::1;::::0;65395:10;;65384:28:::1;:::i;:::-;:41;;65362:129;;;::::0;-1:-1:-1;;;65362:129:0;;20709:2:1;65362:129:0::1;::::0;::::1;20691:21:1::0;20748:2;20728:18;;;20721:30;20787:34;20767:18;;;20760:62;-1:-1:-1;;;20838:18:1;;;20831:36;20884:19;;65362:129:0::1;20681:228:1::0;65362:129:0::1;65504:18;::::0;65533:388:::1;65555:23:::0;;::::1;65533:388;;;65655:1;65628:10:::0;;65639:3;65628:15;;::::1;;;-1:-1:-1::0;;;65628:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;65628:29:0::1;;;65602:133;;;::::0;-1:-1:-1;;;65602:133:0;;25853:2:1;65602:133:0::1;::::0;::::1;25835:21:1::0;25892:2;25872:18;;;25865:30;25931:34;25911:18;;;25904:62;-1:-1:-1;;;25982:18:1;;;25975:40;26032:19;;65602:133:0::1;25825:232:1::0;65602:133:0::1;65750:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;65750:21:::1;65799:9;964:14:::0;65786:32:::1;;65833:38;65843:10;;65854:3;65843:15;;;;;-1:-1:-1::0;;;65843:15:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65860:10;65833:9;:38::i;:::-;65897:8;::::0;:12:::1;::::0;65908:1:::1;65897:12;:::i;:::-;65886:8;:23:::0;65580:5;::::1;::::0;::::1;:::i;:::-;;;;65533:388;;;;11490:1;65283:645:::0;;:::o;47451:328::-;47626:41;10003:10;47659:7;47626:18;:41::i;:::-;47618:103;;;;-1:-1:-1;;;47618:103:0;;;;;;;:::i;:::-;47732:39;47746:4;47752:2;47756:7;47765:5;47732:13;:39::i;63596:37::-;;;;;;;:::i;67937:723::-;49354:4;49378:16;;;:7;:16;;;;;;68055:13;;-1:-1:-1;;;;;49378:16:0;68086:113;;;;-1:-1:-1;;;68086:113:0;;21526:2:1;68086:113:0;;;21508:21:1;21565:2;21545:18;;;21538:30;21604:34;21584:18;;;21577:62;-1:-1:-1;;;21655:18:1;;;21648:45;21710:19;;68086:113:0;21498:237:1;68086:113:0;68214:8;;;;;;;68210:71;;68255:14;68248:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67937:723;;;:::o;68210:71::-;68293:28;68324:10;:8;:10::i;:::-;68293:41;;68396:1;68371:14;68365:28;:32;:287;;;;;;;;;;;;;;;;;68489:14;68530:18;:7;:16;:18::i;:::-;68575:13;68446:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;68365:287;68345:307;67937:723;-1:-1:-1;;;67937:723:0:o;65936:1158::-;6173:1;6771:7;;:19;;6763:63;;;;-1:-1:-1;;;6763:63:0;;25132:2:1;6763:63:0;;;25114:21:1;25171:2;25151:18;;;25144:30;25210:33;25190:18;;;25183:61;25261:18;;6763:63:0;25104:181:1;6763:63:0;6173:1;6904:7;:18;66022:8:::1;::::0;;;::::1;;;66014:48;;;::::0;-1:-1:-1;;;66014:48:0;;17619:2:1;66014:48:0::1;::::0;::::1;17601:21:1::0;17658:2;17638:18;;;17631:30;17697:29;17677:18;;;17670:57;17744:18;;66014:48:0::1;17591:177:1::0;66014:48:0::1;66082:6;::::0;::::1;::::0;::::1;;;66081:7;66073:51;;;::::0;-1:-1:-1;;;66073:51:0;;13306:2:1;66073:51:0::1;::::0;::::1;13288:21:1::0;13345:2;13325:18;;;13318:30;13384:33;13364:18;;;13357:61;13435:18;;66073:51:0::1;13278:181:1::0;66073:51:0::1;66168:18;;66157:7;:29;;66135:121;;;;-1:-1:-1::0;;;66135:121:0::1;;;;;;;:::i;:::-;66330:18;::::0;66305:10:::1;66289:27;::::0;;;:15:::1;:27;::::0;;;;;:37:::1;::::0;66319:7;;66289:37:::1;:::i;:::-;:59;;66267:151;;;;-1:-1:-1::0;;;66267:151:0::1;;;;;;;:::i;:::-;66488:10;;66476:9;;:22;;;;:::i;:::-;66465:7;66453:9;;:19;;;;:::i;:::-;:45;;66431:127;;;::::0;-1:-1:-1;;;66431:127:0;;25492:2:1;66431:127:0::1;::::0;::::1;25474:21:1::0;;;25511:18;;;25504:30;25570:34;25550:18;;;25543:62;25622:18;;66431:127:0::1;25464:182:1::0;66431:127:0::1;66611:9;66600:7;66591:6;;:16;;;;:::i;:::-;:29;;66569:123;;;;-1:-1:-1::0;;;66569:123:0::1;;;;;;;:::i;:::-;66703:18;::::0;66732:355:::1;66760:7;66754:3;:13;66732:355;;;66791:21;:9;1083:19:::0;;1101:1;1083:19;;;994:127;66791:21:::1;66840:9;964:14:::0;66827:32:::1;;66874:33;66884:10;66896;66874:9;:33::i;:::-;66968:10;66952:27;::::0;;;:15:::1;:27;::::0;;;;;:31:::1;::::0;66982:1:::1;66952:31;:::i;:::-;66938:10;66922:27;::::0;;;:15:::1;:27;::::0;;;;:61;67009:8:::1;::::0;:12:::1;::::0;67020:1:::1;67009:12;:::i;:::-;66998:8;:23:::0;67048:9:::1;::::0;:13:::1;::::0;67060:1:::1;67048:13;:::i;:::-;67036:9;:25:::0;66769:5;::::1;::::0;::::1;:::i;:::-;;;;66732:355;;64666:86:::0;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;64736:8:::1;::::0;;-1:-1:-1;;64724:20:0;::::1;64736:8:::0;;;;::::1;;;64735:9;64724:20:::0;;::::1;;::::0;;64666:86::o;68668:151::-;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;68778:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;68827:126::-:0;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;68913:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;12108:201::-:0;11272:6;;-1:-1:-1;;;;;11272:6:0;10003:10;11419:23;11411:68;;;;-1:-1:-1;;;11411:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12197:22:0;::::1;12189:73;;;::::0;-1:-1:-1;;;12189:73:0;;12544:2:1;12189:73:0::1;::::0;::::1;12526:21:1::0;12583:2;12563:18;;;12556:30;12622:34;12602:18;;;12595:62;-1:-1:-1;;;12673:18:1;;;12666:36;12719:19;;12189:73:0::1;12516:228:1::0;12189:73:0::1;12273:28;12292:8;12273:18;:28::i;:::-;12108:201:::0;:::o;43531:305::-;43633:4;-1:-1:-1;;;;;;43670:40:0;;-1:-1:-1;;;43670:40:0;;:105;;-1:-1:-1;;;;;;;43727:48:0;;-1:-1:-1;;;43727:48:0;43670:105;:158;;;-1:-1:-1;;;;;;;;;;35336:40:0;;;43792:36;35227:157;53271:174;53346:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;53346:29:0;-1:-1:-1;;;;;53346:29:0;;;;;;;;:24;;53400:23;53346:24;53400:14;:23::i;:::-;-1:-1:-1;;;;;53391:46:0;;;;;;;;;;;53271:174;;:::o;31494:248::-;31704:12;;-1:-1:-1;;;;;31684:16:0;;31640:7;31684:16;;;:7;:16;;;;;;31640:7;;31719:15;;31668:32;;:13;:32;:::i;:::-;31667:49;;;;:::i;:::-;:67;;;;:::i;:::-;31660:74;31494:248;-1:-1:-1;;;;31494:248:0:o;14809:317::-;14924:6;14899:21;:31;;14891:73;;;;-1:-1:-1;;;14891:73:0;;16029:2:1;14891:73:0;;;16011:21:1;16068:2;16048:18;;;16041:30;16107:31;16087:18;;;16080:59;16156:18;;14891:73:0;16001:179:1;14891:73:0;14978:12;14996:9;-1:-1:-1;;;;;14996:14:0;15018:6;14996:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14977:52;;;15048:7;15040:78;;;;-1:-1:-1;;;15040:78:0;;15602:2:1;15040:78:0;;;15584:21:1;15641:2;15621:18;;;15614:30;15680:34;15660:18;;;15653:62;15751:28;15731:18;;;15724:56;15797:19;;15040:78:0;15574:248:1;49583:348:0;49676:4;49378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49378:16:0;49693:73;;;;-1:-1:-1;;;49693:73:0;;16794:2:1;49693:73:0;;;16776:21:1;16833:2;16813:18;;;16806:30;16872:34;16852:18;;;16845:62;-1:-1:-1;;;16923:18:1;;;16916:42;16975:19;;49693:73:0;16766:234:1;49693:73:0;49777:13;49793:23;49808:7;49793:14;:23::i;:::-;49777:39;;49846:5;-1:-1:-1;;;;;49835:16:0;:7;-1:-1:-1;;;;;49835:16:0;;:51;;;;49879:7;-1:-1:-1;;;;;49855:31:0;:20;49867:7;49855:11;:20::i;:::-;-1:-1:-1;;;;;49855:31:0;;49835:51;:87;;;-1:-1:-1;;;;;;46675:25:0;;;46651:4;46675:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;49827:96;49583:348;-1:-1:-1;;;;49583:348:0:o;52575:578::-;52734:4;-1:-1:-1;;;;;52707:31:0;:23;52722:7;52707:14;:23::i;:::-;-1:-1:-1;;;;;52707:31:0;;52699:85;;;;-1:-1:-1;;;52699:85:0;;21116:2:1;52699:85:0;;;21098:21:1;21155:2;21135:18;;;21128:30;21194:34;21174:18;;;21167:62;-1:-1:-1;;;21245:18:1;;;21238:39;21294:19;;52699:85:0;21088:231:1;52699:85:0;-1:-1:-1;;;;;52803:16:0;;52795:65;;;;-1:-1:-1;;;52795:65:0;;14430:2:1;52795:65:0;;;14412:21:1;14469:2;14449:18;;;14442:30;14508:34;14488:18;;;14481:62;-1:-1:-1;;;14559:18:1;;;14552:34;14603:19;;52795:65:0;14402:226:1;52795:65:0;52873:39;52894:4;52900:2;52904:7;52873:20;:39::i;:::-;52977:29;52994:1;52998:7;52977:8;:29::i;:::-;-1:-1:-1;;;;;53019:15:0;;;;;;:9;:15;;;;;:20;;53038:1;;53019:15;:20;;53038:1;;53019:20;:::i;:::-;;;;-1:-1:-1;;;;;;;53050:13:0;;;;;;:9;:13;;;;;:18;;53067:1;;53050:13;:18;;53067:1;;53050:18;:::i;:::-;;;;-1:-1:-1;;53079:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53079:21:0;-1:-1:-1;;;;;53079:21:0;;;;;;;;;53118:27;;53079:16;;53118:27;;;;;;;52575:578;;;:::o;50273:110::-;50349:26;50359:2;50363:7;50349:26;;;;;;;;;;;;:9;:26::i;51878:360::-;51938:13;51954:23;51969:7;51954:14;:23::i;:::-;51938:39;;51990:48;52011:5;52026:1;52030:7;51990:20;:48::i;:::-;52079:29;52096:1;52100:7;52079:8;:29::i;:::-;-1:-1:-1;;;;;52121:16:0;;;;;;:9;:16;;;;;:21;;52141:1;;52121:16;:21;;52141:1;;52121:21;:::i;:::-;;;;-1:-1:-1;;52160:16:0;;;;:7;:16;;;;;;52153:23;;-1:-1:-1;;;;;;52153:23:0;;;52194:36;52168:7;;52160:16;-1:-1:-1;;;;;52194:36:0;;;;;52160:16;;52194:36;51878:360;;:::o;21515:211::-;21659:58;;;-1:-1:-1;;;;;10236:32:1;;21659:58:0;;;10218:51:1;10285:18;;;;10278:34;;;21659:58:0;;;;;;;;;;10191:18:1;;;;21659:58:0;;;;;;;;-1:-1:-1;;;;;21659:58:0;-1:-1:-1;;;21659:58:0;;;21632:86;;21652:5;;21632:19;:86::i;12469:191::-;12562:6;;;-1:-1:-1;;;;;12579:17:0;;;-1:-1:-1;;;;;;12579:17:0;;;;;;;12612:40;;12562:6;;;12579:17;12562:6;;12612:40;;12543:16;;12612:40;12469:191;;:::o;53587:315::-;53742:8;-1:-1:-1;;;;;53733:17:0;:5;-1:-1:-1;;;;;53733:17:0;;;53725:55;;;;-1:-1:-1;;;53725:55:0;;14835:2:1;53725:55:0;;;14817:21:1;14874:2;14854:18;;;14847:30;14913:27;14893:18;;;14886:55;14958:18;;53725:55:0;14807:175:1;53725:55:0;-1:-1:-1;;;;;53791:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;53791:46:0;;;;;;;;;;53853:41;;11235::1;;;53853::0;;11208:18:1;53853:41:0;;;;;;;53587:315;;;:::o;48661:::-;48818:28;48828:4;48834:2;48838:7;48818:9;:28::i;:::-;48865:48;48888:4;48894:2;48898:7;48907:5;48865:22;:48::i;:::-;48857:111;;;;-1:-1:-1;;;48857:111:0;;;;;;;:::i;64971:100::-;65023:13;65056:7;65049:14;;;;;:::i;7485:723::-;7541:13;7762:10;7758:53;;-1:-1:-1;;7789:10:0;;;;;;;;;;;;-1:-1:-1;;;7789:10:0;;;;;7485:723::o;7758:53::-;7836:5;7821:12;7877:78;7884:9;;7877:78;;7910:8;;;;:::i;:::-;;-1:-1:-1;7933:10:0;;-1:-1:-1;7941:2:0;7933:10;;:::i;:::-;;;7877:78;;;7965:19;7997:6;7987:17;;;;;;-1:-1:-1;;;7987:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7987:17:0;;7965:39;;8015:154;8022:10;;8015:154;;8049:11;8059:1;8049:11;;:::i;:::-;;-1:-1:-1;8118:10:0;8126:2;8118:5;:10;:::i;:::-;8105:24;;:2;:24;:::i;:::-;8092:39;;8075:6;8082;8075:14;;;;;;-1:-1:-1;;;8075:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8075:56:0;;;;;;;;-1:-1:-1;8146:11:0;8155:2;8146:11;;:::i;:::-;;;8015:154;;58658:589;-1:-1:-1;;;;;58864:18:0;;58860:187;;58899:40;58931:7;60074:10;:17;;60047:24;;;;:15;:24;;;;;:44;;;60102:24;;;;;;;;;;;;59970:164;58899:40;58860:187;;;58969:2;-1:-1:-1;;;;;58961:10:0;:4;-1:-1:-1;;;;;58961:10:0;;58957:90;;58988:47;59021:4;59027:7;58988:32;:47::i;:::-;-1:-1:-1;;;;;59061:16:0;;59057:183;;59094:45;59131:7;59094:36;:45::i;59057:183::-;59167:4;-1:-1:-1;;;;;59161:10:0;:2;-1:-1:-1;;;;;59161:10:0;;59157:83;;59188:40;59216:2;59220:7;59188:27;:40::i;50610:321::-;50740:18;50746:2;50750:7;50740:5;:18::i;:::-;50791:54;50822:1;50826:2;50830:7;50839:5;50791:22;:54::i;:::-;50769:154;;;;-1:-1:-1;;;50769:154:0;;;;;;;:::i;24088:716::-;24512:23;24538:69;24566:4;24538:69;;;;;;;;;;;;;;;;;24546:5;-1:-1:-1;;;;;24538:27:0;;;:69;;;;;:::i;:::-;24622:17;;24512:95;;-1:-1:-1;24622:21:0;24618:179;;24719:10;24708:30;;;;;;;;;;;;:::i;:::-;24700:85;;;;-1:-1:-1;;;24700:85:0;;24721:2:1;24700:85:0;;;24703:21:1;24760:2;24740:18;;;24733:30;24799:34;24779:18;;;24772:62;-1:-1:-1;;;24850:18:1;;;24843:40;24900:19;;24700:85:0;24693:232:1;54467:799:0;54622:4;-1:-1:-1;;;;;54643:13:0;;13810:20;13858:8;54639:620;;54679:72;;-1:-1:-1;;;54679:72:0;;-1:-1:-1;;;;;54679:36:0;;;;;:72;;10003:10;;54730:4;;54736:7;;54745:5;;54679:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54679:72:0;;;;;;;;-1:-1:-1;;54679:72:0;;;;;;;;;;;;:::i;:::-;;;54675:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54921:13:0;;54917:272;;54964:60;;-1:-1:-1;;;54964:60:0;;;;;;;:::i;54917:272::-;55139:6;55133:13;55124:6;55120:2;55116:15;55109:38;54675:529;-1:-1:-1;;;;;;54802:51:0;-1:-1:-1;;;54802:51:0;;-1:-1:-1;54795:58:0;;54639:620;-1:-1:-1;55243:4:0;54467:799;;;;;;:::o;60761:988::-;61027:22;61077:1;61052:22;61069:4;61052:16;:22::i;:::-;:26;;;;:::i;:::-;61089:18;61110:26;;;:17;:26;;;;;;61027:51;;-1:-1:-1;61243:28:0;;;61239:328;;-1:-1:-1;;;;;61310:18:0;;61288:19;61310:18;;;:12;:18;;;;;;;;:34;;;;;;;;;61361:30;;;;;;:44;;;61478:30;;:17;:30;;;;;:43;;;61239:328;-1:-1:-1;61663:26:0;;;;:17;:26;;;;;;;;61656:33;;;-1:-1:-1;;;;;61707:18:0;;;;;:12;:18;;;;;:34;;;;;;;61700:41;60761:988::o;62044:1079::-;62322:10;:17;62297:22;;62322:21;;62342:1;;62322:21;:::i;:::-;62354:18;62375:24;;;:15;:24;;;;;;62748:10;:26;;62297:46;;-1:-1:-1;62375:24:0;;62297:46;;62748:26;;;;-1:-1:-1;;;62748:26:0;;;;;;;;;;;;;;;;;62726:48;;62812:11;62787:10;62798;62787:22;;;;;;-1:-1:-1;;;62787:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;62892:28;;;:15;:28;;;;;;;:41;;;63064:24;;;;;63057:31;63099:10;:16;;;;;-1:-1:-1;;;63099:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;62044:1079;;;;:::o;59548:221::-;59633:14;59650:20;59667:2;59650:16;:20::i;:::-;-1:-1:-1;;;;;59681:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;59726:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;59548:221:0:o;51267:382::-;-1:-1:-1;;;;;51347:16:0;;51339:61;;;;-1:-1:-1;;;51339:61:0;;19574:2:1;51339:61:0;;;19556:21:1;;;19593:18;;;19586:30;19652:34;19632:18;;;19625:62;19704:18;;51339:61:0;19546:182:1;51339:61:0;49354:4;49378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;49378:16:0;:30;51411:58;;;;-1:-1:-1;;;51411:58:0;;13666:2:1;51411:58:0;;;13648:21:1;13705:2;13685:18;;;13678:30;13744;13724:18;;;13717:58;13792:18;;51411:58:0;13638:178:1;51411:58:0;51482:45;51511:1;51515:2;51519:7;51482:20;:45::i;:::-;-1:-1:-1;;;;;51540:13:0;;;;;;:9;:13;;;;;:18;;51557:1;;51540:13;:18;;51557:1;;51540:18;:::i;:::-;;;;-1:-1:-1;;51569:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;51569:21:0;-1:-1:-1;;;;;51569:21:0;;;;;;;;51608:33;;51569:16;;;51608:33;;51569:16;;51608:33;51267:382;;:::o;16293:229::-;16430:12;16462:52;16484:6;16492:4;16498:1;16501:12;16430;13810:20;;17700:60;;;;-1:-1:-1;;;17700:60:0;;23181:2:1;17700:60:0;;;23163:21:1;23220:2;23200:18;;;23193:30;23259:31;23239:18;;;23232:59;23308:18;;17700:60:0;23153:179:1;17700:60:0;17774:12;17788:23;17815:6;-1:-1:-1;;;;;17815:11:0;17834:5;17841:4;17815:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17773:73;;;;17864:51;17881:7;17890:10;17902:12;17864:16;:51::i;:::-;17857:58;17413:510;-1:-1:-1;;;;;;;17413:510:0:o;20099:712::-;20249:12;20278:7;20274:530;;;-1:-1:-1;20309:10:0;20302:17;;20274:530;20423:17;;:21;20419:374;;20621:10;20615:17;20682:15;20669:10;20665:2;20661:19;20654:44;20569:148;20764:12;20757:20;;-1:-1:-1;;;20757:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:257::-;709:6;762:2;750:9;741:7;737:23;733:32;730:2;;;783:6;775;768:22;730:2;827:9;814:23;846:31;871:5;846:31;:::i;1182:398::-;1250:6;1258;1311:2;1299:9;1290:7;1286:23;1282:32;1279:2;;;1332:6;1324;1317:22;1279:2;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;-1:-1:-1;1502:2:1;1487:18;;1474:32;1515:33;1474:32;1515:33;:::i;:::-;1567:7;1557:17;;;1269:311;;;;;:::o;1585:466::-;1662:6;1670;1678;1731:2;1719:9;1710:7;1706:23;1702:32;1699:2;;;1752:6;1744;1737:22;1699:2;1796:9;1783:23;1815:31;1840:5;1815:31;:::i;:::-;1865:5;-1:-1:-1;1922:2:1;1907:18;;1894:32;1935:33;1894:32;1935:33;:::i;:::-;1689:362;;1987:7;;-1:-1:-1;;;2041:2:1;2026:18;;;;2013:32;;1689:362::o;2056:824::-;2151:6;2159;2167;2175;2228:3;2216:9;2207:7;2203:23;2199:33;2196:2;;;2250:6;2242;2235:22;2196:2;2294:9;2281:23;2313:31;2338:5;2313:31;:::i;:::-;2363:5;-1:-1:-1;2420:2:1;2405:18;;2392:32;2433:33;2392:32;2433:33;:::i;:::-;2485:7;-1:-1:-1;2539:2:1;2524:18;;2511:32;;-1:-1:-1;2594:2:1;2579:18;;2566:32;2621:18;2610:30;;2607:2;;;2658:6;2650;2643:22;2607:2;2686:22;;2739:4;2731:13;;2727:27;-1:-1:-1;2717:2:1;;2773:6;2765;2758:22;2717:2;2801:73;2866:7;2861:2;2848:16;2843:2;2839;2835:11;2801:73;:::i;:::-;2791:83;;;2186:694;;;;;;;:::o;2885:392::-;2950:6;2958;3011:2;2999:9;2990:7;2986:23;2982:32;2979:2;;;3032:6;3024;3017:22;2979:2;3076:9;3063:23;3095:31;3120:5;3095:31;:::i;:::-;3145:5;-1:-1:-1;3202:2:1;3187:18;;3174:32;3215:30;3174:32;3215:30;:::i;3282:325::-;3350:6;3358;3411:2;3399:9;3390:7;3386:23;3382:32;3379:2;;;3432:6;3424;3417:22;3379:2;3476:9;3463:23;3495:31;3520:5;3495:31;:::i;:::-;3545:5;3597:2;3582:18;;;;3569:32;;-1:-1:-1;;;3369:238:1:o;3612:665::-;3698:6;3706;3759:2;3747:9;3738:7;3734:23;3730:32;3727:2;;;3780:6;3772;3765:22;3727:2;3825:9;3812:23;3854:18;3895:2;3887:6;3884:14;3881:2;;;3916:6;3908;3901:22;3881:2;3959:6;3948:9;3944:22;3934:32;;4004:7;3997:4;3993:2;3989:13;3985:27;3975:2;;4031:6;4023;4016:22;3975:2;4076;4063:16;4102:2;4094:6;4091:14;4088:2;;;4123:6;4115;4108:22;4088:2;4181:7;4176:2;4166:6;4163:1;4159:14;4155:2;4151:23;4147:32;4144:45;4141:2;;;4207:6;4199;4192:22;4141:2;4243;4235:11;;;;;4265:6;;-1:-1:-1;3717:560:1;;-1:-1:-1;;;;3717:560:1:o;4282:251::-;4338:6;4391:2;4379:9;4370:7;4366:23;4362:32;4359:2;;;4412:6;4404;4397:22;4359:2;4456:9;4443:23;4475:28;4497:5;4475:28;:::i;4538:255::-;4605:6;4658:2;4646:9;4637:7;4633:23;4629:32;4626:2;;;4679:6;4671;4664:22;4626:2;4716:9;4710:16;4735:28;4757:5;4735:28;:::i;4798:255::-;4856:6;4909:2;4897:9;4888:7;4884:23;4880:32;4877:2;;;4930:6;4922;4915:22;4877:2;4974:9;4961:23;4993:30;5017:5;4993:30;:::i;5058:259::-;5127:6;5180:2;5168:9;5159:7;5155:23;5151:32;5148:2;;;5201:6;5193;5186:22;5148:2;5238:9;5232:16;5257:30;5281:5;5257:30;:::i;5598:412::-;5680:6;5688;5741:2;5729:9;5720:7;5716:23;5712:32;5709:2;;;5762:6;5754;5747:22;6015:642;6086:6;6094;6147:2;6135:9;6126:7;6122:23;6118:32;6115:2;;;6168:6;6160;6153:22;6115:2;6213:9;6200:23;6242:18;6283:2;6275:6;6272:14;6269:2;;;6304:6;6296;6289:22;6269:2;6347:6;6336:9;6332:22;6322:32;;6392:7;6385:4;6381:2;6377:13;6373:27;6363:2;;6419:6;6411;6404:22;6363:2;6464;6451:16;6490:2;6482:6;6479:14;6476:2;;;6511:6;6503;6496:22;6476:2;6561:7;6556:2;6547:6;6543:2;6539:15;6535:24;6532:37;6529:2;;;6587:6;6579;6572:22;6662:480;6731:6;6784:2;6772:9;6763:7;6759:23;6755:32;6752:2;;;6805:6;6797;6790:22;6752:2;6850:9;6837:23;6883:18;6875:6;6872:30;6869:2;;;6920:6;6912;6905:22;6869:2;6948:22;;7001:4;6993:13;;6989:27;-1:-1:-1;6979:2:1;;7035:6;7027;7020:22;6979:2;7063:73;7128:7;7123:2;7110:16;7105:2;7101;7097:11;7063:73;:::i;7147:190::-;7206:6;7259:2;7247:9;7238:7;7234:23;7230:32;7227:2;;;7280:6;7272;7265:22;7227:2;-1:-1:-1;7308:23:1;;7217:120;-1:-1:-1;7217:120:1:o;7342:194::-;7412:6;7465:2;7453:9;7444:7;7440:23;7436:32;7433:2;;;7486:6;7478;7471:22;7433:2;-1:-1:-1;7514:16:1;;7423:113;-1:-1:-1;7423:113:1:o;7541:257::-;7582:3;7620:5;7614:12;7647:6;7642:3;7635:19;7663:63;7719:6;7712:4;7707:3;7703:14;7696:4;7689:5;7685:16;7663:63;:::i;:::-;7780:2;7759:15;-1:-1:-1;;7755:29:1;7746:39;;;;7787:4;7742:50;;7590:208;-1:-1:-1;;7590:208:1:o;7803:274::-;7932:3;7970:6;7964:13;7986:53;8032:6;8027:3;8020:4;8012:6;8008:17;7986:53;:::i;:::-;8055:16;;;;;7940:137;-1:-1:-1;;7940:137:1:o;8082:1531::-;8306:3;8344:6;8338:13;8370:4;8383:51;8427:6;8422:3;8417:2;8409:6;8405:15;8383:51;:::i;:::-;8497:13;;8456:16;;;;8519:55;8497:13;8456:16;8541:15;;;8519:55;:::i;:::-;8665:13;;8596:20;;;8636:3;;8725:1;8747:18;;;;8800;;;;8827:2;;8905:4;8895:8;8891:19;8879:31;;8827:2;8968;8958:8;8955:16;8935:18;8932:40;8929:2;;;-1:-1:-1;;;8995:33:1;;9051:4;9048:1;9041:15;9081:4;9002:3;9069:17;8929:2;9112:18;9139:110;;;;9263:1;9258:330;;;;9105:483;;9139:110;-1:-1:-1;;9174:24:1;;9160:39;;9219:20;;;;-1:-1:-1;9139:110:1;;9258:330;26291:4;26310:17;;;26360:4;26344:21;;9353:3;9369:169;9383:8;9380:1;9377:15;9369:169;;;9465:14;;9450:13;;;9443:37;9508:16;;;;9400:10;;9369:169;;;9373:3;;9569:8;9562:5;9558:20;9551:27;;9105:483;-1:-1:-1;9604:3:1;;8314:1299;-1:-1:-1;;;;;;;;;;;8314:1299:1:o;10323:488::-;-1:-1:-1;;;;;10592:15:1;;;10574:34;;10644:15;;10639:2;10624:18;;10617:43;10691:2;10676:18;;10669:34;;;10739:3;10734:2;10719:18;;10712:31;;;10517:4;;10760:45;;10785:19;;10777:6;10760:45;:::i;:::-;10752:53;10526:285;-1:-1:-1;;;;;;10526:285:1:o;11287:219::-;11436:2;11425:9;11418:21;11399:4;11456:44;11496:2;11485:9;11481:18;11473:6;11456:44;:::i;11923:414::-;12125:2;12107:21;;;12164:2;12144:18;;;12137:30;12203:34;12198:2;12183:18;;12176:62;-1:-1:-1;;;12269:2:1;12254:18;;12247:48;12327:3;12312:19;;12097:240::o;13821:402::-;14023:2;14005:21;;;14062:2;14042:18;;;14035:30;14101:34;14096:2;14081:18;;14074:62;-1:-1:-1;;;14167:2:1;14152:18;;14145:36;14213:3;14198:19;;13995:228::o;14987:408::-;15189:2;15171:21;;;15228:2;15208:18;;;15201:30;15267:34;15262:2;15247:18;;15240:62;-1:-1:-1;;;15333:2:1;15318:18;;15311:42;15385:3;15370:19;;15161:234::o;17005:407::-;17207:2;17189:21;;;17246:2;17226:18;;;17219:30;17285:34;17280:2;17265:18;;17258:62;-1:-1:-1;;;17351:2:1;17336:18;;17329:41;17402:3;17387:19;;17179:233::o;20146:356::-;20348:2;20330:21;;;20367:18;;;20360:30;20426:34;20421:2;20406:18;;20399:62;20493:2;20478:18;;20320:182::o;22561:413::-;22763:2;22745:21;;;22802:2;22782:18;;;22775:30;22841:34;22836:2;22821:18;;22814:62;-1:-1:-1;;;22907:2:1;22892:18;;22885:47;22964:3;22949:19;;22735:239::o;23337:406::-;23539:2;23521:21;;;23578:2;23558:18;;;23551:30;23617:34;23612:2;23597:18;;23590:62;-1:-1:-1;;;23683:2:1;23668:18;;23661:40;23733:3;23718:19;;23511:232::o;26376:128::-;26416:3;26447:1;26443:6;26440:1;26437:13;26434:2;;;26453:18;;:::i;:::-;-1:-1:-1;26489:9:1;;26424:80::o;26509:120::-;26549:1;26575;26565:2;;26580:18;;:::i;:::-;-1:-1:-1;26614:9:1;;26555:74::o;26634:168::-;26674:7;26740:1;26736;26732:6;26728:14;26725:1;26722:21;26717:1;26710:9;26703:17;26699:45;26696:2;;;26747:18;;:::i;:::-;-1:-1:-1;26787:9:1;;26686:116::o;26807:125::-;26847:4;26875:1;26872;26869:8;26866:2;;;26880:18;;:::i;:::-;-1:-1:-1;26917:9:1;;26856:76::o;26937:258::-;27009:1;27019:113;27033:6;27030:1;27027:13;27019:113;;;27109:11;;;27103:18;27090:11;;;27083:39;27055:2;27048:10;27019:113;;;27150:6;27147:1;27144:13;27141:2;;;-1:-1:-1;;27185:1:1;27167:16;;27160:27;26990:205::o;27200:380::-;27279:1;27275:12;;;;27322;;;27343:2;;27397:4;27389:6;27385:17;27375:27;;27343:2;27450;27442:6;27439:14;27419:18;27416:38;27413:2;;;27496:10;27491:3;27487:20;27484:1;27477:31;27531:4;27528:1;27521:15;27559:4;27556:1;27549:15;27413:2;;27255:325;;;:::o;27585:135::-;27624:3;-1:-1:-1;;27645:17:1;;27642:2;;;27665:18;;:::i;:::-;-1:-1:-1;27712:1:1;27701:13;;27632:88::o;27725:112::-;27757:1;27783;27773:2;;27788:18;;:::i;:::-;-1:-1:-1;27822:9:1;;27763:74::o;27842:127::-;27903:10;27898:3;27894:20;27891:1;27884:31;27934:4;27931:1;27924:15;27958:4;27955:1;27948:15;27974:127;28035:10;28030:3;28026:20;28023:1;28016:31;28066:4;28063:1;28056:15;28090:4;28087:1;28080:15;28106:127;28167:10;28162:3;28158:20;28155:1;28148:31;28198:4;28195:1;28188:15;28222:4;28219:1;28212:15;28238:131;-1:-1:-1;;;;;28313:31:1;;28303:42;;28293:2;;28359:1;28356;28349:12;28374:118;28460:5;28453:13;28446:21;28439:5;28436:32;28426:2;;28482:1;28479;28472:12;28497:131;-1:-1:-1;;;;;;28571:32:1;;28561:43;;28551:2;;28618:1;28615;28608:12

Swarm Source

ipfs://1a7ffe6a88c44e538938e9ceba2504a11e82c96e9cf6bdf74e7a734d8cf47ba9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.