ETH Price: $3,056.84 (+1.56%)
Gas: 4 Gwei

Token

AnimalWorldWar (AWW)
 

Overview

Max Total Supply

1,728 AWW

Holders

579

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 AWW
0xbdf75e5d0552828360d43060b0f8f84ce72738d8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AnimalWorldWar

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-02
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

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

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

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

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

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

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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;


    string public _baseURI;
    /**
     * @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 base = baseURI();
        return bytes(base).length > 0 ? string(abi.encodePacked(base, 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 _baseURI;
    }

    /**
     * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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(to).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 {}
}

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

pragma solidity ^0.8.0;

contract AnimalWorldWar  is ERC721Enumerable, Ownable
{
    using SafeMath for uint256;
    using Address for address;
    using Strings for uint256;

    uint public constant _TOTALSUPPLY = 10000;
    uint public constant MAX_QT_PER_TRANSACTION = 20;
    uint256 public price = 40000000000000000; // 0.04 ETH
    bool public isPaused = true;
    uint public reserve = 80;

    constructor() ERC721("AnimalWorldWar", "AWW")  {
        setBaseURI("https://animalworldwar.io/token/");
    }
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseURI = baseURI;
    }

    function setPrice(uint256 _newPrice) public onlyOwner() {
        price = _newPrice;
    }

    function reserveTokens(uint quantity) public onlyOwner {
        uint supply = totalSupply();
        uint i;
        require(quantity <= reserve, "The quantity exceeds the reserve.");
        reserve -= quantity;
        for (i = 0; i < quantity; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    modifier isSaleOpen{
        require(totalSupply() < _TOTALSUPPLY, "Sale end");
        _;
    }
    function flipPauseStatus() public onlyOwner {
        isPaused = !isPaused;
    }

    function mint(uint chosenAmount) public payable isSaleOpen{
        require(isPaused == false, "Sale is not active at the moment");
        require(chosenAmount > 0, "Number of tokens can not be less than or equal to 0");
        require(chosenAmount <= MAX_QT_PER_TRANSACTION,"Can only mint up to 20 per purchase");
        require(totalSupply().add(chosenAmount + reserve) <= _TOTALSUPPLY, "Purchase would exceed max supply");
        require(price.mul(chosenAmount) == msg.value, "Sent ether value is incorrect");

        for (uint i = 0; i < chosenAmount; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }
 
    function tokensOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 count = balanceOf(_owner);
        uint256[] memory result = new uint256[](count);
        for (uint256 index = 0; index < count; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":[],"name":"MAX_QT_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_TOTALSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"flipPauseStatus","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"chosenAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","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"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052668e1bc9bf040000600c556001600d60006101000a81548160ff0219169083151502179055506050600e553480156200003c57600080fd5b506040518060400160405280600e81526020017f416e696d616c576f726c645761720000000000000000000000000000000000008152506040518060400160405280600381526020017f41575700000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c1929190620002b7565b508060019080519060200190620000da929190620002b7565b5050506000620000ef620001da60201b60201c565b905080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001d46040518060400160405280602081526020017f68747470733a2f2f616e696d616c776f726c647761722e696f2f746f6b656e2f815250620001e260201b60201c565b62000441565b600033905090565b620001f2620001da60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002186200028d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000271576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026890620003a9565b60405180910390fd5b806006908051906020019062000289929190620002b7565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002c590620003dc565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b600062000376602083620003cb565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620003c48162000367565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620003f557607f821691505b602082108114156200040c576200040b62000412565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6143e380620004516000396000f3fe6080604052600436106101e35760003560e01c80638462151c11610102578063b88d4fde11610095578063db4568e211610064578063db4568e2146106e5578063e985e9c514610710578063f2fde38b1461074d578063fa62884c14610776576101e3565b8063b88d4fde1461062b578063c87b56dd14610654578063cd3293de14610691578063d031370b146106bc576101e3565b8063a035b1fe116100d1578063a035b1fe14610590578063a0712d68146105bb578063a22cb465146105d7578063b187bd2614610600576101e3565b80638462151c146104d45780638da5cb5b1461051157806391b7f5ed1461053c57806395d89b4114610565576101e3565b80633ccfd60b1161017a5780636352211e116101495780636352211e1461041857806370a0823114610455578063715018a614610492578063743976a0146104a9576101e3565b80633ccfd60b1461037257806342842e0e146103895780634f6ccce7146103b257806355f804b3146103ef576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a5780633703ea3914610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613004565b61078d565b60405161021c9190613b88565b60405180910390f35b34801561023157600080fd5b5061023a610807565b6040516102479190613ba3565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613097565b610899565b6040516102849190613aff565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612fc8565b61091e565b005b3480156102c257600080fd5b506102cb610a36565b6040516102d89190613ee5565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612ec2565b610a43565b005b34801561031657600080fd5b50610331600480360381019061032c9190612fc8565b610aa3565b60405161033e9190613ee5565b60405180910390f35b34801561035357600080fd5b5061035c610b48565b6040516103699190613ee5565b60405180910390f35b34801561037e57600080fd5b50610387610b4d565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612ec2565b610c18565b005b3480156103be57600080fd5b506103d960048036038101906103d49190613097565b610c38565b6040516103e69190613ee5565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613056565b610ccf565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613097565b610d65565b60405161044c9190613aff565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612e5d565b610e17565b6040516104899190613ee5565b60405180910390f35b34801561049e57600080fd5b506104a7610ecf565b005b3480156104b557600080fd5b506104be610fd4565b6040516104cb9190613ba3565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612e5d565b611062565b6040516105089190613b66565b60405180910390f35b34801561051d57600080fd5b5061052661115c565b6040516105339190613aff565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190613097565b611186565b005b34801561057157600080fd5b5061057a61120c565b6040516105879190613ba3565b60405180910390f35b34801561059c57600080fd5b506105a561129e565b6040516105b29190613ee5565b60405180910390f35b6105d560048036038101906105d09190613097565b6112a4565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612f8c565b6114c0565b005b34801561060c57600080fd5b50610615611641565b6040516106229190613b88565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612f11565b611654565b005b34801561066057600080fd5b5061067b60048036038101906106769190613097565b6116b6565b6040516106889190613ba3565b60405180910390f35b34801561069d57600080fd5b506106a661175d565b6040516106b39190613ee5565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190613097565b611763565b005b3480156106f157600080fd5b506106fa611885565b6040516107079190613ee5565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190612e86565b61188b565b6040516107449190613b88565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190612e5d565b61191f565b005b34801561078257600080fd5b5061078b611a17565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080057506107ff82611abf565b5b9050919050565b606060008054610816906141d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610842906141d8565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b60006108a482611ba1565b6108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90613de5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092982610d65565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190613e65565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b9611c0d565b73ffffffffffffffffffffffffffffffffffffffff1614806109e857506109e7816109e2611c0d565b61188b565b5b610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90613d05565b60405180910390fd5b610a318383611c15565b505050565b6000600980549050905090565b610a54610a4e611c0d565b82611cce565b610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90613e85565b60405180910390fd5b610a9e838383611dac565b505050565b6000610aae83610e17565b8210610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613be5565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601481565b610b55611c0d565b73ffffffffffffffffffffffffffffffffffffffff16610b7361115c565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090613e05565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c14573d6000803e3d6000fd5b5050565b610c3383838360405180602001604052806000815250611654565b505050565b6000610c42610a36565b8210610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613ea5565b60405180910390fd5b60098281548110610cbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cd7611c0d565b73ffffffffffffffffffffffffffffffffffffffff16610cf561115c565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613e05565b60405180910390fd5b8060069080519060200190610d61929190612c81565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590613d45565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90613d25565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ed7611c0d565b73ffffffffffffffffffffffffffffffffffffffff16610ef561115c565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613e05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3610fd26000612008565b565b60068054610fe1906141d8565b80601f016020809104026020016040519081016040528092919081815260200182805461100d906141d8565b801561105a5780601f1061102f5761010080835404028352916020019161105a565b820191906000526020600020905b81548152906001019060200180831161103d57829003601f168201915b505050505081565b6060600061106f83610e17565b905060008167ffffffffffffffff8111156110b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110e15781602001602082028036833780820191505090505b50905060005b82811015611151576110f98582610aa3565b828281518110611132577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806111499061420a565b9150506110e7565b508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61118e611c0d565b73ffffffffffffffffffffffffffffffffffffffff166111ac61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990613e05565b60405180910390fd5b80600c8190555050565b60606001805461121b906141d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611247906141d8565b80156112945780601f1061126957610100808354040283529160200191611294565b820191906000526020600020905b81548152906001019060200180831161127757829003601f168201915b5050505050905090565b600c5481565b6127106112af610a36565b106112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690613dc5565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90613ec5565b60405180910390fd5b60008111611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613bc5565b60405180910390fd5b60148111156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c390613ce5565b60405180910390fd5b6127106113f6600e54836113e0919061400d565b6113e8610a36565b6120ce90919063ffffffff16565b1115611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90613d85565b60405180910390fd5b3461144d82600c546120e490919063ffffffff16565b1461148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613d65565b60405180910390fd5b60005b818110156114bc576114a9336114a4610a36565b6120fa565b80806114b49061420a565b915050611490565b5050565b6114c8611c0d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613ca5565b60405180910390fd5b8060056000611543611c0d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f0611c0d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116359190613b88565b60405180910390a35050565b600d60009054906101000a900460ff1681565b61166561165f611c0d565b83611cce565b6116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613e85565b60405180910390fd5b6116b084848484612118565b50505050565b60606116c182611ba1565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613e45565b60405180910390fd5b600061170a612174565b9050600081511161172a5760405180602001604052806000815250611755565b8061173484612206565b604051602001611745929190613adb565b6040516020818303038152906040525b915050919050565b600e5481565b61176b611c0d565b73ffffffffffffffffffffffffffffffffffffffff1661178961115c565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613e05565b60405180910390fd5b60006117e9610a36565b90506000600e54831115611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613c65565b60405180910390fd5b82600e600082825461184491906140ee565b92505081905550600090505b828110156118805761186d338284611868919061400d565b6120fa565b80806118789061420a565b915050611850565b505050565b61271081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611927611c0d565b73ffffffffffffffffffffffffffffffffffffffff1661194561115c565b73ffffffffffffffffffffffffffffffffffffffff161461199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613e05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290613c25565b60405180910390fd5b611a1481612008565b50565b611a1f611c0d565b73ffffffffffffffffffffffffffffffffffffffff16611a3d61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90613e05565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b8a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b9a5750611b99826123b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c8883610d65565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cd982611ba1565b611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f90613cc5565b60405180910390fd5b6000611d2383610d65565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d9257508373ffffffffffffffffffffffffffffffffffffffff16611d7a84610899565b73ffffffffffffffffffffffffffffffffffffffff16145b80611da35750611da2818561188b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dcc82610d65565b73ffffffffffffffffffffffffffffffffffffffff1614611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613e25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613c85565b60405180910390fd5b611e9d83838361241d565b611ea8600082611c15565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ef891906140ee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4f919061400d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836120dc919061400d565b905092915050565b600081836120f29190614094565b905092915050565b612114828260405180602001604052806000815250612531565b5050565b612123848484611dac565b61212f8484848461258c565b61216e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216590613c05565b60405180910390fd5b50505050565b606060068054612183906141d8565b80601f01602080910402602001604051908101604052809291908181526020018280546121af906141d8565b80156121fc5780601f106121d1576101008083540402835291602001916121fc565b820191906000526020600020905b8154815290600101906020018083116121df57829003601f168201915b5050505050905090565b6060600082141561224e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123ae565b600082905060005b600082146122805780806122699061420a565b915050600a826122799190614063565b9150612256565b60008167ffffffffffffffff8111156122c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122f45781602001600182028036833780820191505090505b5090505b600085146123a75760018261230d91906140ee565b9150600a8561231c9190614253565b6030612328919061400d565b60f81b818381518110612364577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123a09190614063565b94506122f8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612428838383612723565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561246b5761246681612728565b6124aa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124a9576124a88382612771565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ed576124e8816128de565b61252c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461252b5761252a8282612a21565b5b5b505050565b61253b8383612aa0565b612548600084848461258c565b612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90613c05565b60405180910390fd5b505050565b60006125ad8473ffffffffffffffffffffffffffffffffffffffff16612c6e565b15612716578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d6611c0d565b8786866040518563ffffffff1660e01b81526004016125f89493929190613b1a565b602060405180830381600087803b15801561261257600080fd5b505af192505050801561264357506040513d601f19601f82011682018060405250810190612640919061302d565b60015b6126c6573d8060008114612673576040519150601f19603f3d011682016040523d82523d6000602084013e612678565b606091505b506000815114156126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590613c05565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061271b565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161277e84610e17565b61278891906140ee565b905060006008600084815260200190815260200160002054905081811461286d576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506128f291906140ee565b90506000600a6000848152602001908152602001600020549050600060098381548110612948577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612990577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612a05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a2c83610e17565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0790613da5565b60405180910390fd5b612b1981611ba1565b15612b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5090613c45565b60405180910390fd5b612b656000838361241d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb5919061400d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c8d906141d8565b90600052602060002090601f016020900481019282612caf5760008555612cf6565b82601f10612cc857805160ff1916838001178555612cf6565b82800160010185558215612cf6579182015b82811115612cf5578251825591602001919060010190612cda565b5b509050612d039190612d07565b5090565b5b80821115612d20576000816000905550600101612d08565b5090565b6000612d37612d3284613f31565b613f00565b905082815260208101848484011115612d4f57600080fd5b612d5a848285614196565b509392505050565b6000612d75612d7084613f61565b613f00565b905082815260208101848484011115612d8d57600080fd5b612d98848285614196565b509392505050565b600081359050612daf81614351565b92915050565b600081359050612dc481614368565b92915050565b600081359050612dd98161437f565b92915050565b600081519050612dee8161437f565b92915050565b600082601f830112612e0557600080fd5b8135612e15848260208601612d24565b91505092915050565b600082601f830112612e2f57600080fd5b8135612e3f848260208601612d62565b91505092915050565b600081359050612e5781614396565b92915050565b600060208284031215612e6f57600080fd5b6000612e7d84828501612da0565b91505092915050565b60008060408385031215612e9957600080fd5b6000612ea785828601612da0565b9250506020612eb885828601612da0565b9150509250929050565b600080600060608486031215612ed757600080fd5b6000612ee586828701612da0565b9350506020612ef686828701612da0565b9250506040612f0786828701612e48565b9150509250925092565b60008060008060808587031215612f2757600080fd5b6000612f3587828801612da0565b9450506020612f4687828801612da0565b9350506040612f5787828801612e48565b925050606085013567ffffffffffffffff811115612f7457600080fd5b612f8087828801612df4565b91505092959194509250565b60008060408385031215612f9f57600080fd5b6000612fad85828601612da0565b9250506020612fbe85828601612db5565b9150509250929050565b60008060408385031215612fdb57600080fd5b6000612fe985828601612da0565b9250506020612ffa85828601612e48565b9150509250929050565b60006020828403121561301657600080fd5b600061302484828501612dca565b91505092915050565b60006020828403121561303f57600080fd5b600061304d84828501612ddf565b91505092915050565b60006020828403121561306857600080fd5b600082013567ffffffffffffffff81111561308257600080fd5b61308e84828501612e1e565b91505092915050565b6000602082840312156130a957600080fd5b60006130b784828501612e48565b91505092915050565b60006130cc8383613abd565b60208301905092915050565b6130e181614122565b82525050565b60006130f282613fa1565b6130fc8185613fcf565b935061310783613f91565b8060005b8381101561313857815161311f88826130c0565b975061312a83613fc2565b92505060018101905061310b565b5085935050505092915050565b61314e81614134565b82525050565b600061315f82613fac565b6131698185613fe0565b93506131798185602086016141a5565b61318281614340565b840191505092915050565b600061319882613fb7565b6131a28185613ff1565b93506131b28185602086016141a5565b6131bb81614340565b840191505092915050565b60006131d182613fb7565b6131db8185614002565b93506131eb8185602086016141a5565b80840191505092915050565b6000613204603383613ff1565b91507f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008301527f207468616e206f7220657175616c20746f2030000000000000000000000000006020830152604082019050919050565b600061326a602b83613ff1565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006132d0603283613ff1565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613336602683613ff1565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061339c601c83613ff1565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006133dc602183613ff1565b91507f546865207175616e74697479206578636565647320746865207265736572766560008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613442602483613ff1565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134a8601983613ff1565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006134e8602c83613ff1565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061354e602383613ff1565b91507f43616e206f6e6c79206d696e7420757020746f2032302070657220707572636860008301527f61736500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135b4603883613ff1565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061361a602a83613ff1565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613680602983613ff1565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136e6601d83613ff1565b91507f53656e742065746865722076616c756520697320696e636f72726563740000006000830152602082019050919050565b6000613726602083613ff1565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b6000613766602083613ff1565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006137a6600883613ff1565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b60006137e6602c83613ff1565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061384c602083613ff1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061388c602983613ff1565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138f2602f83613ff1565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613958602183613ff1565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139be603183613ff1565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613a24602c83613ff1565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613a8a602083613ff1565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b613ac68161418c565b82525050565b613ad58161418c565b82525050565b6000613ae782856131c6565b9150613af382846131c6565b91508190509392505050565b6000602082019050613b1460008301846130d8565b92915050565b6000608082019050613b2f60008301876130d8565b613b3c60208301866130d8565b613b496040830185613acc565b8181036060830152613b5b8184613154565b905095945050505050565b60006020820190508181036000830152613b8081846130e7565b905092915050565b6000602082019050613b9d6000830184613145565b92915050565b60006020820190508181036000830152613bbd818461318d565b905092915050565b60006020820190508181036000830152613bde816131f7565b9050919050565b60006020820190508181036000830152613bfe8161325d565b9050919050565b60006020820190508181036000830152613c1e816132c3565b9050919050565b60006020820190508181036000830152613c3e81613329565b9050919050565b60006020820190508181036000830152613c5e8161338f565b9050919050565b60006020820190508181036000830152613c7e816133cf565b9050919050565b60006020820190508181036000830152613c9e81613435565b9050919050565b60006020820190508181036000830152613cbe8161349b565b9050919050565b60006020820190508181036000830152613cde816134db565b9050919050565b60006020820190508181036000830152613cfe81613541565b9050919050565b60006020820190508181036000830152613d1e816135a7565b9050919050565b60006020820190508181036000830152613d3e8161360d565b9050919050565b60006020820190508181036000830152613d5e81613673565b9050919050565b60006020820190508181036000830152613d7e816136d9565b9050919050565b60006020820190508181036000830152613d9e81613719565b9050919050565b60006020820190508181036000830152613dbe81613759565b9050919050565b60006020820190508181036000830152613dde81613799565b9050919050565b60006020820190508181036000830152613dfe816137d9565b9050919050565b60006020820190508181036000830152613e1e8161383f565b9050919050565b60006020820190508181036000830152613e3e8161387f565b9050919050565b60006020820190508181036000830152613e5e816138e5565b9050919050565b60006020820190508181036000830152613e7e8161394b565b9050919050565b60006020820190508181036000830152613e9e816139b1565b9050919050565b60006020820190508181036000830152613ebe81613a17565b9050919050565b60006020820190508181036000830152613ede81613a7d565b9050919050565b6000602082019050613efa6000830184613acc565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613f2757613f26614311565b5b8060405250919050565b600067ffffffffffffffff821115613f4c57613f4b614311565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613f7c57613f7b614311565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140188261418c565b91506140238361418c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405857614057614284565b5b828201905092915050565b600061406e8261418c565b91506140798361418c565b925082614089576140886142b3565b5b828204905092915050565b600061409f8261418c565b91506140aa8361418c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e3576140e2614284565b5b828202905092915050565b60006140f98261418c565b91506141048361418c565b92508282101561411757614116614284565b5b828203905092915050565b600061412d8261416c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141c35780820151818401526020810190506141a8565b838111156141d2576000848401525b50505050565b600060028204905060018216806141f057607f821691505b60208210811415614204576142036142e2565b5b50919050565b60006142158261418c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561424857614247614284565b5b600182019050919050565b600061425e8261418c565b91506142698361418c565b925082614279576142786142b3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61435a81614122565b811461436557600080fd5b50565b61437181614134565b811461437c57600080fd5b50565b61438881614140565b811461439357600080fd5b50565b61439f8161418c565b81146143aa57600080fd5b5056fea2646970667358221220d2bb49090abed082a7bc5fd249e22d9c3ad1a0bf4faaae0b276a7b3403182c0164736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638462151c11610102578063b88d4fde11610095578063db4568e211610064578063db4568e2146106e5578063e985e9c514610710578063f2fde38b1461074d578063fa62884c14610776576101e3565b8063b88d4fde1461062b578063c87b56dd14610654578063cd3293de14610691578063d031370b146106bc576101e3565b8063a035b1fe116100d1578063a035b1fe14610590578063a0712d68146105bb578063a22cb465146105d7578063b187bd2614610600576101e3565b80638462151c146104d45780638da5cb5b1461051157806391b7f5ed1461053c57806395d89b4114610565576101e3565b80633ccfd60b1161017a5780636352211e116101495780636352211e1461041857806370a0823114610455578063715018a614610492578063743976a0146104a9576101e3565b80633ccfd60b1461037257806342842e0e146103895780634f6ccce7146103b257806355f804b3146103ef576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632f745c591461030a5780633703ea3914610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613004565b61078d565b60405161021c9190613b88565b60405180910390f35b34801561023157600080fd5b5061023a610807565b6040516102479190613ba3565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613097565b610899565b6040516102849190613aff565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612fc8565b61091e565b005b3480156102c257600080fd5b506102cb610a36565b6040516102d89190613ee5565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190612ec2565b610a43565b005b34801561031657600080fd5b50610331600480360381019061032c9190612fc8565b610aa3565b60405161033e9190613ee5565b60405180910390f35b34801561035357600080fd5b5061035c610b48565b6040516103699190613ee5565b60405180910390f35b34801561037e57600080fd5b50610387610b4d565b005b34801561039557600080fd5b506103b060048036038101906103ab9190612ec2565b610c18565b005b3480156103be57600080fd5b506103d960048036038101906103d49190613097565b610c38565b6040516103e69190613ee5565b60405180910390f35b3480156103fb57600080fd5b5061041660048036038101906104119190613056565b610ccf565b005b34801561042457600080fd5b5061043f600480360381019061043a9190613097565b610d65565b60405161044c9190613aff565b60405180910390f35b34801561046157600080fd5b5061047c60048036038101906104779190612e5d565b610e17565b6040516104899190613ee5565b60405180910390f35b34801561049e57600080fd5b506104a7610ecf565b005b3480156104b557600080fd5b506104be610fd4565b6040516104cb9190613ba3565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612e5d565b611062565b6040516105089190613b66565b60405180910390f35b34801561051d57600080fd5b5061052661115c565b6040516105339190613aff565b60405180910390f35b34801561054857600080fd5b50610563600480360381019061055e9190613097565b611186565b005b34801561057157600080fd5b5061057a61120c565b6040516105879190613ba3565b60405180910390f35b34801561059c57600080fd5b506105a561129e565b6040516105b29190613ee5565b60405180910390f35b6105d560048036038101906105d09190613097565b6112a4565b005b3480156105e357600080fd5b506105fe60048036038101906105f99190612f8c565b6114c0565b005b34801561060c57600080fd5b50610615611641565b6040516106229190613b88565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612f11565b611654565b005b34801561066057600080fd5b5061067b60048036038101906106769190613097565b6116b6565b6040516106889190613ba3565b60405180910390f35b34801561069d57600080fd5b506106a661175d565b6040516106b39190613ee5565b60405180910390f35b3480156106c857600080fd5b506106e360048036038101906106de9190613097565b611763565b005b3480156106f157600080fd5b506106fa611885565b6040516107079190613ee5565b60405180910390f35b34801561071c57600080fd5b5061073760048036038101906107329190612e86565b61188b565b6040516107449190613b88565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190612e5d565b61191f565b005b34801561078257600080fd5b5061078b611a17565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080057506107ff82611abf565b5b9050919050565b606060008054610816906141d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610842906141d8565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b60006108a482611ba1565b6108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90613de5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061092982610d65565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190613e65565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109b9611c0d565b73ffffffffffffffffffffffffffffffffffffffff1614806109e857506109e7816109e2611c0d565b61188b565b5b610a27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1e90613d05565b60405180910390fd5b610a318383611c15565b505050565b6000600980549050905090565b610a54610a4e611c0d565b82611cce565b610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90613e85565b60405180910390fd5b610a9e838383611dac565b505050565b6000610aae83610e17565b8210610aef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae690613be5565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601481565b610b55611c0d565b73ffffffffffffffffffffffffffffffffffffffff16610b7361115c565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090613e05565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c14573d6000803e3d6000fd5b5050565b610c3383838360405180602001604052806000815250611654565b505050565b6000610c42610a36565b8210610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90613ea5565b60405180910390fd5b60098281548110610cbd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cd7611c0d565b73ffffffffffffffffffffffffffffffffffffffff16610cf561115c565b73ffffffffffffffffffffffffffffffffffffffff1614610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290613e05565b60405180910390fd5b8060069080519060200190610d61929190612c81565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590613d45565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f90613d25565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ed7611c0d565b73ffffffffffffffffffffffffffffffffffffffff16610ef561115c565b73ffffffffffffffffffffffffffffffffffffffff1614610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613e05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3610fd26000612008565b565b60068054610fe1906141d8565b80601f016020809104026020016040519081016040528092919081815260200182805461100d906141d8565b801561105a5780601f1061102f5761010080835404028352916020019161105a565b820191906000526020600020905b81548152906001019060200180831161103d57829003601f168201915b505050505081565b6060600061106f83610e17565b905060008167ffffffffffffffff8111156110b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156110e15781602001602082028036833780820191505090505b50905060005b82811015611151576110f98582610aa3565b828281518110611132577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806111499061420a565b9150506110e7565b508092505050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61118e611c0d565b73ffffffffffffffffffffffffffffffffffffffff166111ac61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f990613e05565b60405180910390fd5b80600c8190555050565b60606001805461121b906141d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611247906141d8565b80156112945780601f1061126957610100808354040283529160200191611294565b820191906000526020600020905b81548152906001019060200180831161127757829003601f168201915b5050505050905090565b600c5481565b6127106112af610a36565b106112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e690613dc5565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90613ec5565b60405180910390fd5b60008111611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613bc5565b60405180910390fd5b60148111156113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c390613ce5565b60405180910390fd5b6127106113f6600e54836113e0919061400d565b6113e8610a36565b6120ce90919063ffffffff16565b1115611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90613d85565b60405180910390fd5b3461144d82600c546120e490919063ffffffff16565b1461148d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148490613d65565b60405180910390fd5b60005b818110156114bc576114a9336114a4610a36565b6120fa565b80806114b49061420a565b915050611490565b5050565b6114c8611c0d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611536576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152d90613ca5565b60405180910390fd5b8060056000611543611c0d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f0611c0d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116359190613b88565b60405180910390a35050565b600d60009054906101000a900460ff1681565b61166561165f611c0d565b83611cce565b6116a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169b90613e85565b60405180910390fd5b6116b084848484612118565b50505050565b60606116c182611ba1565b611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f790613e45565b60405180910390fd5b600061170a612174565b9050600081511161172a5760405180602001604052806000815250611755565b8061173484612206565b604051602001611745929190613adb565b6040516020818303038152906040525b915050919050565b600e5481565b61176b611c0d565b73ffffffffffffffffffffffffffffffffffffffff1661178961115c565b73ffffffffffffffffffffffffffffffffffffffff16146117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690613e05565b60405180910390fd5b60006117e9610a36565b90506000600e54831115611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990613c65565b60405180910390fd5b82600e600082825461184491906140ee565b92505081905550600090505b828110156118805761186d338284611868919061400d565b6120fa565b80806118789061420a565b915050611850565b505050565b61271081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611927611c0d565b73ffffffffffffffffffffffffffffffffffffffff1661194561115c565b73ffffffffffffffffffffffffffffffffffffffff161461199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613e05565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0290613c25565b60405180910390fd5b611a1481612008565b50565b611a1f611c0d565b73ffffffffffffffffffffffffffffffffffffffff16611a3d61115c565b73ffffffffffffffffffffffffffffffffffffffff1614611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a90613e05565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b8a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b9a5750611b99826123b3565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c8883610d65565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611cd982611ba1565b611d18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0f90613cc5565b60405180910390fd5b6000611d2383610d65565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d9257508373ffffffffffffffffffffffffffffffffffffffff16611d7a84610899565b73ffffffffffffffffffffffffffffffffffffffff16145b80611da35750611da2818561188b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611dcc82610d65565b73ffffffffffffffffffffffffffffffffffffffff1614611e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1990613e25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8990613c85565b60405180910390fd5b611e9d83838361241d565b611ea8600082611c15565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ef891906140ee565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4f919061400d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836120dc919061400d565b905092915050565b600081836120f29190614094565b905092915050565b612114828260405180602001604052806000815250612531565b5050565b612123848484611dac565b61212f8484848461258c565b61216e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216590613c05565b60405180910390fd5b50505050565b606060068054612183906141d8565b80601f01602080910402602001604051908101604052809291908181526020018280546121af906141d8565b80156121fc5780601f106121d1576101008083540402835291602001916121fc565b820191906000526020600020905b8154815290600101906020018083116121df57829003601f168201915b5050505050905090565b6060600082141561224e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123ae565b600082905060005b600082146122805780806122699061420a565b915050600a826122799190614063565b9150612256565b60008167ffffffffffffffff8111156122c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122f45781602001600182028036833780820191505090505b5090505b600085146123a75760018261230d91906140ee565b9150600a8561231c9190614253565b6030612328919061400d565b60f81b818381518110612364577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123a09190614063565b94506122f8565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612428838383612723565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561246b5761246681612728565b6124aa565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124a9576124a88382612771565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ed576124e8816128de565b61252c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461252b5761252a8282612a21565b5b5b505050565b61253b8383612aa0565b612548600084848461258c565b612587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257e90613c05565b60405180910390fd5b505050565b60006125ad8473ffffffffffffffffffffffffffffffffffffffff16612c6e565b15612716578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125d6611c0d565b8786866040518563ffffffff1660e01b81526004016125f89493929190613b1a565b602060405180830381600087803b15801561261257600080fd5b505af192505050801561264357506040513d601f19601f82011682018060405250810190612640919061302d565b60015b6126c6573d8060008114612673576040519150601f19603f3d011682016040523d82523d6000602084013e612678565b606091505b506000815114156126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590613c05565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061271b565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161277e84610e17565b61278891906140ee565b905060006008600084815260200190815260200160002054905081811461286d576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506128f291906140ee565b90506000600a6000848152602001908152602001600020549050600060098381548110612948577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110612990577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a6000858152602001908152602001600020600090556009805480612a05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612a2c83610e17565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0790613da5565b60405180910390fd5b612b1981611ba1565b15612b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5090613c45565b60405180910390fd5b612b656000838361241d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bb5919061400d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c8d906141d8565b90600052602060002090601f016020900481019282612caf5760008555612cf6565b82601f10612cc857805160ff1916838001178555612cf6565b82800160010185558215612cf6579182015b82811115612cf5578251825591602001919060010190612cda565b5b509050612d039190612d07565b5090565b5b80821115612d20576000816000905550600101612d08565b5090565b6000612d37612d3284613f31565b613f00565b905082815260208101848484011115612d4f57600080fd5b612d5a848285614196565b509392505050565b6000612d75612d7084613f61565b613f00565b905082815260208101848484011115612d8d57600080fd5b612d98848285614196565b509392505050565b600081359050612daf81614351565b92915050565b600081359050612dc481614368565b92915050565b600081359050612dd98161437f565b92915050565b600081519050612dee8161437f565b92915050565b600082601f830112612e0557600080fd5b8135612e15848260208601612d24565b91505092915050565b600082601f830112612e2f57600080fd5b8135612e3f848260208601612d62565b91505092915050565b600081359050612e5781614396565b92915050565b600060208284031215612e6f57600080fd5b6000612e7d84828501612da0565b91505092915050565b60008060408385031215612e9957600080fd5b6000612ea785828601612da0565b9250506020612eb885828601612da0565b9150509250929050565b600080600060608486031215612ed757600080fd5b6000612ee586828701612da0565b9350506020612ef686828701612da0565b9250506040612f0786828701612e48565b9150509250925092565b60008060008060808587031215612f2757600080fd5b6000612f3587828801612da0565b9450506020612f4687828801612da0565b9350506040612f5787828801612e48565b925050606085013567ffffffffffffffff811115612f7457600080fd5b612f8087828801612df4565b91505092959194509250565b60008060408385031215612f9f57600080fd5b6000612fad85828601612da0565b9250506020612fbe85828601612db5565b9150509250929050565b60008060408385031215612fdb57600080fd5b6000612fe985828601612da0565b9250506020612ffa85828601612e48565b9150509250929050565b60006020828403121561301657600080fd5b600061302484828501612dca565b91505092915050565b60006020828403121561303f57600080fd5b600061304d84828501612ddf565b91505092915050565b60006020828403121561306857600080fd5b600082013567ffffffffffffffff81111561308257600080fd5b61308e84828501612e1e565b91505092915050565b6000602082840312156130a957600080fd5b60006130b784828501612e48565b91505092915050565b60006130cc8383613abd565b60208301905092915050565b6130e181614122565b82525050565b60006130f282613fa1565b6130fc8185613fcf565b935061310783613f91565b8060005b8381101561313857815161311f88826130c0565b975061312a83613fc2565b92505060018101905061310b565b5085935050505092915050565b61314e81614134565b82525050565b600061315f82613fac565b6131698185613fe0565b93506131798185602086016141a5565b61318281614340565b840191505092915050565b600061319882613fb7565b6131a28185613ff1565b93506131b28185602086016141a5565b6131bb81614340565b840191505092915050565b60006131d182613fb7565b6131db8185614002565b93506131eb8185602086016141a5565b80840191505092915050565b6000613204603383613ff1565b91507f4e756d626572206f6620746f6b656e732063616e206e6f74206265206c65737360008301527f207468616e206f7220657175616c20746f2030000000000000000000000000006020830152604082019050919050565b600061326a602b83613ff1565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006132d0603283613ff1565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613336602683613ff1565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061339c601c83613ff1565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006133dc602183613ff1565b91507f546865207175616e74697479206578636565647320746865207265736572766560008301527f2e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613442602483613ff1565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134a8601983613ff1565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006134e8602c83613ff1565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061354e602383613ff1565b91507f43616e206f6e6c79206d696e7420757020746f2032302070657220707572636860008301527f61736500000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006135b4603883613ff1565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061361a602a83613ff1565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613680602983613ff1565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006136e6601d83613ff1565b91507f53656e742065746865722076616c756520697320696e636f72726563740000006000830152602082019050919050565b6000613726602083613ff1565b91507f507572636861736520776f756c6420657863656564206d617820737570706c796000830152602082019050919050565b6000613766602083613ff1565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006137a6600883613ff1565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b60006137e6602c83613ff1565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061384c602083613ff1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061388c602983613ff1565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006138f2602f83613ff1565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613958602183613ff1565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006139be603183613ff1565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613a24602c83613ff1565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613a8a602083613ff1565b91507f53616c65206973206e6f742061637469766520617420746865206d6f6d656e746000830152602082019050919050565b613ac68161418c565b82525050565b613ad58161418c565b82525050565b6000613ae782856131c6565b9150613af382846131c6565b91508190509392505050565b6000602082019050613b1460008301846130d8565b92915050565b6000608082019050613b2f60008301876130d8565b613b3c60208301866130d8565b613b496040830185613acc565b8181036060830152613b5b8184613154565b905095945050505050565b60006020820190508181036000830152613b8081846130e7565b905092915050565b6000602082019050613b9d6000830184613145565b92915050565b60006020820190508181036000830152613bbd818461318d565b905092915050565b60006020820190508181036000830152613bde816131f7565b9050919050565b60006020820190508181036000830152613bfe8161325d565b9050919050565b60006020820190508181036000830152613c1e816132c3565b9050919050565b60006020820190508181036000830152613c3e81613329565b9050919050565b60006020820190508181036000830152613c5e8161338f565b9050919050565b60006020820190508181036000830152613c7e816133cf565b9050919050565b60006020820190508181036000830152613c9e81613435565b9050919050565b60006020820190508181036000830152613cbe8161349b565b9050919050565b60006020820190508181036000830152613cde816134db565b9050919050565b60006020820190508181036000830152613cfe81613541565b9050919050565b60006020820190508181036000830152613d1e816135a7565b9050919050565b60006020820190508181036000830152613d3e8161360d565b9050919050565b60006020820190508181036000830152613d5e81613673565b9050919050565b60006020820190508181036000830152613d7e816136d9565b9050919050565b60006020820190508181036000830152613d9e81613719565b9050919050565b60006020820190508181036000830152613dbe81613759565b9050919050565b60006020820190508181036000830152613dde81613799565b9050919050565b60006020820190508181036000830152613dfe816137d9565b9050919050565b60006020820190508181036000830152613e1e8161383f565b9050919050565b60006020820190508181036000830152613e3e8161387f565b9050919050565b60006020820190508181036000830152613e5e816138e5565b9050919050565b60006020820190508181036000830152613e7e8161394b565b9050919050565b60006020820190508181036000830152613e9e816139b1565b9050919050565b60006020820190508181036000830152613ebe81613a17565b9050919050565b60006020820190508181036000830152613ede81613a7d565b9050919050565b6000602082019050613efa6000830184613acc565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613f2757613f26614311565b5b8060405250919050565b600067ffffffffffffffff821115613f4c57613f4b614311565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613f7c57613f7b614311565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006140188261418c565b91506140238361418c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561405857614057614284565b5b828201905092915050565b600061406e8261418c565b91506140798361418c565b925082614089576140886142b3565b5b828204905092915050565b600061409f8261418c565b91506140aa8361418c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140e3576140e2614284565b5b828202905092915050565b60006140f98261418c565b91506141048361418c565b92508282101561411757614116614284565b5b828203905092915050565b600061412d8261416c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141c35780820151818401526020810190506141a8565b838111156141d2576000848401525b50505050565b600060028204905060018216806141f057607f821691505b60208210811415614204576142036142e2565b5b50919050565b60006142158261418c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561424857614247614284565b5b600182019050919050565b600061425e8261418c565b91506142698361418c565b925082614279576142786142b3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61435a81614122565b811461436557600080fd5b50565b61437181614134565b811461437c57600080fd5b50565b61438881614140565b811461439357600080fd5b50565b61439f8161418c565b81146143aa57600080fd5b5056fea2646970667358221220d2bb49090abed082a7bc5fd249e22d9c3ad1a0bf4faaae0b276a7b3403182c0164736f6c63430008000033

Deployed Bytecode Sourcemap

49175:2396:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30982:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32536:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32059:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43640:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33426:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43308:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49384:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51428:140;;;;;;;;;;;;;:::i;:::-;;33836:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43830:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49683:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30676:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30406:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28067:150;;;;;;;;;;;;;:::i;:::-;;29704:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51069:351;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27416:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49788:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31151:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49439:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50417:643;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32829:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49498:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34092:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31326:324;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49532:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49888:325;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49336:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33195:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28372:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50326:83;;;;;;;;;;;;;:::i;:::-;;43000:224;43102:4;43141:35;43126:50;;;:11;:50;;;;:90;;;;43180:36;43204:11;43180:23;:36::i;:::-;43126:90;43119:97;;43000:224;;;:::o;30982:100::-;31036:13;31069:5;31062:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30982:100;:::o;32536:221::-;32612:7;32640:16;32648:7;32640;:16::i;:::-;32632:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32725:15;:24;32741:7;32725:24;;;;;;;;;;;;;;;;;;;;;32718:31;;32536:221;;;:::o;32059:411::-;32140:13;32156:23;32171:7;32156:14;:23::i;:::-;32140:39;;32204:5;32198:11;;:2;:11;;;;32190:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32298:5;32282:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32307:37;32324:5;32331:12;:10;:12::i;:::-;32307:16;:37::i;:::-;32282:62;32260:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32441:21;32450:2;32454:7;32441:8;:21::i;:::-;32059:411;;;:::o;43640:113::-;43701:7;43728:10;:17;;;;43721:24;;43640:113;:::o;33426:339::-;33621:41;33640:12;:10;:12::i;:::-;33654:7;33621:18;:41::i;:::-;33613:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;33729:28;33739:4;33745:2;33749:7;33729:9;:28::i;:::-;33426:339;;;:::o;43308:256::-;43405:7;43441:23;43458:5;43441:16;:23::i;:::-;43433:5;:31;43425:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;43530:12;:19;43543:5;43530:19;;;;;;;;;;;;;;;:26;43550:5;43530:26;;;;;;;;;;;;43523:33;;43308:256;;;;:::o;49384:48::-;49430:2;49384:48;:::o;51428:140::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51476:12:::1;51491:21;51476:36;;51531:10;51523:28;;:37;51552:7;51523:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;27707:1;51428:140::o:0;33836:185::-;33974:39;33991:4;33997:2;34001:7;33974:39;;;;;;;;;;;;:16;:39::i;:::-;33836:185;;;:::o;43830:233::-;43905:7;43941:30;:28;:30::i;:::-;43933:5;:38;43925:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;44038:10;44049:5;44038:17;;;;;;;;;;;;;;;;;;;;;;;;44031:24;;43830:233;;;:::o;49683:97::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49765:7:::1;49754:8;:18;;;;;;;;;;;;:::i;:::-;;49683:97:::0;:::o;30676:239::-;30748:7;30768:13;30784:7;:16;30792:7;30784:16;;;;;;;;;;;;;;;;;;;;;30768:32;;30836:1;30819:19;;:5;:19;;;;30811:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30902:5;30895:12;;;30676:239;;;:::o;30406:208::-;30478:7;30523:1;30506:19;;:5;:19;;;;30498:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;30590:9;:16;30600:5;30590:16;;;;;;;;;;;;;;;;30583:23;;30406:208;;;:::o;28067:150::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28174:1:::1;28137:40;;28158:6;;;;;;;;;;;28137:40;;;;;;;;;;;;28188:21;28206:1;28188:9;:21::i;:::-;28067:150::o:0;29704:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51069:351::-;51129:16;51163:13;51179:17;51189:6;51179:9;:17::i;:::-;51163:33;;51207:23;51247:5;51233:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51207:46;;51269:13;51264:125;51296:5;51288;:13;51264:125;;;51343:34;51363:6;51371:5;51343:19;:34::i;:::-;51327:6;51334:5;51327:13;;;;;;;;;;;;;;;;;;;;;:50;;;;;51303:7;;;;;:::i;:::-;;;;51264:125;;;;51406:6;51399:13;;;;51069:351;;;:::o;27416:87::-;27462:7;27489:6;;;;;;;;;;;27482:13;;27416:87;:::o;49788:92::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49863:9:::1;49855:5;:17;;;;49788:92:::0;:::o;31151:104::-;31207:13;31240:7;31233:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31151:104;:::o;49439:40::-;;;;:::o;50417:643::-;49372:5;50259:13;:11;:13::i;:::-;:28;50251:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50506:5:::1;50494:17;;:8;;;;;;;;;;;:17;;;50486:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;50582:1;50567:12;:16;50559:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;49430:2;50658:12;:38;;50650:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;49372:5;50754:41;50787:7;;50772:12;:22;;;;:::i;:::-;50754:13;:11;:13::i;:::-;:17;;:41;;;;:::i;:::-;:57;;50746:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;50894:9;50867:23;50877:12;50867:5;;:9;;:23;;;;:::i;:::-;:36;50859:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;50955:6;50950:103;50971:12;50967:1;:16;50950:103;;;51005:36;51015:10;51027:13;:11;:13::i;:::-;51005:9;:36::i;:::-;50985:3;;;;;:::i;:::-;;;;50950:103;;;;50417:643:::0;:::o;32829:295::-;32944:12;:10;:12::i;:::-;32932:24;;:8;:24;;;;32924:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33044:8;32999:18;:32;33018:12;:10;:12::i;:::-;32999:32;;;;;;;;;;;;;;;:42;33032:8;32999:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33097:8;33068:48;;33083:12;:10;:12::i;:::-;33068:48;;;33107:8;33068:48;;;;;;:::i;:::-;;;;;;;;32829:295;;:::o;49498:27::-;;;;;;;;;;;;;:::o;34092:328::-;34267:41;34286:12;:10;:12::i;:::-;34300:7;34267:18;:41::i;:::-;34259:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34373:39;34387:4;34393:2;34397:7;34406:5;34373:13;:39::i;:::-;34092:328;;;;:::o;31326:324::-;31399:13;31433:16;31441:7;31433;:16::i;:::-;31425:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31514:18;31535:9;:7;:9::i;:::-;31514:30;;31583:1;31568:4;31562:18;:22;:80;;;;;;;;;;;;;;;;;31611:4;31617:18;:7;:16;:18::i;:::-;31594:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31562:80;31555:87;;;31326:324;;;:::o;49532:24::-;;;;:::o;49888:325::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49954:11:::1;49968:13;:11;:13::i;:::-;49954:27;;49992:6;50029:7;;50017:8;:19;;50009:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;50096:8;50085:7;;:19;;;;;;;:::i;:::-;;;;;;;;50124:1;50120:5;;50115:91;50131:8;50127:1;:12;50115:91;;;50161:33;50171:10;50192:1;50183:6;:10;;;;:::i;:::-;50161:9;:33::i;:::-;50141:3;;;;;:::i;:::-;;;;50115:91;;;27707:1;;49888:325:::0;:::o;49336:41::-;49372:5;49336:41;:::o;33195:164::-;33292:4;33316:18;:25;33335:5;33316:25;;;;;;;;;;;;;;;:35;33342:8;33316:35;;;;;;;;;;;;;;;;;;;;;;;;;33309:42;;33195:164;;;;:::o;28372:192::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28481:1:::1;28461:22;;:8;:22;;;;28453:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28537:19;28547:8;28537:9;:19::i;:::-;28372:192:::0;:::o;50326:83::-;27647:12;:10;:12::i;:::-;27636:23;;:7;:5;:7::i;:::-;:23;;;27628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50393:8:::1;;;;;;;;;;;50392:9;50381:8;;:20;;;;;;;;;;;;;;;;;;50326:83::o:0;30037:305::-;30139:4;30191:25;30176:40;;;:11;:40;;;;:105;;;;30248:33;30233:48;;;:11;:48;;;;30176:105;:158;;;;30298:36;30322:11;30298:23;:36::i;:::-;30176:158;30156:178;;30037:305;;;:::o;35930:127::-;35995:4;36047:1;36019:30;;:7;:16;36027:7;36019:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36012:37;;35930:127;;;:::o;26167:98::-;26220:7;26247:10;26240:17;;26167:98;:::o;39912:174::-;40014:2;39987:15;:24;40003:7;39987:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40070:7;40066:2;40032:46;;40041:23;40056:7;40041:14;:23::i;:::-;40032:46;;;;;;;;;;;;39912:174;;:::o;36224:348::-;36317:4;36342:16;36350:7;36342;:16::i;:::-;36334:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36418:13;36434:23;36449:7;36434:14;:23::i;:::-;36418:39;;36487:5;36476:16;;:7;:16;;;:51;;;;36520:7;36496:31;;:20;36508:7;36496:11;:20::i;:::-;:31;;;36476:51;:87;;;;36531:32;36548:5;36555:7;36531:16;:32::i;:::-;36476:87;36468:96;;;36224:348;;;;:::o;39216:578::-;39375:4;39348:31;;:23;39363:7;39348:14;:23::i;:::-;:31;;;39340:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39458:1;39444:16;;:2;:16;;;;39436:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39514:39;39535:4;39541:2;39545:7;39514:20;:39::i;:::-;39618:29;39635:1;39639:7;39618:8;:29::i;:::-;39679:1;39660:9;:15;39670:4;39660:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;39708:1;39691:9;:13;39701:2;39691:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39739:2;39720:7;:16;39728:7;39720:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39778:7;39774:2;39759:27;;39768:4;39759:27;;;;;;;;;;;;39216:578;;;:::o;28572:173::-;28628:16;28647:6;;;;;;;;;;;28628:25;;28673:8;28664:6;;:17;;;;;;;;;;;;;;;;;;28728:8;28697:40;;28718:8;28697:40;;;;;;;;;;;;28572:173;;:::o;2763:98::-;2821:7;2852:1;2848;:5;;;;:::i;:::-;2841:12;;2763:98;;;;:::o;3501:::-;3559:7;3590:1;3586;:5;;;;:::i;:::-;3579:12;;3501:98;;;;:::o;36914:110::-;36990:26;37000:2;37004:7;36990:26;;;;;;;;;;;;:9;:26::i;:::-;36914:110;;:::o;35302:315::-;35459:28;35469:4;35475:2;35479:7;35459:9;:28::i;:::-;35506:48;35529:4;35535:2;35539:7;35548:5;35506:22;:48::i;:::-;35498:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35302:315;;;;:::o;31898:99::-;31948:13;31981:8;31974:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31898:99;:::o;7181:723::-;7237:13;7467:1;7458:5;:10;7454:53;;;7485:10;;;;;;;;;;;;;;;;;;;;;7454:53;7517:12;7532:5;7517:20;;7548:14;7573:78;7588:1;7580:4;:9;7573:78;;7606:8;;;;;:::i;:::-;;;;7637:2;7629:10;;;;;:::i;:::-;;;7573:78;;;7661:19;7693:6;7683:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7661:39;;7711:154;7727:1;7718:5;:10;7711:154;;7755:1;7745:11;;;;;:::i;:::-;;;7822:2;7814:5;:10;;;;:::i;:::-;7801:2;:24;;;;:::i;:::-;7788:39;;7771:6;7778;7771:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;7851:2;7842:11;;;;;:::i;:::-;;;7711:154;;;7889:6;7875:21;;;;;7181:723;;;;:::o;19153:157::-;19238:4;19277:25;19262:40;;;:11;:40;;;;19255:47;;19153:157;;;:::o;44676:589::-;44820:45;44847:4;44853:2;44857:7;44820:26;:45::i;:::-;44898:1;44882:18;;:4;:18;;;44878:187;;;44917:40;44949:7;44917:31;:40::i;:::-;44878:187;;;44987:2;44979:10;;:4;:10;;;44975:90;;45006:47;45039:4;45045:7;45006:32;:47::i;:::-;44975:90;44878:187;45093:1;45079:16;;:2;:16;;;45075:183;;;45112:45;45149:7;45112:36;:45::i;:::-;45075:183;;;45185:4;45179:10;;:2;:10;;;45175:83;;45206:40;45234:2;45238:7;45206:27;:40::i;:::-;45175:83;45075:183;44676:589;;;:::o;37251:321::-;37381:18;37387:2;37391:7;37381:5;:18::i;:::-;37432:54;37463:1;37467:2;37471:7;37480:5;37432:22;:54::i;:::-;37410:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37251:321;;;:::o;40651:803::-;40806:4;40827:15;:2;:13;;;:15::i;:::-;40823:624;;;40879:2;40863:36;;;40900:12;:10;:12::i;:::-;40914:4;40920:7;40929:5;40863:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40859:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41126:1;41109:6;:13;:18;41105:272;;;41152:60;;;;;;;;;;:::i;:::-;;;;;;;;41105:272;41327:6;41321:13;41312:6;41308:2;41304:15;41297:38;40859:533;40996:45;;;40986:55;;;:6;:55;;;;40979:62;;;;;40823:624;41431:4;41424:11;;40651:803;;;;;;;:::o;42026:126::-;;;;:::o;45988:164::-;46092:10;:17;;;;46065:15;:24;46081:7;46065:24;;;;;;;;;;;:44;;;;46120:10;46136:7;46120:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45988:164;:::o;46779:988::-;47045:22;47095:1;47070:22;47087:4;47070:16;:22::i;:::-;:26;;;;:::i;:::-;47045:51;;47107:18;47128:17;:26;47146:7;47128:26;;;;;;;;;;;;47107:47;;47275:14;47261:10;:28;47257:328;;47306:19;47328:12;:18;47341:4;47328:18;;;;;;;;;;;;;;;:34;47347:14;47328:34;;;;;;;;;;;;47306:56;;47412:11;47379:12;:18;47392:4;47379:18;;;;;;;;;;;;;;;:30;47398:10;47379:30;;;;;;;;;;;:44;;;;47529:10;47496:17;:30;47514:11;47496:30;;;;;;;;;;;:43;;;;47257:328;;47681:17;:26;47699:7;47681:26;;;;;;;;;;;47674:33;;;47725:12;:18;47738:4;47725:18;;;;;;;;;;;;;;;:34;47744:14;47725:34;;;;;;;;;;;47718:41;;;46779:988;;;;:::o;48062:1079::-;48315:22;48360:1;48340:10;:17;;;;:21;;;;:::i;:::-;48315:46;;48372:18;48393:15;:24;48409:7;48393:24;;;;;;;;;;;;48372:45;;48744:19;48766:10;48777:14;48766:26;;;;;;;;;;;;;;;;;;;;;;;;48744:48;;48830:11;48805:10;48816;48805:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;48941:10;48910:15;:28;48926:11;48910:28;;;;;;;;;;;:41;;;;49082:15;:24;49098:7;49082:24;;;;;;;;;;;49075:31;;;49117:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48062:1079;;;;:::o;45566:221::-;45651:14;45668:20;45685:2;45668:16;:20::i;:::-;45651:37;;45726:7;45699:12;:16;45712:2;45699:16;;;;;;;;;;;;;;;:24;45716:6;45699:24;;;;;;;;;;;:34;;;;45773:6;45744:17;:26;45762:7;45744:26;;;;;;;;;;;:35;;;;45566:221;;;:::o;37908:382::-;38002:1;37988:16;;:2;:16;;;;37980:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38061:16;38069:7;38061;:16::i;:::-;38060:17;38052:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38123:45;38152:1;38156:2;38160:7;38123:20;:45::i;:::-;38198:1;38181:9;:13;38191:2;38181:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38229:2;38210:7;:16;38218:7;38210:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38274:7;38270:2;38249:33;;38266:1;38249:33;;;;;;;;;;;;37908:382;;:::o;9648:387::-;9708:4;9916:12;9983:7;9971:20;9963:28;;10026:1;10019:4;:8;10012:15;;;9648:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:118::-;6356:24;6374:5;6356:24;:::i;:::-;6351:3;6344:37;6334:53;;:::o;6423:732::-;;6571:54;6619:5;6571:54;:::i;:::-;6641:86;6720:6;6715:3;6641:86;:::i;:::-;6634:93;;6751:56;6801:5;6751:56;:::i;:::-;6830:7;6861:1;6846:284;6871:6;6868:1;6865:13;6846:284;;;6947:6;6941:13;6974:63;7033:3;7018:13;6974:63;:::i;:::-;6967:70;;7060:60;7113:6;7060:60;:::i;:::-;7050:70;;6906:224;6893:1;6890;6886:9;6881:14;;6846:284;;;6850:14;7146:3;7139:10;;6547:608;;;;;;;:::o;7161:109::-;7242:21;7257:5;7242:21;:::i;:::-;7237:3;7230:34;7220:50;;:::o;7276:360::-;;7390:38;7422:5;7390:38;:::i;:::-;7444:70;7507:6;7502:3;7444:70;:::i;:::-;7437:77;;7523:52;7568:6;7563:3;7556:4;7549:5;7545:16;7523:52;:::i;:::-;7600:29;7622:6;7600:29;:::i;:::-;7595:3;7591:39;7584:46;;7366:270;;;;;:::o;7642:364::-;;7758:39;7791:5;7758:39;:::i;:::-;7813:71;7877:6;7872:3;7813:71;:::i;:::-;7806:78;;7893:52;7938:6;7933:3;7926:4;7919:5;7915:16;7893:52;:::i;:::-;7970:29;7992:6;7970:29;:::i;:::-;7965:3;7961:39;7954:46;;7734:272;;;;;:::o;8012:377::-;;8146:39;8179:5;8146:39;:::i;:::-;8201:89;8283:6;8278:3;8201:89;:::i;:::-;8194:96;;8299:52;8344:6;8339:3;8332:4;8325:5;8321:16;8299:52;:::i;:::-;8376:6;8371:3;8367:16;8360:23;;8122:267;;;;;:::o;8395:383::-;;8558:67;8622:2;8617:3;8558:67;:::i;:::-;8551:74;;8655:34;8651:1;8646:3;8642:11;8635:55;8721:21;8716:2;8711:3;8707:12;8700:43;8769:2;8764:3;8760:12;8753:19;;8541:237;;;:::o;8784:375::-;;8947:67;9011:2;9006:3;8947:67;:::i;:::-;8940:74;;9044:34;9040:1;9035:3;9031:11;9024:55;9110:13;9105:2;9100:3;9096:12;9089:35;9150:2;9145:3;9141:12;9134:19;;8930:229;;;:::o;9165:382::-;;9328:67;9392:2;9387:3;9328:67;:::i;:::-;9321:74;;9425:34;9421:1;9416:3;9412:11;9405:55;9491:20;9486:2;9481:3;9477:12;9470:42;9538:2;9533:3;9529:12;9522:19;;9311:236;;;:::o;9553:370::-;;9716:67;9780:2;9775:3;9716:67;:::i;:::-;9709:74;;9813:34;9809:1;9804:3;9800:11;9793:55;9879:8;9874:2;9869:3;9865:12;9858:30;9914:2;9909:3;9905:12;9898:19;;9699:224;;;:::o;9929:326::-;;10092:67;10156:2;10151:3;10092:67;:::i;:::-;10085:74;;10189:30;10185:1;10180:3;10176:11;10169:51;10246:2;10241:3;10237:12;10230:19;;10075:180;;;:::o;10261:365::-;;10424:67;10488:2;10483:3;10424:67;:::i;:::-;10417:74;;10521:34;10517:1;10512:3;10508:11;10501:55;10587:3;10582:2;10577:3;10573:12;10566:25;10617:2;10612:3;10608:12;10601:19;;10407:219;;;:::o;10632:368::-;;10795:67;10859:2;10854:3;10795:67;:::i;:::-;10788:74;;10892:34;10888:1;10883:3;10879:11;10872:55;10958:6;10953:2;10948:3;10944:12;10937:28;10991:2;10986:3;10982:12;10975:19;;10778:222;;;:::o;11006:323::-;;11169:67;11233:2;11228:3;11169:67;:::i;:::-;11162:74;;11266:27;11262:1;11257:3;11253:11;11246:48;11320:2;11315:3;11311:12;11304:19;;11152:177;;;:::o;11335:376::-;;11498:67;11562:2;11557:3;11498:67;:::i;:::-;11491:74;;11595:34;11591:1;11586:3;11582:11;11575:55;11661:14;11656:2;11651:3;11647:12;11640:36;11702:2;11697:3;11693:12;11686:19;;11481:230;;;:::o;11717:367::-;;11880:67;11944:2;11939:3;11880:67;:::i;:::-;11873:74;;11977:34;11973:1;11968:3;11964:11;11957:55;12043:5;12038:2;12033:3;12029:12;12022:27;12075:2;12070:3;12066:12;12059:19;;11863:221;;;:::o;12090:388::-;;12253:67;12317:2;12312:3;12253:67;:::i;:::-;12246:74;;12350:34;12346:1;12341:3;12337:11;12330:55;12416:26;12411:2;12406:3;12402:12;12395:48;12469:2;12464:3;12460:12;12453:19;;12236:242;;;:::o;12484:374::-;;12647:67;12711:2;12706:3;12647:67;:::i;:::-;12640:74;;12744:34;12740:1;12735:3;12731:11;12724:55;12810:12;12805:2;12800:3;12796:12;12789:34;12849:2;12844:3;12840:12;12833:19;;12630:228;;;:::o;12864:373::-;;13027:67;13091:2;13086:3;13027:67;:::i;:::-;13020:74;;13124:34;13120:1;13115:3;13111:11;13104:55;13190:11;13185:2;13180:3;13176:12;13169:33;13228:2;13223:3;13219:12;13212:19;;13010:227;;;:::o;13243:327::-;;13406:67;13470:2;13465:3;13406:67;:::i;:::-;13399:74;;13503:31;13499:1;13494:3;13490:11;13483:52;13561:2;13556:3;13552:12;13545:19;;13389:181;;;:::o;13576:330::-;;13739:67;13803:2;13798:3;13739:67;:::i;:::-;13732:74;;13836:34;13832:1;13827:3;13823:11;13816:55;13897:2;13892:3;13888:12;13881:19;;13722:184;;;:::o;13912:330::-;;14075:67;14139:2;14134:3;14075:67;:::i;:::-;14068:74;;14172:34;14168:1;14163:3;14159:11;14152:55;14233:2;14228:3;14224:12;14217:19;;14058:184;;;:::o;14248:305::-;;14411:66;14475:1;14470:3;14411:66;:::i;:::-;14404:73;;14507:10;14503:1;14498:3;14494:11;14487:31;14544:2;14539:3;14535:12;14528:19;;14394:159;;;:::o;14559:376::-;;14722:67;14786:2;14781:3;14722:67;:::i;:::-;14715:74;;14819:34;14815:1;14810:3;14806:11;14799:55;14885:14;14880:2;14875:3;14871:12;14864:36;14926:2;14921:3;14917:12;14910:19;;14705:230;;;:::o;14941:330::-;;15104:67;15168:2;15163:3;15104:67;:::i;:::-;15097:74;;15201:34;15197:1;15192:3;15188:11;15181:55;15262:2;15257:3;15253:12;15246:19;;15087:184;;;:::o;15277:373::-;;15440:67;15504:2;15499:3;15440:67;:::i;:::-;15433:74;;15537:34;15533:1;15528:3;15524:11;15517:55;15603:11;15598:2;15593:3;15589:12;15582:33;15641:2;15636:3;15632:12;15625:19;;15423:227;;;:::o;15656:379::-;;15819:67;15883:2;15878:3;15819:67;:::i;:::-;15812:74;;15916:34;15912:1;15907:3;15903:11;15896:55;15982:17;15977:2;15972:3;15968:12;15961:39;16026:2;16021:3;16017:12;16010:19;;15802:233;;;:::o;16041:365::-;;16204:67;16268:2;16263:3;16204:67;:::i;:::-;16197:74;;16301:34;16297:1;16292:3;16288:11;16281:55;16367:3;16362:2;16357:3;16353:12;16346:25;16397:2;16392:3;16388:12;16381:19;;16187:219;;;:::o;16412:381::-;;16575:67;16639:2;16634:3;16575:67;:::i;:::-;16568:74;;16672:34;16668:1;16663:3;16659:11;16652:55;16738:19;16733:2;16728:3;16724:12;16717:41;16784:2;16779:3;16775:12;16768:19;;16558:235;;;:::o;16799:376::-;;16962:67;17026:2;17021:3;16962:67;:::i;:::-;16955:74;;17059:34;17055:1;17050:3;17046:11;17039:55;17125:14;17120:2;17115:3;17111:12;17104:36;17166:2;17161:3;17157:12;17150:19;;16945:230;;;:::o;17181:330::-;;17344:67;17408:2;17403:3;17344:67;:::i;:::-;17337:74;;17441:34;17437:1;17432:3;17428:11;17421:55;17502:2;17497:3;17493:12;17486:19;;17327:184;;;:::o;17517:108::-;17594:24;17612:5;17594:24;:::i;:::-;17589:3;17582:37;17572:53;;:::o;17631:118::-;17718:24;17736:5;17718:24;:::i;:::-;17713:3;17706:37;17696:53;;:::o;17755:435::-;;17957:95;18048:3;18039:6;17957:95;:::i;:::-;17950:102;;18069:95;18160:3;18151:6;18069:95;:::i;:::-;18062:102;;18181:3;18174:10;;17939:251;;;;;:::o;18196:222::-;;18327:2;18316:9;18312:18;18304:26;;18340:71;18408:1;18397:9;18393:17;18384:6;18340:71;:::i;:::-;18294:124;;;;:::o;18424:640::-;;18657:3;18646:9;18642:19;18634:27;;18671:71;18739:1;18728:9;18724:17;18715:6;18671:71;:::i;:::-;18752:72;18820:2;18809:9;18805:18;18796:6;18752:72;:::i;:::-;18834;18902:2;18891:9;18887:18;18878:6;18834:72;:::i;:::-;18953:9;18947:4;18943:20;18938:2;18927:9;18923:18;18916:48;18981:76;19052:4;19043:6;18981:76;:::i;:::-;18973:84;;18624:440;;;;;;;:::o;19070:373::-;;19251:2;19240:9;19236:18;19228:26;;19300:9;19294:4;19290:20;19286:1;19275:9;19271:17;19264:47;19328:108;19431:4;19422:6;19328:108;:::i;:::-;19320:116;;19218:225;;;;:::o;19449:210::-;;19574:2;19563:9;19559:18;19551:26;;19587:65;19649:1;19638:9;19634:17;19625:6;19587:65;:::i;:::-;19541:118;;;;:::o;19665:313::-;;19816:2;19805:9;19801:18;19793:26;;19865:9;19859:4;19855:20;19851:1;19840:9;19836:17;19829:47;19893:78;19966:4;19957:6;19893:78;:::i;:::-;19885:86;;19783:195;;;;:::o;19984:419::-;;20188:2;20177:9;20173:18;20165:26;;20237:9;20231:4;20227:20;20223:1;20212:9;20208:17;20201:47;20265:131;20391:4;20265:131;:::i;:::-;20257:139;;20155:248;;;:::o;20409:419::-;;20613:2;20602:9;20598:18;20590:26;;20662:9;20656:4;20652:20;20648:1;20637:9;20633:17;20626:47;20690:131;20816:4;20690:131;:::i;:::-;20682:139;;20580:248;;;:::o;20834:419::-;;21038:2;21027:9;21023:18;21015:26;;21087:9;21081:4;21077:20;21073:1;21062:9;21058:17;21051:47;21115:131;21241:4;21115:131;:::i;:::-;21107:139;;21005:248;;;:::o;21259:419::-;;21463:2;21452:9;21448:18;21440:26;;21512:9;21506:4;21502:20;21498:1;21487:9;21483:17;21476:47;21540:131;21666:4;21540:131;:::i;:::-;21532:139;;21430:248;;;:::o;21684:419::-;;21888:2;21877:9;21873:18;21865:26;;21937:9;21931:4;21927:20;21923:1;21912:9;21908:17;21901:47;21965:131;22091:4;21965:131;:::i;:::-;21957:139;;21855:248;;;:::o;22109:419::-;;22313:2;22302:9;22298:18;22290:26;;22362:9;22356:4;22352:20;22348:1;22337:9;22333:17;22326:47;22390:131;22516:4;22390:131;:::i;:::-;22382:139;;22280:248;;;:::o;22534:419::-;;22738:2;22727:9;22723:18;22715:26;;22787:9;22781:4;22777:20;22773:1;22762:9;22758:17;22751:47;22815:131;22941:4;22815:131;:::i;:::-;22807:139;;22705:248;;;:::o;22959:419::-;;23163:2;23152:9;23148:18;23140:26;;23212:9;23206:4;23202:20;23198:1;23187:9;23183:17;23176:47;23240:131;23366:4;23240:131;:::i;:::-;23232:139;;23130:248;;;:::o;23384:419::-;;23588:2;23577:9;23573:18;23565:26;;23637:9;23631:4;23627:20;23623:1;23612:9;23608:17;23601:47;23665:131;23791:4;23665:131;:::i;:::-;23657:139;;23555:248;;;:::o;23809:419::-;;24013:2;24002:9;23998:18;23990:26;;24062:9;24056:4;24052:20;24048:1;24037:9;24033:17;24026:47;24090:131;24216:4;24090:131;:::i;:::-;24082:139;;23980:248;;;:::o;24234:419::-;;24438:2;24427:9;24423:18;24415:26;;24487:9;24481:4;24477:20;24473:1;24462:9;24458:17;24451:47;24515:131;24641:4;24515:131;:::i;:::-;24507:139;;24405:248;;;:::o;24659:419::-;;24863:2;24852:9;24848:18;24840:26;;24912:9;24906:4;24902:20;24898:1;24887:9;24883:17;24876:47;24940:131;25066:4;24940:131;:::i;:::-;24932:139;;24830:248;;;:::o;25084:419::-;;25288:2;25277:9;25273:18;25265:26;;25337:9;25331:4;25327:20;25323:1;25312:9;25308:17;25301:47;25365:131;25491:4;25365:131;:::i;:::-;25357:139;;25255:248;;;:::o;25509:419::-;;25713:2;25702:9;25698:18;25690:26;;25762:9;25756:4;25752:20;25748:1;25737:9;25733:17;25726:47;25790:131;25916:4;25790:131;:::i;:::-;25782:139;;25680:248;;;:::o;25934:419::-;;26138:2;26127:9;26123:18;26115:26;;26187:9;26181:4;26177:20;26173:1;26162:9;26158:17;26151:47;26215:131;26341:4;26215:131;:::i;:::-;26207:139;;26105:248;;;:::o;26359:419::-;;26563:2;26552:9;26548:18;26540:26;;26612:9;26606:4;26602:20;26598:1;26587:9;26583:17;26576:47;26640:131;26766:4;26640:131;:::i;:::-;26632:139;;26530:248;;;:::o;26784:419::-;;26988:2;26977:9;26973:18;26965:26;;27037:9;27031:4;27027:20;27023:1;27012:9;27008:17;27001:47;27065:131;27191:4;27065:131;:::i;:::-;27057:139;;26955:248;;;:::o;27209:419::-;;27413:2;27402:9;27398:18;27390:26;;27462:9;27456:4;27452:20;27448:1;27437:9;27433:17;27426:47;27490:131;27616:4;27490:131;:::i;:::-;27482:139;;27380:248;;;:::o;27634:419::-;;27838:2;27827:9;27823:18;27815:26;;27887:9;27881:4;27877:20;27873:1;27862:9;27858:17;27851:47;27915:131;28041:4;27915:131;:::i;:::-;27907:139;;27805:248;;;:::o;28059:419::-;;28263:2;28252:9;28248:18;28240:26;;28312:9;28306:4;28302:20;28298:1;28287:9;28283:17;28276:47;28340:131;28466:4;28340:131;:::i;:::-;28332:139;;28230:248;;;:::o;28484:419::-;;28688:2;28677:9;28673:18;28665:26;;28737:9;28731:4;28727:20;28723:1;28712:9;28708:17;28701:47;28765:131;28891:4;28765:131;:::i;:::-;28757:139;;28655:248;;;:::o;28909:419::-;;29113:2;29102:9;29098:18;29090:26;;29162:9;29156:4;29152:20;29148:1;29137:9;29133:17;29126:47;29190:131;29316:4;29190:131;:::i;:::-;29182:139;;29080:248;;;:::o;29334:419::-;;29538:2;29527:9;29523:18;29515:26;;29587:9;29581:4;29577:20;29573:1;29562:9;29558:17;29551:47;29615:131;29741:4;29615:131;:::i;:::-;29607:139;;29505:248;;;:::o;29759:419::-;;29963:2;29952:9;29948:18;29940:26;;30012:9;30006:4;30002:20;29998:1;29987:9;29983:17;29976:47;30040:131;30166:4;30040:131;:::i;:::-;30032:139;;29930:248;;;:::o;30184:419::-;;30388:2;30377:9;30373:18;30365:26;;30437:9;30431:4;30427:20;30423:1;30412:9;30408:17;30401:47;30465:131;30591:4;30465:131;:::i;:::-;30457:139;;30355:248;;;:::o;30609:222::-;;30740:2;30729:9;30725:18;30717:26;;30753:71;30821:1;30810:9;30806:17;30797:6;30753:71;:::i;:::-;30707:124;;;;:::o;30837:283::-;;30903:2;30897:9;30887:19;;30945:4;30937:6;30933:17;31052:6;31040:10;31037:22;31016:18;31004:10;31001:34;30998:62;30995:2;;;31063:18;;:::i;:::-;30995:2;31103:10;31099:2;31092:22;30877:243;;;;:::o;31126:331::-;;31277:18;31269:6;31266:30;31263:2;;;31299:18;;:::i;:::-;31263:2;31384:4;31380:9;31373:4;31365:6;31361:17;31357:33;31349:41;;31445:4;31439;31435:15;31427:23;;31192:265;;;:::o;31463:332::-;;31615:18;31607:6;31604:30;31601:2;;;31637:18;;:::i;:::-;31601:2;31722:4;31718:9;31711:4;31703:6;31699:17;31695:33;31687:41;;31783:4;31777;31773:15;31765:23;;31530:265;;;:::o;31801:132::-;;31891:3;31883:11;;31921:4;31916:3;31912:14;31904:22;;31873:60;;;:::o;31939:114::-;;32040:5;32034:12;32024:22;;32013:40;;;:::o;32059:98::-;;32144:5;32138:12;32128:22;;32117:40;;;:::o;32163:99::-;;32249:5;32243:12;32233:22;;32222:40;;;:::o;32268:113::-;;32370:4;32365:3;32361:14;32353:22;;32343:38;;;:::o;32387:184::-;;32520:6;32515:3;32508:19;32560:4;32555:3;32551:14;32536:29;;32498:73;;;;:::o;32577:168::-;;32694:6;32689:3;32682:19;32734:4;32729:3;32725:14;32710:29;;32672:73;;;;:::o;32751:169::-;;32869:6;32864:3;32857:19;32909:4;32904:3;32900:14;32885:29;;32847:73;;;;:::o;32926:148::-;;33065:3;33050:18;;33040:34;;;;:::o;33080:305::-;;33139:20;33157:1;33139:20;:::i;:::-;33134:25;;33173:20;33191:1;33173:20;:::i;:::-;33168:25;;33327:1;33259:66;33255:74;33252:1;33249:81;33246:2;;;33333:18;;:::i;:::-;33246:2;33377:1;33374;33370:9;33363:16;;33124:261;;;;:::o;33391:185::-;;33448:20;33466:1;33448:20;:::i;:::-;33443:25;;33482:20;33500:1;33482:20;:::i;:::-;33477:25;;33521:1;33511:2;;33526:18;;:::i;:::-;33511:2;33568:1;33565;33561:9;33556:14;;33433:143;;;;:::o;33582:348::-;;33645:20;33663:1;33645:20;:::i;:::-;33640:25;;33679:20;33697:1;33679:20;:::i;:::-;33674:25;;33867:1;33799:66;33795:74;33792:1;33789:81;33784:1;33777:9;33770:17;33766:105;33763:2;;;33874:18;;:::i;:::-;33763:2;33922:1;33919;33915:9;33904:20;;33630:300;;;;:::o;33936:191::-;;33996:20;34014:1;33996:20;:::i;:::-;33991:25;;34030:20;34048:1;34030:20;:::i;:::-;34025:25;;34069:1;34066;34063:8;34060:2;;;34074:18;;:::i;:::-;34060:2;34119:1;34116;34112:9;34104:17;;33981:146;;;;:::o;34133:96::-;;34199:24;34217:5;34199:24;:::i;:::-;34188:35;;34178:51;;;:::o;34235:90::-;;34312:5;34305:13;34298:21;34287:32;;34277:48;;;:::o;34331:149::-;;34407:66;34400:5;34396:78;34385:89;;34375:105;;;:::o;34486:126::-;;34563:42;34556:5;34552:54;34541:65;;34531:81;;;:::o;34618:77::-;;34684:5;34673:16;;34663:32;;;:::o;34701:154::-;34785:6;34780:3;34775;34762:30;34847:1;34838:6;34833:3;34829:16;34822:27;34752:103;;;:::o;34861:307::-;34929:1;34939:113;34953:6;34950:1;34947:13;34939:113;;;35038:1;35033:3;35029:11;35023:18;35019:1;35014:3;35010:11;35003:39;34975:2;34972:1;34968:10;34963:15;;34939:113;;;35070:6;35067:1;35064:13;35061:2;;;35150:1;35141:6;35136:3;35132:16;35125:27;35061:2;34910:258;;;;:::o;35174:320::-;;35255:1;35249:4;35245:12;35235:22;;35302:1;35296:4;35292:12;35323:18;35313:2;;35379:4;35371:6;35367:17;35357:27;;35313:2;35441;35433:6;35430:14;35410:18;35407:38;35404:2;;;35460:18;;:::i;:::-;35404:2;35225:269;;;;:::o;35500:233::-;;35562:24;35580:5;35562:24;:::i;:::-;35553:33;;35608:66;35601:5;35598:77;35595:2;;;35678:18;;:::i;:::-;35595:2;35725:1;35718:5;35714:13;35707:20;;35543:190;;;:::o;35739:176::-;;35788:20;35806:1;35788:20;:::i;:::-;35783:25;;35822:20;35840:1;35822:20;:::i;:::-;35817:25;;35861:1;35851:2;;35866:18;;:::i;:::-;35851:2;35907:1;35904;35900:9;35895:14;;35773:142;;;;:::o;35921:180::-;35969:77;35966:1;35959:88;36066:4;36063:1;36056:15;36090:4;36087:1;36080:15;36107:180;36155:77;36152:1;36145:88;36252:4;36249:1;36242:15;36276:4;36273:1;36266:15;36293:180;36341:77;36338:1;36331:88;36438:4;36435:1;36428:15;36462:4;36459:1;36452:15;36479:180;36527:77;36524:1;36517:88;36624:4;36621:1;36614:15;36648:4;36645:1;36638:15;36665:102;;36757:2;36753:7;36748:2;36741:5;36737:14;36733:28;36723:38;;36713:54;;;:::o;36773:122::-;36846:24;36864:5;36846:24;:::i;:::-;36839:5;36836:35;36826:2;;36885:1;36882;36875:12;36826:2;36816:79;:::o;36901:116::-;36971:21;36986:5;36971:21;:::i;:::-;36964:5;36961:32;36951:2;;37007:1;37004;36997:12;36951:2;36941:76;:::o;37023:120::-;37095:23;37112:5;37095:23;:::i;:::-;37088:5;37085:34;37075:2;;37133:1;37130;37123:12;37075:2;37065:78;:::o;37149:122::-;37222:24;37240:5;37222:24;:::i;:::-;37215:5;37212:35;37202:2;;37261:1;37258;37251:12;37202:2;37192:79;:::o

Swarm Source

ipfs://d2bb49090abed082a7bc5fd249e22d9c3ad1a0bf4faaae0b276a7b3403182c01
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.