ETH Price: $3,365.49 (-1.50%)
Gas: 7 Gwei

Token

COVIDPunks (PUNK-19)
 

Overview

Max Total Supply

10,000 PUNK-19

Holders

3,755

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
oldfrog.eth
Balance
1 PUNK-19
0x487d0c7553c8d88500085a805d316ed5b18357f8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

COVIDPunks are 10,000 randomly-generated Punks on the Ethereum network.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
COVIDPunks

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-20
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-20
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-16
*/

// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
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 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 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;


/**
 * @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 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 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 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;
        // solhint-disable-next-line no-inline-assembly
        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");

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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));
        _owner = address(0);
    }

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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 {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}
// <3

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








// WELCOME TO COVIDPUNKS! It has been our utmost pleasure learning about NFT development with this project. 
// Hopefully pandemic-themed content will be out of sight and mind soon, but until then... don't forget to wear a mask. :-) 
//   -Waddle, Waggle, and Liu


pragma solidity ^0.8.0;

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

  string public imageHash;

  bool public isSaleOn = false;

  bool public saleHasBeenStarted = false;

  uint256 public constant MAX_MINTABLE_AT_ONCE = 20;

  uint256 private _price = 0.03 ether; // 30000000000000000
  
  string public punkcontractURI;
  
  constructor() ERC721("COVIDPunks", "PUNK-19") {}

  // for wd
  address oaf = 0x15776c1F16C3B766A8a4af06DdB83dAD1512C9E9;
  address quack = 0xD9Eb7Ddd1d5f9081BA745dcf0e56B39788b91f94;

  uint256[10000] private _availableTokens;
  uint256 private _numAvailableTokens = 10000;
  uint256 private _numFreeRollsGiven = 0;

  mapping(address => uint256) public freeRollPunks;

  uint256 private _lastTokenIdMintedInInitialSet = 10000;

  function numTotalPunks() public view virtual returns (uint256) {
    return 10000;
  }

  function freeRollMint() public nonReentrant() {
    require(freeRollPunks[msg.sender] > 0, "You don't have any free rolls!");
    uint256 toMint = freeRollPunks[msg.sender];
    freeRollPunks[msg.sender] = 0;
    uint256 remaining = numTotalPunks() - totalSupply();
    if (toMint > remaining) {
      toMint = remaining;
    }
    _mint(toMint);
  }

  function getNumFreeRollPunks(address owner) public view returns (uint256) {
    return freeRollPunks[owner];
  }

  function mint(uint256 _numToMint) public payable nonReentrant() {
    require(isSaleOn, "Sale hasn't started.");
    uint256 totalSupply = totalSupply();
    require(
      totalSupply + _numToMint <= numTotalPunks(),
      "There aren't this many punks left."
    );
    uint256 costForMintingPunks = _price * _numToMint;
    require(
      msg.value >= costForMintingPunks,
      "Too little sent, please send more eth."
    );
    if (msg.value > costForMintingPunks) {
      payable(msg.sender).transfer(msg.value - costForMintingPunks);
    }

    _mint(_numToMint);
  }

  // internal minting function
  function _mint(uint256 _numToMint) internal {
    require(_numToMint <= MAX_MINTABLE_AT_ONCE, "Minting too many at once.");

    uint256 updatedNumAvailableTokens = _numAvailableTokens;
    for (uint256 i = 0; i < _numToMint; i++) {
      uint256 newTokenId = useRandomAvailableToken(_numToMint, i);
      _safeMint(msg.sender, newTokenId);
      updatedNumAvailableTokens--;
    }
    _numAvailableTokens = updatedNumAvailableTokens;
  }

  function useRandomAvailableToken(uint256 _numToFetch, uint256 _i)
    internal
    returns (uint256)
  {
    uint256 randomNum =
      uint256(
        keccak256(
          abi.encode(
            msg.sender,
            tx.gasprice,
            block.number,
            block.timestamp,
            blockhash(block.number - 1),
            _numToFetch,
            _i
          )
        )
      );
    uint256 randomIndex = randomNum % _numAvailableTokens;
    return useAvailableTokenAtIndex(randomIndex);
  }

  function useAvailableTokenAtIndex(uint256 indexToUse)
    internal
    returns (uint256)
  {
    uint256 valAtIndex = _availableTokens[indexToUse];
    uint256 result;
    if (valAtIndex == 0) {
      // This means the index itself is still an available token
      result = indexToUse;
    } else {
      // This means the index itself is not an available token, but the val at that index is.
      result = valAtIndex;
    }

    uint256 lastIndex = _numAvailableTokens - 1;
    if (indexToUse != lastIndex) {
      // Replace the value at indexToUse, now that it's been used.
      // Replace it with the data from the last index in the array, since we are going to decrease the array size afterwards.
      uint256 lastValInArray = _availableTokens[lastIndex];
      if (lastValInArray == 0) {
        // This means the index itself is still an available token
        _availableTokens[indexToUse] = lastIndex;
      } else {
        // This means the index itself is not an available token, but the val at that index is.
        _availableTokens[indexToUse] = lastValInArray;
      }
    }

    _numAvailableTokens--;
    return result;
  }

  function getPrice() public view returns (uint256){
    return _price;
  }

  function contractURI() public view returns (string memory){
    return punkcontractURI;
  }


  function getCostForMintingPunks(uint256 _numToMint)
    public
    view
    returns (uint256)
  {
    require(
      totalSupply() + _numToMint <= numTotalPunks(),
      "There are not this many punks left."
    );
    require(
      _numToMint <= MAX_MINTABLE_AT_ONCE,
      "You cannot mint that many punks."
    );
    return _numToMint * _price;  
  }

  function getPunksBelongingToOwner(address _owner)
    external
    view
    returns (uint256[] memory)
  {
    uint256 numPunks = balanceOf(_owner);
    if (numPunks == 0) {
      return new uint256[](0);
    } else {
      uint256[] memory result = new uint256[](numPunks);
      for (uint256 i = 0; i < numPunks; i++) {
        result[i] = tokenOfOwnerByIndex(_owner, i);
      }
      return result;
    }
  }

  /*
   * Dev stuff.
   */

  // metadata URI
  string private _baseTokenURI;

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

  function tokenURI(uint256 _tokenId)
    public
    view
    override
    returns (string memory)
  {
    string memory base = _baseURI();
    string memory _tokenURI = Strings.toString(_tokenId);
    string memory ending = ".json";

    // If there is no base URI, return the token URI.
    if (bytes(base).length == 0) {
      return _tokenURI;
    }

    return string(abi.encodePacked(base, _tokenURI, ending));
  }
  

  /*
   * Owner stuff
   */

    // In case of catastrophic ETH movement

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

  function startSale() public onlyOwner {
    isSaleOn = true;
    saleHasBeenStarted = true;
  }

  function endSale() public onlyOwner {
    isSaleOn = false;
  }

  function giveFreeRoll(address receiver, uint256 numRolls) public onlyOwner {
    // max number of free mints we can give to the community for promotions/marketing
    require(_numFreeRollsGiven < 200, "Already given max number of free rolls");
    require(freeRollPunks[receiver] + numRolls < 21, "Cannot exceed 20 unused free rolls!");
    uint256 freeRolls = freeRollPunks[receiver];
    freeRollPunks[receiver] = freeRolls + numRolls;
    _numFreeRollsGiven = _numFreeRollsGiven + numRolls;
  }


  // URIs
  function setBaseURI(string memory baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setContractURI(string memory _contractURI) external onlyOwner {
    punkcontractURI = _contractURI;
  }
  
    function setImageHash(string memory _imageHash) external onlyOwner {
    imageHash = _imageHash;
  }

    function withdrawTeam() public onlyOwner {
    //uint256 _each = address(this).balance / 4;
    // uint256 _sixp = .06;
    uint256 _balance = address(this).balance;
    uint256 _oaf = _balance / 100 * 6;
    uint256 _quack = _balance - _oaf;
    require(payable(oaf).send(_oaf));
    require(payable(quack).send(_quack));
  }
  
    function withdrawFailsafe() public onlyOwner {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual override(ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC721Enumerable)
    returns (bool)
  {
    return super.supportsInterface(interfaceId);
  }
}

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_MINTABLE_AT_ONCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeRollMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeRollPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"}],"name":"getCostForMintingPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getNumFreeRollPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getPunksBelongingToOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"numRolls","type":"uint256"}],"name":"giveFreeRoll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"imageHash","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTotalPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"punkcontractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":[],"name":"saleHasBeenStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_imageHash","type":"string"}],"name":"setImageHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":[],"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":"withdrawFailsafe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTeam","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff021916908315150217905550666a94d74f430000600e557315776c1f16c3b766a8a4af06ddb83dad1512c9e9601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d9eb7ddd1d5f9081ba745dcf0e56b39788b91f94601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061271061272255600061272355612710612725553480156200011057600080fd5b506040518060400160405280600a81526020017f434f56494450756e6b73000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f50554e4b2d31390000000000000000000000000000000000000000000000000081525060006200018f6200026f60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600190805190602001906200024592919062000277565b5080600290805190602001906200025e92919062000277565b5050506001600b819055506200038c565b600033905090565b828054620002859062000327565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b600060028204905060018216806200034057607f821691505b602082108114156200035757620003566200035d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6154cc806200039c6000396000f3fe6080604052600436106102505760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063d2d6a5471161007a578063d2d6a5471461086a578063e8a3d485146108a7578063e8e732a1146108d2578063e985e9c51461090f578063f2f5ec151461094c578063f2fde38b1461097557610250565b8063b88d4fde14610785578063bb51f32d146107ae578063bc4eda10146107c5578063c87b56dd14610802578063cbf775b21461083f57610250565b80639fd83a15116100fd5780639fd83a15146106c1578063a0712d68146106fe578063a1d898191461071a578063a22cb46514610745578063b66a0e5d1461076e57610250565b80638da5cb5b146105ee57806391b7f5ed14610619578063938e3d7b1461064257806395d89b411461066b57806398d5fdca1461069657610250565b8063380d831b116101d257806355f804b31161019657806355f804b3146104de5780635b5a493d146105075780636352211e1461053257806370a082311461056f578063715018a6146105ac578063779e170d146105c357610250565b8063380d831b1461041f5780633af03e8a1461043657806342842e0e1461044d5780634f6ccce71461047657806351605d80146104b357610250565b8063081812fc11610219578063081812fc14610328578063095ea7b31461036557806318160ddd1461038e57806323b872dd146103b95780632f745c59146103e257610250565b8062e6672c1461025557806301ffc9a71461026c57806304299b2a146102a957806306d120d5146102d257806306fdde03146102fd575b600080fd5b34801561026157600080fd5b5061026a61099e565b005b34801561027857600080fd5b50610293600480360381019061028e9190613d2b565b610b39565b6040516102a09190614480565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613d7d565b610b4b565b005b3480156102de57600080fd5b506102e7610be1565b6040516102f4919061449b565b60405180910390f35b34801561030957600080fd5b50610312610c6f565b60405161031f919061449b565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613dbe565b610d01565b60405161035c9190614388565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613cef565b610d86565b005b34801561039a57600080fd5b506103a3610e9e565b6040516103b0919061483d565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613be9565b610eab565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613cef565b610f0b565b604051610416919061483d565b60405180910390f35b34801561042b57600080fd5b50610434610fb0565b005b34801561044257600080fd5b5061044b611049565b005b34801561045957600080fd5b50610474600480360381019061046f9190613be9565b611174565b005b34801561048257600080fd5b5061049d60048036038101906104989190613dbe565b611194565b6040516104aa919061483d565b60405180910390f35b3480156104bf57600080fd5b506104c861122b565b6040516104d5919061449b565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613d7d565b6112b9565b005b34801561051357600080fd5b5061051c611350565b604051610529919061483d565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613dbe565b61135a565b6040516105669190614388565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613b84565b61140c565b6040516105a3919061483d565b60405180910390f35b3480156105b857600080fd5b506105c16114c4565b005b3480156105cf57600080fd5b506105d86115fe565b6040516105e59190614480565b60405180910390f35b3480156105fa57600080fd5b50610603611611565b6040516106109190614388565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613dbe565b61163a565b005b34801561064e57600080fd5b5061066960048036038101906106649190613d7d565b6116c0565b005b34801561067757600080fd5b50610680611756565b60405161068d919061449b565b60405180910390f35b3480156106a257600080fd5b506106ab6117e8565b6040516106b8919061483d565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613b84565b6117f2565b6040516106f5919061483d565b60405180910390f35b61071860048036038101906107139190613dbe565b61183c565b005b34801561072657600080fd5b5061072f611a00565b60405161073c9190614480565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190613cb3565b611a13565b005b34801561077a57600080fd5b50610783611b94565b005b34801561079157600080fd5b506107ac60048036038101906107a79190613c38565b611c48565b005b3480156107ba57600080fd5b506107c3611caa565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613dbe565b611e1d565b6040516107f9919061483d565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613dbe565b611ed4565b604051610836919061449b565b60405180910390f35b34801561084b57600080fd5b50610854611f6d565b604051610861919061483d565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613b84565b611f72565b60405161089e919061483d565b60405180910390f35b3480156108b357600080fd5b506108bc611f8b565b6040516108c9919061449b565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613b84565b61201d565b604051610906919061445e565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613bad565b612199565b6040516109439190614480565b60405180910390f35b34801561095857600080fd5b50610973600480360381019061096e9190613cef565b61222d565b005b34801561098157600080fd5b5061099c60048036038101906109979190613b84565b61242d565b005b6002600b5414156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db9061481d565b60405180910390fd5b6002600b81905550600061272460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a66906145bd565b60405180910390fd5b600061272460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600061272460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610b04610e9e565b610b0c611350565b610b169190614a47565b905080821115610b24578091505b610b2d826125d6565b50506001600b81905550565b6000610b4482612674565b9050919050565b610b536126ee565b73ffffffffffffffffffffffffffffffffffffffff16610b71611611565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe906146bd565b60405180910390fd5b80600c9080519060200190610bdd9291906139a8565b5050565b600f8054610bee90614b65565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90614b65565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b606060018054610c7e90614b65565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa90614b65565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b5050505050905090565b6000610d0c826126f6565b610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d429061469d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d918261135a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df99061471d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e216126ee565b73ffffffffffffffffffffffffffffffffffffffff161480610e505750610e4f81610e4a6126ee565b612199565b5b610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906145dd565b60405180910390fd5b610e998383612762565b505050565b6000600980549050905090565b610ebc610eb66126ee565b8261281b565b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef29061477d565b60405180910390fd5b610f068383836128f9565b505050565b6000610f168361140c565b8210610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e906144dd565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610fb86126ee565b73ffffffffffffffffffffffffffffffffffffffff16610fd6611611565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611023906146bd565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b6110516126ee565b73ffffffffffffffffffffffffffffffffffffffff1661106f611611565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc906146bd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110eb90614373565b60006040518083038185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b5050905080611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111689061475d565b60405180910390fd5b50565b61118f83838360405180602001604052806000815250611c48565b505050565b600061119e610e9e565b82106111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d69061479d565b60405180910390fd5b60098281548110611219577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600c805461123890614b65565b80601f016020809104026020016040519081016040528092919081815260200182805461126490614b65565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b6112c16126ee565b73ffffffffffffffffffffffffffffffffffffffff166112df611611565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c906146bd565b60405180910390fd5b80612726908051906020019061134c9291906139a8565b5050565b6000612710905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061461d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906145fd565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114cc6126ee565b73ffffffffffffffffffffffffffffffffffffffff166114ea611611565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116426126ee565b73ffffffffffffffffffffffffffffffffffffffff16611660611611565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad906146bd565b60405180910390fd5b80600e8190555050565b6116c86126ee565b73ffffffffffffffffffffffffffffffffffffffff166116e6611611565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611733906146bd565b60405180910390fd5b80600f90805190602001906117529291906139a8565b5050565b60606002805461176590614b65565b80601f016020809104026020016040519081016040528092919081815260200182805461179190614b65565b80156117de5780601f106117b3576101008083540402835291602001916117de565b820191906000526020600020905b8154815290600101906020018083116117c157829003601f168201915b5050505050905090565b6000600e54905090565b600061272460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6002600b541415611882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118799061481d565b60405180910390fd5b6002600b81905550600d60009054906101000a900460ff166118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d0906144bd565b60405180910390fd5b60006118e3610e9e565b90506118ed611350565b82826118f99190614966565b111561193a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611931906147dd565b60405180910390fd5b600082600e5461194a91906149ed565b90508034101561198f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119869061463d565b60405180910390fd5b803411156119ea573373ffffffffffffffffffffffffffffffffffffffff166108fc82346119bd9190614a47565b9081150290604051600060405180830381858888f193505050501580156119e8573d6000803e3d6000fd5b505b6119f3836125d6565b50506001600b8190555050565b600d60019054906101000a900460ff1681565b611a1b6126ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a809061457d565b60405180910390fd5b8060066000611a966126ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b436126ee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b889190614480565b60405180910390a35050565b611b9c6126ee565b73ffffffffffffffffffffffffffffffffffffffff16611bba611611565b73ffffffffffffffffffffffffffffffffffffffff1614611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c07906146bd565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b611c59611c536126ee565b8361281b565b611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f9061477d565b60405180910390fd5b611ca484848484612b55565b50505050565b611cb26126ee565b73ffffffffffffffffffffffffffffffffffffffff16611cd0611611565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906146bd565b60405180910390fd5b600047905060006006606483611d3c91906149bc565b611d4691906149ed565b905060008183611d569190614a47565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050611db857600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611e1857600080fd5b505050565b6000611e27611350565b82611e30610e9e565b611e3a9190614966565b1115611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e729061473d565b60405180910390fd5b6014821115611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061467d565b60405180910390fd5b600e5482611ecd91906149ed565b9050919050565b60606000611ee0612bb1565b90506000611eed84612c44565b905060006040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152509050600083511415611f3e57819350505050611f68565b828282604051602001611f5393929190614342565b60405160208183030381529060405293505050505b919050565b601481565b6127246020528060005260406000206000915090505481565b6060600f8054611f9a90614b65565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc690614b65565b80156120135780601f10611fe857610100808354040283529160200191612013565b820191906000526020600020905b815481529060010190602001808311611ff657829003601f168201915b5050505050905090565b6060600061202a8361140c565b905060008114156120ad57600067ffffffffffffffff811115612076577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120a45781602001602082028036833780820191505090505b50915050612194565b60008167ffffffffffffffff8111156120ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561211d5781602001602082028036833780820191505090505b50905060005b8281101561218d576121358582610f0b565b82828151811061216e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061218590614bc8565b915050612123565b5080925050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122356126ee565b73ffffffffffffffffffffffffffffffffffffffff16612253611611565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a0906146bd565b60405180910390fd5b60c861272354106122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e6906147bd565b60405180910390fd5b60158161272460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461233d9190614966565b1061237d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612374906147fd565b60405180910390fd5b600061272460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081816123ce9190614966565b61272460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081612723546124219190614966565b61272381905550505050565b6124356126ee565b73ffffffffffffffffffffffffffffffffffffffff16612453611611565b73ffffffffffffffffffffffffffffffffffffffff16146124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a0906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125109061451d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601481111561261a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612611906146fd565b60405180910390fd5b600061272254905060005b828110156126675760006126398483612df1565b90506126453382612e5f565b828061265090614b3b565b93505050808061265f90614bc8565b915050612625565b5080612722819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126e757506126e682612e7d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127d58361135a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612826826126f6565b612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c9061459d565b60405180910390fd5b60006128708361135a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128df57508373ffffffffffffffffffffffffffffffffffffffff166128c784610d01565b73ffffffffffffffffffffffffffffffffffffffff16145b806128f057506128ef8185612199565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129198261135a565b73ffffffffffffffffffffffffffffffffffffffff161461296f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612966906146dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d69061455d565b60405180910390fd5b6129ea838383612f5f565b6129f5600082612762565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a459190614a47565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9c9190614966565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b608484846128f9565b612b6c84848484612f6f565b612bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba2906144fd565b60405180910390fd5b50505050565b60606127268054612bc190614b65565b80601f0160208091040260200160405190810160405280929190818152602001828054612bed90614b65565b8015612c3a5780601f10612c0f57610100808354040283529160200191612c3a565b820191906000526020600020905b815481529060010190602001808311612c1d57829003601f168201915b5050505050905090565b60606000821415612c8c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dec565b600082905060005b60008214612cbe578080612ca790614bc8565b915050600a82612cb791906149bc565b9150612c94565b60008167ffffffffffffffff811115612d00577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d325781602001600182028036833780820191505090505b5090505b60008514612de557600182612d4b9190614a47565b9150600a85612d5a9190614c11565b6030612d669190614966565b60f81b818381518110612da2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dde91906149bc565b9450612d36565b8093505050505b919050565b600080333a4342600143612e059190614a47565b408888604051602001612e1e97969594939291906143ef565b6040516020818303038152906040528051906020012060001c905060006127225482612e4a9190614c11565b9050612e5581613106565b9250505092915050565b612e79828260405180602001604052806000815250613271565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f4857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f585750612f57826132cc565b5b9050919050565b612f6a838383613336565b505050565b6000612f908473ffffffffffffffffffffffffffffffffffffffff1661344a565b156130f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fb96126ee565b8786866040518563ffffffff1660e01b8152600401612fdb94939291906143a3565b602060405180830381600087803b158015612ff557600080fd5b505af192505050801561302657506040513d601f19601f820116820180604052508101906130239190613d54565b60015b6130a9573d8060008114613056576040519150601f19603f3d011682016040523d82523d6000602084013e61305b565b606091505b506000815114156130a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613098906144fd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130fe565b600190505b949350505050565b6000806012836127108110613144577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154905060008082141561315a5783905061315e565b8190505b60006001612722546131709190614a47565b905080851461324d57600060128261271081106131b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015490506000811415613209578160128761271081106131ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555061324b565b806012876127108110613245577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505b505b612722600081548092919061326190614b3b565b9190505550819350505050919050565b61327b838361345d565b6132886000848484612f6f565b6132c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132be906144fd565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61334183838361362b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133845761337f81613630565b6133c3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133c2576133c18382613679565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561340657613401816137e6565b613445565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613444576134438282613929565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c49061465d565b60405180910390fd5b6134d6816126f6565b15613516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350d9061453d565b60405180910390fd5b61352260008383612f5f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135729190614966565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136868461140c565b6136909190614a47565b9050600060086000848152602001908152602001600020549050818114613775576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506137fa9190614a47565b90506000600a6000848152602001908152602001600020549050600060098381548110613850577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613898577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061390d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139348361140c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546139b490614b65565b90600052602060002090601f0160209004810192826139d65760008555613a1d565b82601f106139ef57805160ff1916838001178555613a1d565b82800160010185558215613a1d579182015b82811115613a1c578251825591602001919060010190613a01565b5b509050613a2a9190613a2e565b5090565b5b80821115613a47576000816000905550600101613a2f565b5090565b6000613a5e613a598461487d565b614858565b905082815260208101848484011115613a7657600080fd5b613a81848285614af9565b509392505050565b6000613a9c613a97846148ae565b614858565b905082815260208101848484011115613ab457600080fd5b613abf848285614af9565b509392505050565b600081359050613ad68161543a565b92915050565b600081359050613aeb81615451565b92915050565b600081359050613b0081615468565b92915050565b600081519050613b1581615468565b92915050565b600082601f830112613b2c57600080fd5b8135613b3c848260208601613a4b565b91505092915050565b600082601f830112613b5657600080fd5b8135613b66848260208601613a89565b91505092915050565b600081359050613b7e8161547f565b92915050565b600060208284031215613b9657600080fd5b6000613ba484828501613ac7565b91505092915050565b60008060408385031215613bc057600080fd5b6000613bce85828601613ac7565b9250506020613bdf85828601613ac7565b9150509250929050565b600080600060608486031215613bfe57600080fd5b6000613c0c86828701613ac7565b9350506020613c1d86828701613ac7565b9250506040613c2e86828701613b6f565b9150509250925092565b60008060008060808587031215613c4e57600080fd5b6000613c5c87828801613ac7565b9450506020613c6d87828801613ac7565b9350506040613c7e87828801613b6f565b925050606085013567ffffffffffffffff811115613c9b57600080fd5b613ca787828801613b1b565b91505092959194509250565b60008060408385031215613cc657600080fd5b6000613cd485828601613ac7565b9250506020613ce585828601613adc565b9150509250929050565b60008060408385031215613d0257600080fd5b6000613d1085828601613ac7565b9250506020613d2185828601613b6f565b9150509250929050565b600060208284031215613d3d57600080fd5b6000613d4b84828501613af1565b91505092915050565b600060208284031215613d6657600080fd5b6000613d7484828501613b06565b91505092915050565b600060208284031215613d8f57600080fd5b600082013567ffffffffffffffff811115613da957600080fd5b613db584828501613b45565b91505092915050565b600060208284031215613dd057600080fd5b6000613dde84828501613b6f565b91505092915050565b6000613df38383614324565b60208301905092915050565b613e0881614a7b565b82525050565b6000613e19826148ef565b613e23818561491d565b9350613e2e836148df565b8060005b83811015613e5f578151613e468882613de7565b9750613e5183614910565b925050600181019050613e32565b5085935050505092915050565b613e7581614a8d565b82525050565b613e8481614a99565b82525050565b6000613e95826148fa565b613e9f818561492e565b9350613eaf818560208601614b08565b613eb881614cfe565b840191505092915050565b6000613ece82614905565b613ed8818561494a565b9350613ee8818560208601614b08565b613ef181614cfe565b840191505092915050565b6000613f0782614905565b613f11818561495b565b9350613f21818560208601614b08565b80840191505092915050565b6000613f3a60148361494a565b9150613f4582614d0f565b602082019050919050565b6000613f5d602b8361494a565b9150613f6882614d38565b604082019050919050565b6000613f8060328361494a565b9150613f8b82614d87565b604082019050919050565b6000613fa360268361494a565b9150613fae82614dd6565b604082019050919050565b6000613fc6601c8361494a565b9150613fd182614e25565b602082019050919050565b6000613fe960248361494a565b9150613ff482614e4e565b604082019050919050565b600061400c60198361494a565b915061401782614e9d565b602082019050919050565b600061402f602c8361494a565b915061403a82614ec6565b604082019050919050565b6000614052601e8361494a565b915061405d82614f15565b602082019050919050565b600061407560388361494a565b915061408082614f3e565b604082019050919050565b6000614098602a8361494a565b91506140a382614f8d565b604082019050919050565b60006140bb60298361494a565b91506140c682614fdc565b604082019050919050565b60006140de60268361494a565b91506140e98261502b565b604082019050919050565b600061410160208361494a565b915061410c8261507a565b602082019050919050565b600061412460208361494a565b915061412f826150a3565b602082019050919050565b6000614147602c8361494a565b9150614152826150cc565b604082019050919050565b600061416a60208361494a565b91506141758261511b565b602082019050919050565b600061418d60298361494a565b915061419882615144565b604082019050919050565b60006141b060198361494a565b91506141bb82615193565b602082019050919050565b60006141d360218361494a565b91506141de826151bc565b604082019050919050565b60006141f660238361494a565b91506142018261520b565b604082019050919050565b600061421960008361493f565b91506142248261525a565b600082019050919050565b600061423c60108361494a565b91506142478261525d565b602082019050919050565b600061425f60318361494a565b915061426a82615286565b604082019050919050565b6000614282602c8361494a565b915061428d826152d5565b604082019050919050565b60006142a560268361494a565b91506142b082615324565b604082019050919050565b60006142c860228361494a565b91506142d382615373565b604082019050919050565b60006142eb60238361494a565b91506142f6826153c2565b604082019050919050565b600061430e601f8361494a565b915061431982615411565b602082019050919050565b61432d81614aef565b82525050565b61433c81614aef565b82525050565b600061434e8286613efc565b915061435a8285613efc565b91506143668284613efc565b9150819050949350505050565b600061437e8261420c565b9150819050919050565b600060208201905061439d6000830184613dff565b92915050565b60006080820190506143b86000830187613dff565b6143c56020830186613dff565b6143d26040830185614333565b81810360608301526143e48184613e8a565b905095945050505050565b600060e082019050614404600083018a613dff565b6144116020830189614333565b61441e6040830188614333565b61442b6060830187614333565b6144386080830186613e7b565b61444560a0830185614333565b61445260c0830184614333565b98975050505050505050565b600060208201905081810360008301526144788184613e0e565b905092915050565b60006020820190506144956000830184613e6c565b92915050565b600060208201905081810360008301526144b58184613ec3565b905092915050565b600060208201905081810360008301526144d681613f2d565b9050919050565b600060208201905081810360008301526144f681613f50565b9050919050565b6000602082019050818103600083015261451681613f73565b9050919050565b6000602082019050818103600083015261453681613f96565b9050919050565b6000602082019050818103600083015261455681613fb9565b9050919050565b6000602082019050818103600083015261457681613fdc565b9050919050565b6000602082019050818103600083015261459681613fff565b9050919050565b600060208201905081810360008301526145b681614022565b9050919050565b600060208201905081810360008301526145d681614045565b9050919050565b600060208201905081810360008301526145f681614068565b9050919050565b600060208201905081810360008301526146168161408b565b9050919050565b60006020820190508181036000830152614636816140ae565b9050919050565b60006020820190508181036000830152614656816140d1565b9050919050565b60006020820190508181036000830152614676816140f4565b9050919050565b6000602082019050818103600083015261469681614117565b9050919050565b600060208201905081810360008301526146b68161413a565b9050919050565b600060208201905081810360008301526146d68161415d565b9050919050565b600060208201905081810360008301526146f681614180565b9050919050565b60006020820190508181036000830152614716816141a3565b9050919050565b60006020820190508181036000830152614736816141c6565b9050919050565b60006020820190508181036000830152614756816141e9565b9050919050565b600060208201905081810360008301526147768161422f565b9050919050565b6000602082019050818103600083015261479681614252565b9050919050565b600060208201905081810360008301526147b681614275565b9050919050565b600060208201905081810360008301526147d681614298565b9050919050565b600060208201905081810360008301526147f6816142bb565b9050919050565b60006020820190508181036000830152614816816142de565b9050919050565b6000602082019050818103600083015261483681614301565b9050919050565b60006020820190506148526000830184614333565b92915050565b6000614862614873565b905061486e8282614b97565b919050565b6000604051905090565b600067ffffffffffffffff82111561489857614897614ccf565b5b6148a182614cfe565b9050602081019050919050565b600067ffffffffffffffff8211156148c9576148c8614ccf565b5b6148d282614cfe565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061497182614aef565b915061497c83614aef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149b1576149b0614c42565b5b828201905092915050565b60006149c782614aef565b91506149d283614aef565b9250826149e2576149e1614c71565b5b828204905092915050565b60006149f882614aef565b9150614a0383614aef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a3c57614a3b614c42565b5b828202905092915050565b6000614a5282614aef565b9150614a5d83614aef565b925082821015614a7057614a6f614c42565b5b828203905092915050565b6000614a8682614acf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b26578082015181840152602081019050614b0b565b83811115614b35576000848401525b50505050565b6000614b4682614aef565b91506000821415614b5a57614b59614c42565b5b600182039050919050565b60006002820490506001821680614b7d57607f821691505b60208210811415614b9157614b90614ca0565b5b50919050565b614ba082614cfe565b810181811067ffffffffffffffff82111715614bbf57614bbe614ccf565b5b80604052505050565b6000614bd382614aef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c0657614c05614c42565b5b600182019050919050565b6000614c1c82614aef565b9150614c2783614aef565b925082614c3757614c36614c71565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c65206861736e277420737461727465642e000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520646f6e2774206861766520616e79206672656520726f6c6c73210000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f546f6f206c6974746c652073656e742c20706c656173652073656e64206d6f7260008201527f65206574682e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e6e6f74206d696e742074686174206d616e792070756e6b732e600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f6f206d616e79206174206f6e63652e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f742074686973206d616e792070756e6b73206c6560008201527f66742e0000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c726561647920676976656e206d6178206e756d626572206f66206672656560008201527f20726f6c6c730000000000000000000000000000000000000000000000000000602082015250565b7f5468657265206172656e27742074686973206d616e792070756e6b73206c656660008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742065786365656420323020756e75736564206672656520726f6c60008201527f6c73210000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61544381614a7b565b811461544e57600080fd5b50565b61545a81614a8d565b811461546557600080fd5b50565b61547181614aa3565b811461547c57600080fd5b50565b61548881614aef565b811461549357600080fd5b5056fea264697066735822122079de945066b3cac9d62bc823fae49a88153ede3dfa61124e3d82d655b23d52f864736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102505760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063d2d6a5471161007a578063d2d6a5471461086a578063e8a3d485146108a7578063e8e732a1146108d2578063e985e9c51461090f578063f2f5ec151461094c578063f2fde38b1461097557610250565b8063b88d4fde14610785578063bb51f32d146107ae578063bc4eda10146107c5578063c87b56dd14610802578063cbf775b21461083f57610250565b80639fd83a15116100fd5780639fd83a15146106c1578063a0712d68146106fe578063a1d898191461071a578063a22cb46514610745578063b66a0e5d1461076e57610250565b80638da5cb5b146105ee57806391b7f5ed14610619578063938e3d7b1461064257806395d89b411461066b57806398d5fdca1461069657610250565b8063380d831b116101d257806355f804b31161019657806355f804b3146104de5780635b5a493d146105075780636352211e1461053257806370a082311461056f578063715018a6146105ac578063779e170d146105c357610250565b8063380d831b1461041f5780633af03e8a1461043657806342842e0e1461044d5780634f6ccce71461047657806351605d80146104b357610250565b8063081812fc11610219578063081812fc14610328578063095ea7b31461036557806318160ddd1461038e57806323b872dd146103b95780632f745c59146103e257610250565b8062e6672c1461025557806301ffc9a71461026c57806304299b2a146102a957806306d120d5146102d257806306fdde03146102fd575b600080fd5b34801561026157600080fd5b5061026a61099e565b005b34801561027857600080fd5b50610293600480360381019061028e9190613d2b565b610b39565b6040516102a09190614480565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613d7d565b610b4b565b005b3480156102de57600080fd5b506102e7610be1565b6040516102f4919061449b565b60405180910390f35b34801561030957600080fd5b50610312610c6f565b60405161031f919061449b565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613dbe565b610d01565b60405161035c9190614388565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613cef565b610d86565b005b34801561039a57600080fd5b506103a3610e9e565b6040516103b0919061483d565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613be9565b610eab565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613cef565b610f0b565b604051610416919061483d565b60405180910390f35b34801561042b57600080fd5b50610434610fb0565b005b34801561044257600080fd5b5061044b611049565b005b34801561045957600080fd5b50610474600480360381019061046f9190613be9565b611174565b005b34801561048257600080fd5b5061049d60048036038101906104989190613dbe565b611194565b6040516104aa919061483d565b60405180910390f35b3480156104bf57600080fd5b506104c861122b565b6040516104d5919061449b565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613d7d565b6112b9565b005b34801561051357600080fd5b5061051c611350565b604051610529919061483d565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613dbe565b61135a565b6040516105669190614388565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613b84565b61140c565b6040516105a3919061483d565b60405180910390f35b3480156105b857600080fd5b506105c16114c4565b005b3480156105cf57600080fd5b506105d86115fe565b6040516105e59190614480565b60405180910390f35b3480156105fa57600080fd5b50610603611611565b6040516106109190614388565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613dbe565b61163a565b005b34801561064e57600080fd5b5061066960048036038101906106649190613d7d565b6116c0565b005b34801561067757600080fd5b50610680611756565b60405161068d919061449b565b60405180910390f35b3480156106a257600080fd5b506106ab6117e8565b6040516106b8919061483d565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613b84565b6117f2565b6040516106f5919061483d565b60405180910390f35b61071860048036038101906107139190613dbe565b61183c565b005b34801561072657600080fd5b5061072f611a00565b60405161073c9190614480565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190613cb3565b611a13565b005b34801561077a57600080fd5b50610783611b94565b005b34801561079157600080fd5b506107ac60048036038101906107a79190613c38565b611c48565b005b3480156107ba57600080fd5b506107c3611caa565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613dbe565b611e1d565b6040516107f9919061483d565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613dbe565b611ed4565b604051610836919061449b565b60405180910390f35b34801561084b57600080fd5b50610854611f6d565b604051610861919061483d565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613b84565b611f72565b60405161089e919061483d565b60405180910390f35b3480156108b357600080fd5b506108bc611f8b565b6040516108c9919061449b565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613b84565b61201d565b604051610906919061445e565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613bad565b612199565b6040516109439190614480565b60405180910390f35b34801561095857600080fd5b50610973600480360381019061096e9190613cef565b61222d565b005b34801561098157600080fd5b5061099c60048036038101906109979190613b84565b61242d565b005b6002600b5414156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db9061481d565b60405180910390fd5b6002600b81905550600061272460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a66906145bd565b60405180910390fd5b600061272460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600061272460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610b04610e9e565b610b0c611350565b610b169190614a47565b905080821115610b24578091505b610b2d826125d6565b50506001600b81905550565b6000610b4482612674565b9050919050565b610b536126ee565b73ffffffffffffffffffffffffffffffffffffffff16610b71611611565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe906146bd565b60405180910390fd5b80600c9080519060200190610bdd9291906139a8565b5050565b600f8054610bee90614b65565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90614b65565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b606060018054610c7e90614b65565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa90614b65565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b5050505050905090565b6000610d0c826126f6565b610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d429061469d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d918261135a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df99061471d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e216126ee565b73ffffffffffffffffffffffffffffffffffffffff161480610e505750610e4f81610e4a6126ee565b612199565b5b610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906145dd565b60405180910390fd5b610e998383612762565b505050565b6000600980549050905090565b610ebc610eb66126ee565b8261281b565b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef29061477d565b60405180910390fd5b610f068383836128f9565b505050565b6000610f168361140c565b8210610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e906144dd565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610fb86126ee565b73ffffffffffffffffffffffffffffffffffffffff16610fd6611611565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611023906146bd565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b6110516126ee565b73ffffffffffffffffffffffffffffffffffffffff1661106f611611565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc906146bd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110eb90614373565b60006040518083038185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b5050905080611171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111689061475d565b60405180910390fd5b50565b61118f83838360405180602001604052806000815250611c48565b505050565b600061119e610e9e565b82106111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d69061479d565b60405180910390fd5b60098281548110611219577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600c805461123890614b65565b80601f016020809104026020016040519081016040528092919081815260200182805461126490614b65565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b6112c16126ee565b73ffffffffffffffffffffffffffffffffffffffff166112df611611565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c906146bd565b60405180910390fd5b80612726908051906020019061134c9291906139a8565b5050565b6000612710905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa9061461d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906145fd565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114cc6126ee565b73ffffffffffffffffffffffffffffffffffffffff166114ea611611565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116426126ee565b73ffffffffffffffffffffffffffffffffffffffff16611660611611565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad906146bd565b60405180910390fd5b80600e8190555050565b6116c86126ee565b73ffffffffffffffffffffffffffffffffffffffff166116e6611611565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611733906146bd565b60405180910390fd5b80600f90805190602001906117529291906139a8565b5050565b60606002805461176590614b65565b80601f016020809104026020016040519081016040528092919081815260200182805461179190614b65565b80156117de5780601f106117b3576101008083540402835291602001916117de565b820191906000526020600020905b8154815290600101906020018083116117c157829003601f168201915b5050505050905090565b6000600e54905090565b600061272460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6002600b541415611882576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118799061481d565b60405180910390fd5b6002600b81905550600d60009054906101000a900460ff166118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d0906144bd565b60405180910390fd5b60006118e3610e9e565b90506118ed611350565b82826118f99190614966565b111561193a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611931906147dd565b60405180910390fd5b600082600e5461194a91906149ed565b90508034101561198f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119869061463d565b60405180910390fd5b803411156119ea573373ffffffffffffffffffffffffffffffffffffffff166108fc82346119bd9190614a47565b9081150290604051600060405180830381858888f193505050501580156119e8573d6000803e3d6000fd5b505b6119f3836125d6565b50506001600b8190555050565b600d60019054906101000a900460ff1681565b611a1b6126ee565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a809061457d565b60405180910390fd5b8060066000611a966126ee565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b436126ee565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b889190614480565b60405180910390a35050565b611b9c6126ee565b73ffffffffffffffffffffffffffffffffffffffff16611bba611611565b73ffffffffffffffffffffffffffffffffffffffff1614611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c07906146bd565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b611c59611c536126ee565b8361281b565b611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f9061477d565b60405180910390fd5b611ca484848484612b55565b50505050565b611cb26126ee565b73ffffffffffffffffffffffffffffffffffffffff16611cd0611611565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906146bd565b60405180910390fd5b600047905060006006606483611d3c91906149bc565b611d4691906149ed565b905060008183611d569190614a47565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050611db857600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611e1857600080fd5b505050565b6000611e27611350565b82611e30610e9e565b611e3a9190614966565b1115611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e729061473d565b60405180910390fd5b6014821115611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb69061467d565b60405180910390fd5b600e5482611ecd91906149ed565b9050919050565b60606000611ee0612bb1565b90506000611eed84612c44565b905060006040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152509050600083511415611f3e57819350505050611f68565b828282604051602001611f5393929190614342565b60405160208183030381529060405293505050505b919050565b601481565b6127246020528060005260406000206000915090505481565b6060600f8054611f9a90614b65565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc690614b65565b80156120135780601f10611fe857610100808354040283529160200191612013565b820191906000526020600020905b815481529060010190602001808311611ff657829003601f168201915b5050505050905090565b6060600061202a8361140c565b905060008114156120ad57600067ffffffffffffffff811115612076577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120a45781602001602082028036833780820191505090505b50915050612194565b60008167ffffffffffffffff8111156120ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561211d5781602001602082028036833780820191505090505b50905060005b8281101561218d576121358582610f0b565b82828151811061216e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061218590614bc8565b915050612123565b5080925050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122356126ee565b73ffffffffffffffffffffffffffffffffffffffff16612253611611565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a0906146bd565b60405180910390fd5b60c861272354106122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e6906147bd565b60405180910390fd5b60158161272460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461233d9190614966565b1061237d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612374906147fd565b60405180910390fd5b600061272460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081816123ce9190614966565b61272460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081612723546124219190614966565b61272381905550505050565b6124356126ee565b73ffffffffffffffffffffffffffffffffffffffff16612453611611565b73ffffffffffffffffffffffffffffffffffffffff16146124a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a0906146bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612519576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125109061451d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601481111561261a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612611906146fd565b60405180910390fd5b600061272254905060005b828110156126675760006126398483612df1565b90506126453382612e5f565b828061265090614b3b565b93505050808061265f90614bc8565b915050612625565b5080612722819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126e757506126e682612e7d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127d58361135a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612826826126f6565b612865576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285c9061459d565b60405180910390fd5b60006128708361135a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128df57508373ffffffffffffffffffffffffffffffffffffffff166128c784610d01565b73ffffffffffffffffffffffffffffffffffffffff16145b806128f057506128ef8185612199565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129198261135a565b73ffffffffffffffffffffffffffffffffffffffff161461296f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612966906146dd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d69061455d565b60405180910390fd5b6129ea838383612f5f565b6129f5600082612762565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a459190614a47565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9c9190614966565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b608484846128f9565b612b6c84848484612f6f565b612bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba2906144fd565b60405180910390fd5b50505050565b60606127268054612bc190614b65565b80601f0160208091040260200160405190810160405280929190818152602001828054612bed90614b65565b8015612c3a5780601f10612c0f57610100808354040283529160200191612c3a565b820191906000526020600020905b815481529060010190602001808311612c1d57829003601f168201915b5050505050905090565b60606000821415612c8c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dec565b600082905060005b60008214612cbe578080612ca790614bc8565b915050600a82612cb791906149bc565b9150612c94565b60008167ffffffffffffffff811115612d00577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d325781602001600182028036833780820191505090505b5090505b60008514612de557600182612d4b9190614a47565b9150600a85612d5a9190614c11565b6030612d669190614966565b60f81b818381518110612da2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dde91906149bc565b9450612d36565b8093505050505b919050565b600080333a4342600143612e059190614a47565b408888604051602001612e1e97969594939291906143ef565b6040516020818303038152906040528051906020012060001c905060006127225482612e4a9190614c11565b9050612e5581613106565b9250505092915050565b612e79828260405180602001604052806000815250613271565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f4857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f585750612f57826132cc565b5b9050919050565b612f6a838383613336565b505050565b6000612f908473ffffffffffffffffffffffffffffffffffffffff1661344a565b156130f9578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fb96126ee565b8786866040518563ffffffff1660e01b8152600401612fdb94939291906143a3565b602060405180830381600087803b158015612ff557600080fd5b505af192505050801561302657506040513d601f19601f820116820180604052508101906130239190613d54565b60015b6130a9573d8060008114613056576040519150601f19603f3d011682016040523d82523d6000602084013e61305b565b606091505b506000815114156130a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613098906144fd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130fe565b600190505b949350505050565b6000806012836127108110613144577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154905060008082141561315a5783905061315e565b8190505b60006001612722546131709190614a47565b905080851461324d57600060128261271081106131b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015490506000811415613209578160128761271081106131ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555061324b565b806012876127108110613245577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505b505b612722600081548092919061326190614b3b565b9190505550819350505050919050565b61327b838361345d565b6132886000848484612f6f565b6132c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132be906144fd565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61334183838361362b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133845761337f81613630565b6133c3565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133c2576133c18382613679565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561340657613401816137e6565b613445565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613444576134438282613929565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c49061465d565b60405180910390fd5b6134d6816126f6565b15613516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350d9061453d565b60405180910390fd5b61352260008383612f5f565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135729190614966565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136868461140c565b6136909190614a47565b9050600060086000848152602001908152602001600020549050818114613775576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506137fa9190614a47565b90506000600a6000848152602001908152602001600020549050600060098381548110613850577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613898577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061390d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139348361140c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546139b490614b65565b90600052602060002090601f0160209004810192826139d65760008555613a1d565b82601f106139ef57805160ff1916838001178555613a1d565b82800160010185558215613a1d579182015b82811115613a1c578251825591602001919060010190613a01565b5b509050613a2a9190613a2e565b5090565b5b80821115613a47576000816000905550600101613a2f565b5090565b6000613a5e613a598461487d565b614858565b905082815260208101848484011115613a7657600080fd5b613a81848285614af9565b509392505050565b6000613a9c613a97846148ae565b614858565b905082815260208101848484011115613ab457600080fd5b613abf848285614af9565b509392505050565b600081359050613ad68161543a565b92915050565b600081359050613aeb81615451565b92915050565b600081359050613b0081615468565b92915050565b600081519050613b1581615468565b92915050565b600082601f830112613b2c57600080fd5b8135613b3c848260208601613a4b565b91505092915050565b600082601f830112613b5657600080fd5b8135613b66848260208601613a89565b91505092915050565b600081359050613b7e8161547f565b92915050565b600060208284031215613b9657600080fd5b6000613ba484828501613ac7565b91505092915050565b60008060408385031215613bc057600080fd5b6000613bce85828601613ac7565b9250506020613bdf85828601613ac7565b9150509250929050565b600080600060608486031215613bfe57600080fd5b6000613c0c86828701613ac7565b9350506020613c1d86828701613ac7565b9250506040613c2e86828701613b6f565b9150509250925092565b60008060008060808587031215613c4e57600080fd5b6000613c5c87828801613ac7565b9450506020613c6d87828801613ac7565b9350506040613c7e87828801613b6f565b925050606085013567ffffffffffffffff811115613c9b57600080fd5b613ca787828801613b1b565b91505092959194509250565b60008060408385031215613cc657600080fd5b6000613cd485828601613ac7565b9250506020613ce585828601613adc565b9150509250929050565b60008060408385031215613d0257600080fd5b6000613d1085828601613ac7565b9250506020613d2185828601613b6f565b9150509250929050565b600060208284031215613d3d57600080fd5b6000613d4b84828501613af1565b91505092915050565b600060208284031215613d6657600080fd5b6000613d7484828501613b06565b91505092915050565b600060208284031215613d8f57600080fd5b600082013567ffffffffffffffff811115613da957600080fd5b613db584828501613b45565b91505092915050565b600060208284031215613dd057600080fd5b6000613dde84828501613b6f565b91505092915050565b6000613df38383614324565b60208301905092915050565b613e0881614a7b565b82525050565b6000613e19826148ef565b613e23818561491d565b9350613e2e836148df565b8060005b83811015613e5f578151613e468882613de7565b9750613e5183614910565b925050600181019050613e32565b5085935050505092915050565b613e7581614a8d565b82525050565b613e8481614a99565b82525050565b6000613e95826148fa565b613e9f818561492e565b9350613eaf818560208601614b08565b613eb881614cfe565b840191505092915050565b6000613ece82614905565b613ed8818561494a565b9350613ee8818560208601614b08565b613ef181614cfe565b840191505092915050565b6000613f0782614905565b613f11818561495b565b9350613f21818560208601614b08565b80840191505092915050565b6000613f3a60148361494a565b9150613f4582614d0f565b602082019050919050565b6000613f5d602b8361494a565b9150613f6882614d38565b604082019050919050565b6000613f8060328361494a565b9150613f8b82614d87565b604082019050919050565b6000613fa360268361494a565b9150613fae82614dd6565b604082019050919050565b6000613fc6601c8361494a565b9150613fd182614e25565b602082019050919050565b6000613fe960248361494a565b9150613ff482614e4e565b604082019050919050565b600061400c60198361494a565b915061401782614e9d565b602082019050919050565b600061402f602c8361494a565b915061403a82614ec6565b604082019050919050565b6000614052601e8361494a565b915061405d82614f15565b602082019050919050565b600061407560388361494a565b915061408082614f3e565b604082019050919050565b6000614098602a8361494a565b91506140a382614f8d565b604082019050919050565b60006140bb60298361494a565b91506140c682614fdc565b604082019050919050565b60006140de60268361494a565b91506140e98261502b565b604082019050919050565b600061410160208361494a565b915061410c8261507a565b602082019050919050565b600061412460208361494a565b915061412f826150a3565b602082019050919050565b6000614147602c8361494a565b9150614152826150cc565b604082019050919050565b600061416a60208361494a565b91506141758261511b565b602082019050919050565b600061418d60298361494a565b915061419882615144565b604082019050919050565b60006141b060198361494a565b91506141bb82615193565b602082019050919050565b60006141d360218361494a565b91506141de826151bc565b604082019050919050565b60006141f660238361494a565b91506142018261520b565b604082019050919050565b600061421960008361493f565b91506142248261525a565b600082019050919050565b600061423c60108361494a565b91506142478261525d565b602082019050919050565b600061425f60318361494a565b915061426a82615286565b604082019050919050565b6000614282602c8361494a565b915061428d826152d5565b604082019050919050565b60006142a560268361494a565b91506142b082615324565b604082019050919050565b60006142c860228361494a565b91506142d382615373565b604082019050919050565b60006142eb60238361494a565b91506142f6826153c2565b604082019050919050565b600061430e601f8361494a565b915061431982615411565b602082019050919050565b61432d81614aef565b82525050565b61433c81614aef565b82525050565b600061434e8286613efc565b915061435a8285613efc565b91506143668284613efc565b9150819050949350505050565b600061437e8261420c565b9150819050919050565b600060208201905061439d6000830184613dff565b92915050565b60006080820190506143b86000830187613dff565b6143c56020830186613dff565b6143d26040830185614333565b81810360608301526143e48184613e8a565b905095945050505050565b600060e082019050614404600083018a613dff565b6144116020830189614333565b61441e6040830188614333565b61442b6060830187614333565b6144386080830186613e7b565b61444560a0830185614333565b61445260c0830184614333565b98975050505050505050565b600060208201905081810360008301526144788184613e0e565b905092915050565b60006020820190506144956000830184613e6c565b92915050565b600060208201905081810360008301526144b58184613ec3565b905092915050565b600060208201905081810360008301526144d681613f2d565b9050919050565b600060208201905081810360008301526144f681613f50565b9050919050565b6000602082019050818103600083015261451681613f73565b9050919050565b6000602082019050818103600083015261453681613f96565b9050919050565b6000602082019050818103600083015261455681613fb9565b9050919050565b6000602082019050818103600083015261457681613fdc565b9050919050565b6000602082019050818103600083015261459681613fff565b9050919050565b600060208201905081810360008301526145b681614022565b9050919050565b600060208201905081810360008301526145d681614045565b9050919050565b600060208201905081810360008301526145f681614068565b9050919050565b600060208201905081810360008301526146168161408b565b9050919050565b60006020820190508181036000830152614636816140ae565b9050919050565b60006020820190508181036000830152614656816140d1565b9050919050565b60006020820190508181036000830152614676816140f4565b9050919050565b6000602082019050818103600083015261469681614117565b9050919050565b600060208201905081810360008301526146b68161413a565b9050919050565b600060208201905081810360008301526146d68161415d565b9050919050565b600060208201905081810360008301526146f681614180565b9050919050565b60006020820190508181036000830152614716816141a3565b9050919050565b60006020820190508181036000830152614736816141c6565b9050919050565b60006020820190508181036000830152614756816141e9565b9050919050565b600060208201905081810360008301526147768161422f565b9050919050565b6000602082019050818103600083015261479681614252565b9050919050565b600060208201905081810360008301526147b681614275565b9050919050565b600060208201905081810360008301526147d681614298565b9050919050565b600060208201905081810360008301526147f6816142bb565b9050919050565b60006020820190508181036000830152614816816142de565b9050919050565b6000602082019050818103600083015261483681614301565b9050919050565b60006020820190506148526000830184614333565b92915050565b6000614862614873565b905061486e8282614b97565b919050565b6000604051905090565b600067ffffffffffffffff82111561489857614897614ccf565b5b6148a182614cfe565b9050602081019050919050565b600067ffffffffffffffff8211156148c9576148c8614ccf565b5b6148d282614cfe565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061497182614aef565b915061497c83614aef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149b1576149b0614c42565b5b828201905092915050565b60006149c782614aef565b91506149d283614aef565b9250826149e2576149e1614c71565b5b828204905092915050565b60006149f882614aef565b9150614a0383614aef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614a3c57614a3b614c42565b5b828202905092915050565b6000614a5282614aef565b9150614a5d83614aef565b925082821015614a7057614a6f614c42565b5b828203905092915050565b6000614a8682614acf565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614b26578082015181840152602081019050614b0b565b83811115614b35576000848401525b50505050565b6000614b4682614aef565b91506000821415614b5a57614b59614c42565b5b600182039050919050565b60006002820490506001821680614b7d57607f821691505b60208210811415614b9157614b90614ca0565b5b50919050565b614ba082614cfe565b810181811067ffffffffffffffff82111715614bbf57614bbe614ccf565b5b80604052505050565b6000614bd382614aef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c0657614c05614c42565b5b600182019050919050565b6000614c1c82614aef565b9150614c2783614aef565b925082614c3757614c36614c71565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f53616c65206861736e277420737461727465642e000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f596f7520646f6e2774206861766520616e79206672656520726f6c6c73210000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f546f6f206c6974746c652073656e742c20706c656173652073656e64206d6f7260008201527f65206574682e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f596f752063616e6e6f74206d696e742074686174206d616e792070756e6b732e600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720746f6f206d616e79206174206f6e63652e00000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f742074686973206d616e792070756e6b73206c6560008201527f66742e0000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c726561647920676976656e206d6178206e756d626572206f66206672656560008201527f20726f6c6c730000000000000000000000000000000000000000000000000000602082015250565b7f5468657265206172656e27742074686973206d616e792070756e6b73206c656660008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f742065786365656420323020756e75736564206672656520726f6c60008201527f6c73210000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61544381614a7b565b811461544e57600080fd5b50565b61545a81614a8d565b811461546557600080fd5b50565b61547181614aa3565b811461547c57600080fd5b50565b61548881614aef565b811461549357600080fd5b5056fea264697066735822122079de945066b3cac9d62bc823fae49a88153ede3dfa61124e3d82d655b23d52f864736f6c63430008040033

Deployed Bytecode Sourcemap

46245:8000:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47197:359;;;;;;;;;;;;;:::i;:::-;;54049:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53219:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46619:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28088:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29548:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29085:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40459:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30438:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40127:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52397:65;;;;;;;;;;;;;:::i;:::-;;53673:169;;;;;;;;;;;;;:::i;:::-;;30814:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40649:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46388:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52991:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47103:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27782:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27512:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19453:148;;;;;;;;;;;;;:::i;:::-;;46418:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18802:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53095:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28257:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50486:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47562:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47682:592;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46453:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29841:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52293:98;;;;;;;;;;;;;:::i;:::-;;31036:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53329:334;;;;;;;;;;;;;:::i;:::-;;50668:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51676:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46498:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46987:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50567:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51043:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30207:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52468:504;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19756:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47197:359;21685:1;22282:7;;:19;;22274:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21685:1;22415:7;:18;;;;47286:1:::1;47258:13;:25;47272:10;47258:25;;;;;;;;;;;;;;;;:29;47250:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;47329:14;47346:13;:25;47360:10;47346:25;;;;;;;;;;;;;;;;47329:42;;47406:1;47378:13;:25;47392:10;47378:25;;;;;;;;;;;;;;;:29;;;;47414:17;47452:13;:11;:13::i;:::-;47434:15;:13;:15::i;:::-;:31;;;;:::i;:::-;47414:51;;47485:9;47476:6;:18;47472:59;;;47514:9;47505:18;;47472:59;47537:13;47543:6;47537:5;:13::i;:::-;22446:1;;21641::::0;22594:7;:22;;;;47197:359::o;54049:193::-;54177:4;54200:36;54224:11;54200:23;:36::i;:::-;54193:43;;54049:193;;;:::o;53219:102::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53305:10:::1;53293:9;:22;;;;;;;;;;;;:::i;:::-;;53219:102:::0;:::o;46619:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28088:100::-;28142:13;28175:5;28168:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28088:100;:::o;29548:221::-;29624:7;29652:16;29660:7;29652;:16::i;:::-;29644:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29737:15;:24;29753:7;29737:24;;;;;;;;;;;;;;;;;;;;;29730:31;;29548:221;;;:::o;29085:397::-;29166:13;29182:23;29197:7;29182:14;:23::i;:::-;29166:39;;29230:5;29224:11;;:2;:11;;;;29216:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29310:5;29294:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29319:37;29336:5;29343:12;:10;:12::i;:::-;29319:16;:37::i;:::-;29294:62;29286:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29453:21;29462:2;29466:7;29453:8;:21::i;:::-;29085:397;;;:::o;40459:113::-;40520:7;40547:10;:17;;;;40540:24;;40459:113;:::o;30438:305::-;30599:41;30618:12;:10;:12::i;:::-;30632:7;30599:18;:41::i;:::-;30591:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30707:28;30717:4;30723:2;30727:7;30707:9;:28::i;:::-;30438:305;;;:::o;40127:256::-;40224:7;40260:23;40277:5;40260:16;:23::i;:::-;40252:5;:31;40244:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40349:12;:19;40362:5;40349:19;;;;;;;;;;;;;;;:26;40369:5;40349:26;;;;;;;;;;;;40342:33;;40127:256;;;;:::o;52397:65::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52451:5:::1;52440:8;;:16;;;;;;;;;;;;;;;;;;52397:65::o:0;53673:169::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53726:12:::1;53744:10;:15;;53767:21;53744:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53725:68;;;53808:7;53800:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;19093:1;53673:169::o:0;30814:151::-;30918:39;30935:4;30941:2;30945:7;30918:39;;;;;;;;;;;;:16;:39::i;:::-;30814:151;;;:::o;40649:233::-;40724:7;40760:30;:28;:30::i;:::-;40752:5;:38;40744:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40857:10;40868:5;40857:17;;;;;;;;;;;;;;;;;;;;;;;;40850:24;;40649:233;;;:::o;46388:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52991:98::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53076:7:::1;53060:13;:23;;;;;;;;;;;;:::i;:::-;;52991:98:::0;:::o;47103:88::-;47157:7;47180:5;47173:12;;47103:88;:::o;27782:239::-;27854:7;27874:13;27890:7;:16;27898:7;27890:16;;;;;;;;;;;;;;;;;;;;;27874:32;;27942:1;27925:19;;:5;:19;;;;27917:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28008:5;28001:12;;;27782:239;;;:::o;27512:208::-;27584:7;27629:1;27612:19;;:5;:19;;;;27604:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27696:9;:16;27706:5;27696:16;;;;;;;;;;;;;;;;27689:23;;27512:208;;;:::o;19453:148::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19560:1:::1;19523:40;;19544:6;::::0;::::1;;;;;;;;19523:40;;;;;;;;;;;;19591:1;19574:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;19453:148::o:0;46418:28::-;;;;;;;;;;;;;:::o;18802:87::-;18848:7;18875:6;;;;;;;;;;;18868:13;;18802:87;:::o;52200:::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52272:9:::1;52263:6;:18;;;;52200:87:::0;:::o;53095:114::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53191:12:::1;53173:15;:30;;;;;;;;;;;;:::i;:::-;;53095:114:::0;:::o;28257:104::-;28313:13;28346:7;28339:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28257:104;:::o;50486:75::-;50527:7;50549:6;;50542:13;;50486:75;:::o;47562:114::-;47627:7;47650:13;:20;47664:5;47650:20;;;;;;;;;;;;;;;;47643:27;;47562:114;;;:::o;47682:592::-;21685:1;22282:7;;:19;;22274:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21685:1;22415:7;:18;;;;47761:8:::1;;;;;;;;;;;47753:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;47801:19;47823:13;:11;:13::i;:::-;47801:35;;47887:15;:13;:15::i;:::-;47873:10;47859:11;:24;;;;:::i;:::-;:43;;47843:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;47961:27;48000:10;47991:6;;:19;;;;:::i;:::-;47961:49;;48046:19;48033:9;:32;;48017:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;48144:19;48132:9;:31;48128:115;;;48182:10;48174:28;;:61;48215:19;48203:9;:31;;;;:::i;:::-;48174:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48128:115;48251:17;48257:10;48251:5;:17::i;:::-;22446:1;;21641::::0;22594:7;:22;;;;47682:592;:::o;46453:38::-;;;;;;;;;;;;;:::o;29841:295::-;29956:12;:10;:12::i;:::-;29944:24;;:8;:24;;;;29936:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30056:8;30011:18;:32;30030:12;:10;:12::i;:::-;30011:32;;;;;;;;;;;;;;;:42;30044:8;30011:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30109:8;30080:48;;30095:12;:10;:12::i;:::-;30080:48;;;30119:8;30080:48;;;;;;:::i;:::-;;;;;;;;29841:295;;:::o;52293:98::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52349:4:::1;52338:8;;:15;;;;;;;;;;;;;;;;;;52381:4;52360:18;;:25;;;;;;;;;;;;;;;;;;52293:98::o:0;31036:285::-;31168:41;31187:12;:10;:12::i;:::-;31201:7;31168:18;:41::i;:::-;31160:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31274:39;31288:4;31294:2;31298:7;31307:5;31274:13;:39::i;:::-;31036:285;;;;:::o;53329:334::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53456:16:::1;53475:21;53456:40;;53503:12;53535:1;53529:3;53518:8;:14;;;;:::i;:::-;:18;;;;:::i;:::-;53503:33;;53543:14;53571:4;53560:8;:15;;;;:::i;:::-;53543:32;;53598:3;;;;;;;;;;;53590:17;;:23;53608:4;53590:23;;;;;;;;;;;;;;;;;;;;;;;53582:32;;;::::0;::::1;;53637:5;;;;;;;;;;;53629:19;;:27;53649:6;53629:27;;;;;;;;;;;;;;;;;;;;;;;53621:36;;;::::0;::::1;;19093:1;;;53329:334::o:0;50668:369::-;50756:7;50821:15;:13;:15::i;:::-;50807:10;50791:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:45;;50775:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;46545:2;50912:10;:34;;50896:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;51023:6;;51010:10;:19;;;;:::i;:::-;51003:26;;50668:369;;;:::o;51676:434::-;51762:13;51787:18;51808:10;:8;:10::i;:::-;51787:31;;51825:23;51851:26;51868:8;51851:16;:26::i;:::-;51825:52;;51884:20;:30;;;;;;;;;;;;;;;;;;;52004:1;51988:4;51982:18;:23;51978:62;;;52023:9;52016:16;;;;;;;51978:62;52079:4;52085:9;52096:6;52062:41;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52048:56;;;;;51676:434;;;;:::o;46498:49::-;46545:2;46498:49;:::o;46987:48::-;;;;;;;;;;;;;;;;;:::o;50567:93::-;50611:13;50639:15;50632:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50567:93;:::o;51043:427::-;51131:16;51159;51178:17;51188:6;51178:9;:17::i;:::-;51159:36;;51218:1;51206:8;:13;51202:263;;;51251:1;51237:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51230:23;;;;;51202:263;51276:23;51316:8;51302:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51276:49;;51339:9;51334:102;51358:8;51354:1;:12;51334:102;;;51396:30;51416:6;51424:1;51396:19;:30::i;:::-;51384:6;51391:1;51384:9;;;;;;;;;;;;;;;;;;;;;:42;;;;;51368:3;;;;;:::i;:::-;;;;51334:102;;;;51451:6;51444:13;;;;51043:427;;;;:::o;30207:164::-;30304:4;30328:18;:25;30347:5;30328:25;;;;;;;;;;;;;;;:35;30354:8;30328:35;;;;;;;;;;;;;;;;;;;;;;;;;30321:42;;30207:164;;;;:::o;52468:504::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52666:3:::1;52645:18;;:24;52637:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;52764:2;52753:8;52727:13;:23;52741:8;52727:23;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:39;52719:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;52813:17;52833:13;:23;52847:8;52833:23;;;;;;;;;;;;;;;;52813:43;;52901:8;52889:9;:20;;;;:::i;:::-;52863:13;:23;52877:8;52863:23;;;;;;;;;;;;;;;:46;;;;52958:8;52937:18;;:29;;;;:::i;:::-;52916:18;:50;;;;19093:1;52468:504:::0;;:::o;19756:244::-;19033:12;:10;:12::i;:::-;19022:23;;:7;:5;:7::i;:::-;:23;;;19014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19865:1:::1;19845:22;;:8;:22;;;;19837:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19955:8;19926:38;;19947:6;::::0;::::1;;;;;;;;19926:38;;;;;;;;;;;;19984:8;19975:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;19756:244:::0;:::o;48312:448::-;46545:2;48371:10;:34;;48363:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;48444:33;48480:19;;48444:55;;48511:9;48506:195;48530:10;48526:1;:14;48506:195;;;48556:18;48577:38;48601:10;48613:1;48577:23;:38::i;:::-;48556:59;;48624:33;48634:10;48646;48624:9;:33::i;:::-;48666:27;;;;;:::i;:::-;;;;48506:195;48542:3;;;;;:::i;:::-;;;;48506:195;;;;48729:25;48707:19;:47;;;;48312:448;;:::o;39806:237::-;39908:4;39947:35;39932:50;;;:11;:50;;;;:103;;;;39999:36;40023:11;39999:23;:36::i;:::-;39932:103;39925:110;;39806:237;;;:::o;743:98::-;796:7;823:10;816:17;;743:98;:::o;32788:127::-;32853:4;32905:1;32877:30;;:7;:16;32885:7;32877:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32870:37;;32788:127;;;:::o;36665:174::-;36767:2;36740:15;:24;36756:7;36740:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36823:7;36819:2;36785:46;;36794:23;36809:7;36794:14;:23::i;:::-;36785:46;;;;;;;;;;;;36665:174;;:::o;33082:348::-;33175:4;33200:16;33208:7;33200;:16::i;:::-;33192:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33276:13;33292:23;33307:7;33292:14;:23::i;:::-;33276:39;;33345:5;33334:16;;:7;:16;;;:51;;;;33378:7;33354:31;;:20;33366:7;33354:11;:20::i;:::-;:31;;;33334:51;:87;;;;33389:32;33406:5;33413:7;33389:16;:32::i;:::-;33334:87;33326:96;;;33082:348;;;;:::o;36003:544::-;36128:4;36101:31;;:23;36116:7;36101:14;:23::i;:::-;:31;;;36093:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36211:1;36197:16;;:2;:16;;;;36189:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36267:39;36288:4;36294:2;36298:7;36267:20;:39::i;:::-;36371:29;36388:1;36392:7;36371:8;:29::i;:::-;36432:1;36413:9;:15;36423:4;36413:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36461:1;36444:9;:13;36454:2;36444:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36492:2;36473:7;:16;36481:7;36473:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36531:7;36527:2;36512:27;;36521:4;36512:27;;;;;;;;;;;;36003:544;;;:::o;32203:272::-;32317:28;32327:4;32333:2;32337:7;32317:9;:28::i;:::-;32364:48;32387:4;32393:2;32397:7;32406:5;32364:22;:48::i;:::-;32356:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32203:272;;;;:::o;51562:108::-;51622:13;51651;51644:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51562:108;:::o;24137:723::-;24193:13;24423:1;24414:5;:10;24410:53;;;24441:10;;;;;;;;;;;;;;;;;;;;;24410:53;24473:12;24488:5;24473:20;;24504:14;24529:78;24544:1;24536:4;:9;24529:78;;24562:8;;;;;:::i;:::-;;;;24593:2;24585:10;;;;;:::i;:::-;;;24529:78;;;24617:19;24649:6;24639:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24617:39;;24667:154;24683:1;24674:5;:10;24667:154;;24711:1;24701:11;;;;;:::i;:::-;;;24778:2;24770:5;:10;;;;:::i;:::-;24757:2;:24;;;;:::i;:::-;24744:39;;24727:6;24734;24727:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;24807:2;24798:11;;;;;:::i;:::-;;;24667:154;;;24845:6;24831:21;;;;;24137:723;;;;:::o;48766:533::-;48860:7;48879:17;48971:10;48996:11;49022:12;49049:15;49104:1;49089:12;:16;;;;:::i;:::-;49079:27;49121:11;49147:2;48946:216;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48924:249;;;;;;48906:276;;48879:303;;49189:19;49223;;49211:9;:31;;;;:::i;:::-;49189:53;;49256:37;49281:11;49256:24;:37::i;:::-;49249:44;;;;48766:533;;;;:::o;33772:110::-;33848:26;33858:2;33862:7;33848:26;;;;;;;;;;;;:9;:26::i;:::-;33772:110;;:::o;27156:292::-;27258:4;27297:25;27282:40;;;:11;:40;;;;:105;;;;27354:33;27339:48;;;:11;:48;;;;27282:105;:158;;;;27404:36;27428:11;27404:23;:36::i;:::-;27282:158;27275:165;;27156:292;;;:::o;53848:195::-;53992:45;54019:4;54025:2;54029:7;53992:26;:45::i;:::-;53848:195;;;:::o;37404:843::-;37525:4;37551:15;:2;:13;;;:15::i;:::-;37547:693;;;37603:2;37587:36;;;37624:12;:10;:12::i;:::-;37638:4;37644:7;37653:5;37587:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37583:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37850:1;37833:6;:13;:18;37829:341;;;37876:60;;;;;;;;;;:::i;:::-;;;;;;;;37829:341;38120:6;38114:13;38105:6;38101:2;38097:15;38090:38;37583:602;37720:45;;;37710:55;;;:6;:55;;;;37703:62;;;;;37547:693;38224:4;38217:11;;37404:843;;;;;;;:::o;49305:1175::-;49387:7;49406:18;49427:16;49444:10;49427:28;;;;;;;;;;;;;;;;;49406:49;;49462:14;49501:1;49487:10;:15;49483:260;;;49588:10;49579:19;;49483:260;;;49725:10;49716:19;;49483:260;49751:17;49793:1;49771:19;;:23;;;;:::i;:::-;49751:43;;49819:9;49805:10;:23;49801:624;;50034:22;50059:16;50076:9;50059:27;;;;;;;;;;;;;;;;;50034:52;;50117:1;50099:14;:19;50095:323;;;50230:9;50199:16;50216:10;50199:28;;;;;;;;;;;;;;;;:40;;;;50095:323;;;50394:14;50363:16;50380:10;50363:28;;;;;;;;;;;;;;;;:45;;;;50095:323;49801:624;;50433:19;;:21;;;;;;;;;:::i;:::-;;;;;;50468:6;50461:13;;;;;49305:1175;;;:::o;34109:250::-;34205:18;34211:2;34215:7;34205:5;:18::i;:::-;34242:54;34273:1;34277:2;34281:7;34290:5;34242:22;:54::i;:::-;34234:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;34109:250;;;:::o;9634:157::-;9719:4;9758:25;9743:40;;;:11;:40;;;;9736:47;;9634:157;;;:::o;41495:555::-;41605:45;41632:4;41638:2;41642:7;41605:26;:45::i;:::-;41683:1;41667:18;;:4;:18;;;41663:187;;;41702:40;41734:7;41702:31;:40::i;:::-;41663:187;;;41772:2;41764:10;;:4;:10;;;41760:90;;41791:47;41824:4;41830:7;41791:32;:47::i;:::-;41760:90;41663:187;41878:1;41864:16;;:2;:16;;;41860:183;;;41897:45;41934:7;41897:36;:45::i;:::-;41860:183;;;41970:4;41964:10;;:2;:10;;;41960:83;;41991:40;42019:2;42023:7;41991:27;:40::i;:::-;41960:83;41860:183;41495:555;;;:::o;10506:422::-;10566:4;10774:12;10885:7;10873:20;10865:28;;10919:1;10912:4;:8;10905:15;;;10506:422;;;:::o;34695:382::-;34789:1;34775:16;;:2;:16;;;;34767:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34848:16;34856:7;34848;:16::i;:::-;34847:17;34839:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34910:45;34939:1;34943:2;34947:7;34910:20;:45::i;:::-;34985:1;34968:9;:13;34978:2;34968:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35016:2;34997:7;:16;35005:7;34997:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35061:7;35057:2;35036:33;;35053:1;35036:33;;;;;;;;;;;;34695:382;;:::o;38858:93::-;;;;:::o;42773:164::-;42877:10;:17;;;;42850:15;:24;42866:7;42850:24;;;;;;;;;;;:44;;;;42905:10;42921:7;42905:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42773:164;:::o;43564:988::-;43830:22;43880:1;43855:22;43872:4;43855:16;:22::i;:::-;:26;;;;:::i;:::-;43830:51;;43892:18;43913:17;:26;43931:7;43913:26;;;;;;;;;;;;43892:47;;44060:14;44046:10;:28;44042:328;;44091:19;44113:12;:18;44126:4;44113:18;;;;;;;;;;;;;;;:34;44132:14;44113:34;;;;;;;;;;;;44091:56;;44197:11;44164:12;:18;44177:4;44164:18;;;;;;;;;;;;;;;:30;44183:10;44164:30;;;;;;;;;;;:44;;;;44314:10;44281:17;:30;44299:11;44281:30;;;;;;;;;;;:43;;;;44042:328;;44466:17;:26;44484:7;44466:26;;;;;;;;;;;44459:33;;;44510:12;:18;44523:4;44510:18;;;;;;;;;;;;;;;:34;44529:14;44510:34;;;;;;;;;;;44503:41;;;43564:988;;;;:::o;44847:1079::-;45100:22;45145:1;45125:10;:17;;;;:21;;;;:::i;:::-;45100:46;;45157:18;45178:15;:24;45194:7;45178:24;;;;;;;;;;;;45157:45;;45529:19;45551:10;45562:14;45551:26;;;;;;;;;;;;;;;;;;;;;;;;45529:48;;45615:11;45590:10;45601;45590:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;45726:10;45695:15;:28;45711:11;45695:28;;;;;;;;;;;:41;;;;45867:15;:24;45883:7;45867:24;;;;;;;;;;;45860:31;;;45902:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44847:1079;;;;:::o;42351:221::-;42436:14;42453:20;42470:2;42453:16;:20::i;:::-;42436:37;;42511:7;42484:12;:16;42497:2;42484:16;;;;;;;;;;;;;;;:24;42501:6;42484:24;;;;;;;;;;;:34;;;;42558:6;42529:17;:26;42547:7;42529:26;;;;;;;;;;;:35;;;;42351:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:179::-;6155:10;6176:46;6218:3;6210:6;6176:46;:::i;:::-;6254:4;6249:3;6245:14;6231:28;;6166:99;;;;:::o;6271:118::-;6358:24;6376:5;6358:24;:::i;:::-;6353:3;6346:37;6336:53;;:::o;6425:732::-;6544:3;6573:54;6621:5;6573:54;:::i;:::-;6643:86;6722:6;6717:3;6643:86;:::i;:::-;6636:93;;6753:56;6803:5;6753:56;:::i;:::-;6832:7;6863:1;6848:284;6873:6;6870:1;6867:13;6848:284;;;6949:6;6943:13;6976:63;7035:3;7020:13;6976:63;:::i;:::-;6969:70;;7062:60;7115:6;7062:60;:::i;:::-;7052:70;;6908:224;6895:1;6892;6888:9;6883:14;;6848:284;;;6852:14;7148:3;7141:10;;6549:608;;;;;;;:::o;7163:109::-;7244:21;7259:5;7244:21;:::i;:::-;7239:3;7232:34;7222:50;;:::o;7278:118::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7343:53;;:::o;7402:360::-;7488:3;7516:38;7548:5;7516:38;:::i;:::-;7570:70;7633:6;7628:3;7570:70;:::i;:::-;7563:77;;7649:52;7694:6;7689:3;7682:4;7675:5;7671:16;7649:52;:::i;:::-;7726:29;7748:6;7726:29;:::i;:::-;7721:3;7717:39;7710:46;;7492:270;;;;;:::o;7768:364::-;7856:3;7884:39;7917:5;7884:39;:::i;:::-;7939:71;8003:6;7998:3;7939:71;:::i;:::-;7932:78;;8019:52;8064:6;8059:3;8052:4;8045:5;8041:16;8019:52;:::i;:::-;8096:29;8118:6;8096:29;:::i;:::-;8091:3;8087:39;8080:46;;7860:272;;;;;:::o;8138:377::-;8244:3;8272:39;8305:5;8272:39;:::i;:::-;8327:89;8409:6;8404:3;8327:89;:::i;:::-;8320:96;;8425:52;8470:6;8465:3;8458:4;8451:5;8447:16;8425:52;:::i;:::-;8502:6;8497:3;8493:16;8486:23;;8248:267;;;;;:::o;8521:366::-;8663:3;8684:67;8748:2;8743:3;8684:67;:::i;:::-;8677:74;;8760:93;8849:3;8760:93;:::i;:::-;8878:2;8873:3;8869:12;8862:19;;8667:220;;;:::o;8893:366::-;9035:3;9056:67;9120:2;9115:3;9056:67;:::i;:::-;9049:74;;9132:93;9221:3;9132:93;:::i;:::-;9250:2;9245:3;9241:12;9234:19;;9039:220;;;:::o;9265:366::-;9407:3;9428:67;9492:2;9487:3;9428:67;:::i;:::-;9421:74;;9504:93;9593:3;9504:93;:::i;:::-;9622:2;9617:3;9613:12;9606:19;;9411:220;;;:::o;9637:366::-;9779:3;9800:67;9864:2;9859:3;9800:67;:::i;:::-;9793:74;;9876:93;9965:3;9876:93;:::i;:::-;9994:2;9989:3;9985:12;9978:19;;9783:220;;;:::o;10009:366::-;10151:3;10172:67;10236:2;10231:3;10172:67;:::i;:::-;10165:74;;10248:93;10337:3;10248:93;:::i;:::-;10366:2;10361:3;10357:12;10350:19;;10155:220;;;:::o;10381:366::-;10523:3;10544:67;10608:2;10603:3;10544:67;:::i;:::-;10537:74;;10620:93;10709:3;10620:93;:::i;:::-;10738:2;10733:3;10729:12;10722:19;;10527:220;;;:::o;10753:366::-;10895:3;10916:67;10980:2;10975:3;10916:67;:::i;:::-;10909:74;;10992:93;11081:3;10992:93;:::i;:::-;11110:2;11105:3;11101:12;11094:19;;10899:220;;;:::o;11125:366::-;11267:3;11288:67;11352:2;11347:3;11288:67;:::i;:::-;11281:74;;11364:93;11453:3;11364:93;:::i;:::-;11482:2;11477:3;11473:12;11466:19;;11271:220;;;:::o;11497:366::-;11639:3;11660:67;11724:2;11719:3;11660:67;:::i;:::-;11653:74;;11736:93;11825:3;11736:93;:::i;:::-;11854:2;11849:3;11845:12;11838:19;;11643:220;;;:::o;11869:366::-;12011:3;12032:67;12096:2;12091:3;12032:67;:::i;:::-;12025:74;;12108:93;12197:3;12108:93;:::i;:::-;12226:2;12221:3;12217:12;12210:19;;12015:220;;;:::o;12241:366::-;12383:3;12404:67;12468:2;12463:3;12404:67;:::i;:::-;12397:74;;12480:93;12569:3;12480:93;:::i;:::-;12598:2;12593:3;12589:12;12582:19;;12387:220;;;:::o;12613:366::-;12755:3;12776:67;12840:2;12835:3;12776:67;:::i;:::-;12769:74;;12852:93;12941:3;12852:93;:::i;:::-;12970:2;12965:3;12961:12;12954:19;;12759:220;;;:::o;12985:366::-;13127:3;13148:67;13212:2;13207:3;13148:67;:::i;:::-;13141:74;;13224:93;13313:3;13224:93;:::i;:::-;13342:2;13337:3;13333:12;13326:19;;13131:220;;;:::o;13357:366::-;13499:3;13520:67;13584:2;13579:3;13520:67;:::i;:::-;13513:74;;13596:93;13685:3;13596:93;:::i;:::-;13714:2;13709:3;13705:12;13698:19;;13503:220;;;:::o;13729:366::-;13871:3;13892:67;13956:2;13951:3;13892:67;:::i;:::-;13885:74;;13968:93;14057:3;13968:93;:::i;:::-;14086:2;14081:3;14077:12;14070:19;;13875:220;;;:::o;14101:366::-;14243:3;14264:67;14328:2;14323:3;14264:67;:::i;:::-;14257:74;;14340:93;14429:3;14340:93;:::i;:::-;14458:2;14453:3;14449:12;14442:19;;14247:220;;;:::o;14473:366::-;14615:3;14636:67;14700:2;14695:3;14636:67;:::i;:::-;14629:74;;14712:93;14801:3;14712:93;:::i;:::-;14830:2;14825:3;14821:12;14814:19;;14619:220;;;:::o;14845:366::-;14987:3;15008:67;15072:2;15067:3;15008:67;:::i;:::-;15001:74;;15084:93;15173:3;15084:93;:::i;:::-;15202:2;15197:3;15193:12;15186:19;;14991:220;;;:::o;15217:366::-;15359:3;15380:67;15444:2;15439:3;15380:67;:::i;:::-;15373:74;;15456:93;15545:3;15456:93;:::i;:::-;15574:2;15569:3;15565:12;15558:19;;15363:220;;;:::o;15589:366::-;15731:3;15752:67;15816:2;15811:3;15752:67;:::i;:::-;15745:74;;15828:93;15917:3;15828:93;:::i;:::-;15946:2;15941:3;15937:12;15930:19;;15735:220;;;:::o;15961:366::-;16103:3;16124:67;16188:2;16183:3;16124:67;:::i;:::-;16117:74;;16200:93;16289:3;16200:93;:::i;:::-;16318:2;16313:3;16309:12;16302:19;;16107:220;;;:::o;16333:398::-;16492:3;16513:83;16594:1;16589:3;16513:83;:::i;:::-;16506:90;;16605:93;16694:3;16605:93;:::i;:::-;16723:1;16718:3;16714:11;16707:18;;16496:235;;;:::o;16737:366::-;16879:3;16900:67;16964:2;16959:3;16900:67;:::i;:::-;16893:74;;16976:93;17065:3;16976:93;:::i;:::-;17094:2;17089:3;17085:12;17078:19;;16883:220;;;:::o;17109:366::-;17251:3;17272:67;17336:2;17331:3;17272:67;:::i;:::-;17265:74;;17348:93;17437:3;17348:93;:::i;:::-;17466:2;17461:3;17457:12;17450:19;;17255:220;;;:::o;17481:366::-;17623:3;17644:67;17708:2;17703:3;17644:67;:::i;:::-;17637:74;;17720:93;17809:3;17720:93;:::i;:::-;17838:2;17833:3;17829:12;17822:19;;17627:220;;;:::o;17853:366::-;17995:3;18016:67;18080:2;18075:3;18016:67;:::i;:::-;18009:74;;18092:93;18181:3;18092:93;:::i;:::-;18210:2;18205:3;18201:12;18194:19;;17999:220;;;:::o;18225:366::-;18367:3;18388:67;18452:2;18447:3;18388:67;:::i;:::-;18381:74;;18464:93;18553:3;18464:93;:::i;:::-;18582:2;18577:3;18573:12;18566:19;;18371:220;;;:::o;18597:366::-;18739:3;18760:67;18824:2;18819:3;18760:67;:::i;:::-;18753:74;;18836:93;18925:3;18836:93;:::i;:::-;18954:2;18949:3;18945:12;18938:19;;18743:220;;;:::o;18969:366::-;19111:3;19132:67;19196:2;19191:3;19132:67;:::i;:::-;19125:74;;19208:93;19297:3;19208:93;:::i;:::-;19326:2;19321:3;19317:12;19310:19;;19115:220;;;:::o;19341:108::-;19418:24;19436:5;19418:24;:::i;:::-;19413:3;19406:37;19396:53;;:::o;19455:118::-;19542:24;19560:5;19542:24;:::i;:::-;19537:3;19530:37;19520:53;;:::o;19579:595::-;19807:3;19829:95;19920:3;19911:6;19829:95;:::i;:::-;19822:102;;19941:95;20032:3;20023:6;19941:95;:::i;:::-;19934:102;;20053:95;20144:3;20135:6;20053:95;:::i;:::-;20046:102;;20165:3;20158:10;;19811:363;;;;;;:::o;20180:379::-;20364:3;20386:147;20529:3;20386:147;:::i;:::-;20379:154;;20550:3;20543:10;;20368:191;;;:::o;20565:222::-;20658:4;20696:2;20685:9;20681:18;20673:26;;20709:71;20777:1;20766:9;20762:17;20753:6;20709:71;:::i;:::-;20663:124;;;;:::o;20793:640::-;20988:4;21026:3;21015:9;21011:19;21003:27;;21040:71;21108:1;21097:9;21093:17;21084:6;21040:71;:::i;:::-;21121:72;21189:2;21178:9;21174:18;21165:6;21121:72;:::i;:::-;21203;21271:2;21260:9;21256:18;21247:6;21203:72;:::i;:::-;21322:9;21316:4;21312:20;21307:2;21296:9;21292:18;21285:48;21350:76;21421:4;21412:6;21350:76;:::i;:::-;21342:84;;20993:440;;;;;;;:::o;21439:886::-;21700:4;21738:3;21727:9;21723:19;21715:27;;21752:71;21820:1;21809:9;21805:17;21796:6;21752:71;:::i;:::-;21833:72;21901:2;21890:9;21886:18;21877:6;21833:72;:::i;:::-;21915;21983:2;21972:9;21968:18;21959:6;21915:72;:::i;:::-;21997;22065:2;22054:9;22050:18;22041:6;21997:72;:::i;:::-;22079:73;22147:3;22136:9;22132:19;22123:6;22079:73;:::i;:::-;22162;22230:3;22219:9;22215:19;22206:6;22162:73;:::i;:::-;22245;22313:3;22302:9;22298:19;22289:6;22245:73;:::i;:::-;21705:620;;;;;;;;;;:::o;22331:373::-;22474:4;22512:2;22501:9;22497:18;22489:26;;22561:9;22555:4;22551:20;22547:1;22536:9;22532:17;22525:47;22589:108;22692:4;22683:6;22589:108;:::i;:::-;22581:116;;22479:225;;;;:::o;22710:210::-;22797:4;22835:2;22824:9;22820:18;22812:26;;22848:65;22910:1;22899:9;22895:17;22886:6;22848:65;:::i;:::-;22802:118;;;;:::o;22926:313::-;23039:4;23077:2;23066:9;23062:18;23054:26;;23126:9;23120:4;23116:20;23112:1;23101:9;23097:17;23090:47;23154:78;23227:4;23218:6;23154:78;:::i;:::-;23146:86;;23044:195;;;;:::o;23245:419::-;23411:4;23449:2;23438:9;23434:18;23426:26;;23498:9;23492:4;23488:20;23484:1;23473:9;23469:17;23462:47;23526:131;23652:4;23526:131;:::i;:::-;23518:139;;23416:248;;;:::o;23670:419::-;23836:4;23874:2;23863:9;23859:18;23851:26;;23923:9;23917:4;23913:20;23909:1;23898:9;23894:17;23887:47;23951:131;24077:4;23951:131;:::i;:::-;23943:139;;23841:248;;;:::o;24095:419::-;24261:4;24299:2;24288:9;24284:18;24276:26;;24348:9;24342:4;24338:20;24334:1;24323:9;24319:17;24312:47;24376:131;24502:4;24376:131;:::i;:::-;24368:139;;24266:248;;;:::o;24520:419::-;24686:4;24724:2;24713:9;24709:18;24701:26;;24773:9;24767:4;24763:20;24759:1;24748:9;24744:17;24737:47;24801:131;24927:4;24801:131;:::i;:::-;24793:139;;24691:248;;;:::o;24945:419::-;25111:4;25149:2;25138:9;25134:18;25126:26;;25198:9;25192:4;25188:20;25184:1;25173:9;25169:17;25162:47;25226:131;25352:4;25226:131;:::i;:::-;25218:139;;25116:248;;;:::o;25370:419::-;25536:4;25574:2;25563:9;25559:18;25551:26;;25623:9;25617:4;25613:20;25609:1;25598:9;25594:17;25587:47;25651:131;25777:4;25651:131;:::i;:::-;25643:139;;25541:248;;;:::o;25795:419::-;25961:4;25999:2;25988:9;25984:18;25976:26;;26048:9;26042:4;26038:20;26034:1;26023:9;26019:17;26012:47;26076:131;26202:4;26076:131;:::i;:::-;26068:139;;25966:248;;;:::o;26220:419::-;26386:4;26424:2;26413:9;26409:18;26401:26;;26473:9;26467:4;26463:20;26459:1;26448:9;26444:17;26437:47;26501:131;26627:4;26501:131;:::i;:::-;26493:139;;26391:248;;;:::o;26645:419::-;26811:4;26849:2;26838:9;26834:18;26826:26;;26898:9;26892:4;26888:20;26884:1;26873:9;26869:17;26862:47;26926:131;27052:4;26926:131;:::i;:::-;26918:139;;26816:248;;;:::o;27070:419::-;27236:4;27274:2;27263:9;27259:18;27251:26;;27323:9;27317:4;27313:20;27309:1;27298:9;27294:17;27287:47;27351:131;27477:4;27351:131;:::i;:::-;27343:139;;27241:248;;;:::o;27495:419::-;27661:4;27699:2;27688:9;27684:18;27676:26;;27748:9;27742:4;27738:20;27734:1;27723:9;27719:17;27712:47;27776:131;27902:4;27776:131;:::i;:::-;27768:139;;27666:248;;;:::o;27920:419::-;28086:4;28124:2;28113:9;28109:18;28101:26;;28173:9;28167:4;28163:20;28159:1;28148:9;28144:17;28137:47;28201:131;28327:4;28201:131;:::i;:::-;28193:139;;28091:248;;;:::o;28345:419::-;28511:4;28549:2;28538:9;28534:18;28526:26;;28598:9;28592:4;28588:20;28584:1;28573:9;28569:17;28562:47;28626:131;28752:4;28626:131;:::i;:::-;28618:139;;28516:248;;;:::o;28770:419::-;28936:4;28974:2;28963:9;28959:18;28951:26;;29023:9;29017:4;29013:20;29009:1;28998:9;28994:17;28987:47;29051:131;29177:4;29051:131;:::i;:::-;29043:139;;28941:248;;;:::o;29195:419::-;29361:4;29399:2;29388:9;29384:18;29376:26;;29448:9;29442:4;29438:20;29434:1;29423:9;29419:17;29412:47;29476:131;29602:4;29476:131;:::i;:::-;29468:139;;29366:248;;;:::o;29620:419::-;29786:4;29824:2;29813:9;29809:18;29801:26;;29873:9;29867:4;29863:20;29859:1;29848:9;29844:17;29837:47;29901:131;30027:4;29901:131;:::i;:::-;29893:139;;29791:248;;;:::o;30045:419::-;30211:4;30249:2;30238:9;30234:18;30226:26;;30298:9;30292:4;30288:20;30284:1;30273:9;30269:17;30262:47;30326:131;30452:4;30326:131;:::i;:::-;30318:139;;30216:248;;;:::o;30470:419::-;30636:4;30674:2;30663:9;30659:18;30651:26;;30723:9;30717:4;30713:20;30709:1;30698:9;30694:17;30687:47;30751:131;30877:4;30751:131;:::i;:::-;30743:139;;30641:248;;;:::o;30895:419::-;31061:4;31099:2;31088:9;31084:18;31076:26;;31148:9;31142:4;31138:20;31134:1;31123:9;31119:17;31112:47;31176:131;31302:4;31176:131;:::i;:::-;31168:139;;31066:248;;;:::o;31320:419::-;31486:4;31524:2;31513:9;31509:18;31501:26;;31573:9;31567:4;31563:20;31559:1;31548:9;31544:17;31537:47;31601:131;31727:4;31601:131;:::i;:::-;31593:139;;31491:248;;;:::o;31745:419::-;31911:4;31949:2;31938:9;31934:18;31926:26;;31998:9;31992:4;31988:20;31984:1;31973:9;31969:17;31962:47;32026:131;32152:4;32026:131;:::i;:::-;32018:139;;31916:248;;;:::o;32170:419::-;32336:4;32374:2;32363:9;32359:18;32351:26;;32423:9;32417:4;32413:20;32409:1;32398:9;32394:17;32387:47;32451:131;32577:4;32451:131;:::i;:::-;32443:139;;32341:248;;;:::o;32595:419::-;32761:4;32799:2;32788:9;32784:18;32776:26;;32848:9;32842:4;32838:20;32834:1;32823:9;32819:17;32812:47;32876:131;33002:4;32876:131;:::i;:::-;32868:139;;32766:248;;;:::o;33020:419::-;33186:4;33224:2;33213:9;33209:18;33201:26;;33273:9;33267:4;33263:20;33259:1;33248:9;33244:17;33237:47;33301:131;33427:4;33301:131;:::i;:::-;33293:139;;33191:248;;;:::o;33445:419::-;33611:4;33649:2;33638:9;33634:18;33626:26;;33698:9;33692:4;33688:20;33684:1;33673:9;33669:17;33662:47;33726:131;33852:4;33726:131;:::i;:::-;33718:139;;33616:248;;;:::o;33870:419::-;34036:4;34074:2;34063:9;34059:18;34051:26;;34123:9;34117:4;34113:20;34109:1;34098:9;34094:17;34087:47;34151:131;34277:4;34151:131;:::i;:::-;34143:139;;34041:248;;;:::o;34295:419::-;34461:4;34499:2;34488:9;34484:18;34476:26;;34548:9;34542:4;34538:20;34534:1;34523:9;34519:17;34512:47;34576:131;34702:4;34576:131;:::i;:::-;34568:139;;34466:248;;;:::o;34720:419::-;34886:4;34924:2;34913:9;34909:18;34901:26;;34973:9;34967:4;34963:20;34959:1;34948:9;34944:17;34937:47;35001:131;35127:4;35001:131;:::i;:::-;34993:139;;34891:248;;;:::o;35145:222::-;35238:4;35276:2;35265:9;35261:18;35253:26;;35289:71;35357:1;35346:9;35342:17;35333:6;35289:71;:::i;:::-;35243:124;;;;:::o;35373:129::-;35407:6;35434:20;;:::i;:::-;35424:30;;35463:33;35491:4;35483:6;35463:33;:::i;:::-;35414:88;;;:::o;35508:75::-;35541:6;35574:2;35568:9;35558:19;;35548:35;:::o;35589:307::-;35650:4;35740:18;35732:6;35729:30;35726:2;;;35762:18;;:::i;:::-;35726:2;35800:29;35822:6;35800:29;:::i;:::-;35792:37;;35884:4;35878;35874:15;35866:23;;35655:241;;;:::o;35902:308::-;35964:4;36054:18;36046:6;36043:30;36040:2;;;36076:18;;:::i;:::-;36040:2;36114:29;36136:6;36114:29;:::i;:::-;36106:37;;36198:4;36192;36188:15;36180:23;;35969:241;;;:::o;36216:132::-;36283:4;36306:3;36298:11;;36336:4;36331:3;36327:14;36319:22;;36288:60;;;:::o;36354:114::-;36421:6;36455:5;36449:12;36439:22;;36428:40;;;:::o;36474:98::-;36525:6;36559:5;36553:12;36543:22;;36532:40;;;:::o;36578:99::-;36630:6;36664:5;36658:12;36648:22;;36637:40;;;:::o;36683:113::-;36753:4;36785;36780:3;36776:14;36768:22;;36758:38;;;:::o;36802:184::-;36901:11;36935:6;36930:3;36923:19;36975:4;36970:3;36966:14;36951:29;;36913:73;;;;:::o;36992:168::-;37075:11;37109:6;37104:3;37097:19;37149:4;37144:3;37140:14;37125:29;;37087:73;;;;:::o;37166:147::-;37267:11;37304:3;37289:18;;37279:34;;;;:::o;37319:169::-;37403:11;37437:6;37432:3;37425:19;37477:4;37472:3;37468:14;37453:29;;37415:73;;;;:::o;37494:148::-;37596:11;37633:3;37618:18;;37608:34;;;;:::o;37648:305::-;37688:3;37707:20;37725:1;37707:20;:::i;:::-;37702:25;;37741:20;37759:1;37741:20;:::i;:::-;37736:25;;37895:1;37827:66;37823:74;37820:1;37817:81;37814:2;;;37901:18;;:::i;:::-;37814:2;37945:1;37942;37938:9;37931:16;;37692:261;;;;:::o;37959:185::-;37999:1;38016:20;38034:1;38016:20;:::i;:::-;38011:25;;38050:20;38068:1;38050:20;:::i;:::-;38045:25;;38089:1;38079:2;;38094:18;;:::i;:::-;38079:2;38136:1;38133;38129:9;38124:14;;38001:143;;;;:::o;38150:348::-;38190:7;38213:20;38231:1;38213:20;:::i;:::-;38208:25;;38247:20;38265:1;38247:20;:::i;:::-;38242:25;;38435:1;38367:66;38363:74;38360:1;38357:81;38352:1;38345:9;38338:17;38334:105;38331:2;;;38442:18;;:::i;:::-;38331:2;38490:1;38487;38483:9;38472:20;;38198:300;;;;:::o;38504:191::-;38544:4;38564:20;38582:1;38564:20;:::i;:::-;38559:25;;38598:20;38616:1;38598:20;:::i;:::-;38593:25;;38637:1;38634;38631:8;38628:2;;;38642:18;;:::i;:::-;38628:2;38687:1;38684;38680:9;38672:17;;38549:146;;;;:::o;38701:96::-;38738:7;38767:24;38785:5;38767:24;:::i;:::-;38756:35;;38746:51;;;:::o;38803:90::-;38837:7;38880:5;38873:13;38866:21;38855:32;;38845:48;;;:::o;38899:77::-;38936:7;38965:5;38954:16;;38944:32;;;:::o;38982:149::-;39018:7;39058:66;39051:5;39047:78;39036:89;;39026:105;;;:::o;39137:126::-;39174:7;39214:42;39207:5;39203:54;39192:65;;39182:81;;;:::o;39269:77::-;39306:7;39335:5;39324:16;;39314:32;;;:::o;39352:154::-;39436:6;39431:3;39426;39413:30;39498:1;39489:6;39484:3;39480:16;39473:27;39403:103;;;:::o;39512:307::-;39580:1;39590:113;39604:6;39601:1;39598:13;39590:113;;;39689:1;39684:3;39680:11;39674:18;39670:1;39665:3;39661:11;39654:39;39626:2;39623:1;39619:10;39614:15;;39590:113;;;39721:6;39718:1;39715:13;39712:2;;;39801:1;39792:6;39787:3;39783:16;39776:27;39712:2;39561:258;;;;:::o;39825:171::-;39864:3;39887:24;39905:5;39887:24;:::i;:::-;39878:33;;39933:4;39926:5;39923:15;39920:2;;;39941:18;;:::i;:::-;39920:2;39988:1;39981:5;39977:13;39970:20;;39868:128;;;:::o;40002:320::-;40046:6;40083:1;40077:4;40073:12;40063:22;;40130:1;40124:4;40120:12;40151:18;40141:2;;40207:4;40199:6;40195:17;40185:27;;40141:2;40269;40261:6;40258:14;40238:18;40235:38;40232:2;;;40288:18;;:::i;:::-;40232:2;40053:269;;;;:::o;40328:281::-;40411:27;40433:4;40411:27;:::i;:::-;40403:6;40399:40;40541:6;40529:10;40526:22;40505:18;40493:10;40490:34;40487:62;40484:2;;;40552:18;;:::i;:::-;40484:2;40592:10;40588:2;40581:22;40371:238;;;:::o;40615:233::-;40654:3;40677:24;40695:5;40677:24;:::i;:::-;40668:33;;40723:66;40716:5;40713:77;40710:2;;;40793:18;;:::i;:::-;40710:2;40840:1;40833:5;40829:13;40822:20;;40658:190;;;:::o;40854:176::-;40886:1;40903:20;40921:1;40903:20;:::i;:::-;40898:25;;40937:20;40955:1;40937:20;:::i;:::-;40932:25;;40976:1;40966:2;;40981:18;;:::i;:::-;40966:2;41022:1;41019;41015:9;41010:14;;40888:142;;;;:::o;41036:180::-;41084:77;41081:1;41074:88;41181:4;41178:1;41171:15;41205:4;41202:1;41195:15;41222:180;41270:77;41267:1;41260:88;41367:4;41364:1;41357:15;41391:4;41388:1;41381:15;41408:180;41456:77;41453:1;41446:88;41553:4;41550:1;41543:15;41577:4;41574:1;41567:15;41594:180;41642:77;41639:1;41632:88;41739:4;41736:1;41729:15;41763:4;41760:1;41753:15;41780:102;41821:6;41872:2;41868:7;41863:2;41856:5;41852:14;41848:28;41838:38;;41828:54;;;:::o;41888:170::-;42028:22;42024:1;42016:6;42012:14;42005:46;41994:64;:::o;42064:230::-;42204:34;42200:1;42192:6;42188:14;42181:58;42273:13;42268:2;42260:6;42256:15;42249:38;42170:124;:::o;42300:237::-;42440:34;42436:1;42428:6;42424:14;42417:58;42509:20;42504:2;42496:6;42492:15;42485:45;42406:131;:::o;42543:225::-;42683:34;42679:1;42671:6;42667:14;42660:58;42752:8;42747:2;42739:6;42735:15;42728:33;42649:119;:::o;42774:178::-;42914:30;42910:1;42902:6;42898:14;42891:54;42880:72;:::o;42958:223::-;43098:34;43094:1;43086:6;43082:14;43075:58;43167:6;43162:2;43154:6;43150:15;43143:31;43064:117;:::o;43187:175::-;43327:27;43323:1;43315:6;43311:14;43304:51;43293:69;:::o;43368:231::-;43508:34;43504:1;43496:6;43492:14;43485:58;43577:14;43572:2;43564:6;43560:15;43553:39;43474:125;:::o;43605:180::-;43745:32;43741:1;43733:6;43729:14;43722:56;43711:74;:::o;43791:243::-;43931:34;43927:1;43919:6;43915:14;43908:58;44000:26;43995:2;43987:6;43983:15;43976:51;43897:137;:::o;44040:229::-;44180:34;44176:1;44168:6;44164:14;44157:58;44249:12;44244:2;44236:6;44232:15;44225:37;44146:123;:::o;44275:228::-;44415:34;44411:1;44403:6;44399:14;44392:58;44484:11;44479:2;44471:6;44467:15;44460:36;44381:122;:::o;44509:225::-;44649:34;44645:1;44637:6;44633:14;44626:58;44718:8;44713:2;44705:6;44701:15;44694:33;44615:119;:::o;44740:182::-;44880:34;44876:1;44868:6;44864:14;44857:58;44846:76;:::o;44928:182::-;45068:34;45064:1;45056:6;45052:14;45045:58;45034:76;:::o;45116:231::-;45256:34;45252:1;45244:6;45240:14;45233:58;45325:14;45320:2;45312:6;45308:15;45301:39;45222:125;:::o;45353:182::-;45493:34;45489:1;45481:6;45477:14;45470:58;45459:76;:::o;45541:228::-;45681:34;45677:1;45669:6;45665:14;45658:58;45750:11;45745:2;45737:6;45733:15;45726:36;45647:122;:::o;45775:175::-;45915:27;45911:1;45903:6;45899:14;45892:51;45881:69;:::o;45956:220::-;46096:34;46092:1;46084:6;46080:14;46073:58;46165:3;46160:2;46152:6;46148:15;46141:28;46062:114;:::o;46182:222::-;46322:34;46318:1;46310:6;46306:14;46299:58;46391:5;46386:2;46378:6;46374:15;46367:30;46288:116;:::o;46410:114::-;46516:8;:::o;46530:166::-;46670:18;46666:1;46658:6;46654:14;46647:42;46636:60;:::o;46702:236::-;46842:34;46838:1;46830:6;46826:14;46819:58;46911:19;46906:2;46898:6;46894:15;46887:44;46808:130;:::o;46944:231::-;47084:34;47080:1;47072:6;47068:14;47061:58;47153:14;47148:2;47140:6;47136:15;47129:39;47050:125;:::o;47181:225::-;47321:34;47317:1;47309:6;47305:14;47298:58;47390:8;47385:2;47377:6;47373:15;47366:33;47287:119;:::o;47412:221::-;47552:34;47548:1;47540:6;47536:14;47529:58;47621:4;47616:2;47608:6;47604:15;47597:29;47518:115;:::o;47639:222::-;47779:34;47775:1;47767:6;47763:14;47756:58;47848:5;47843:2;47835:6;47831:15;47824:30;47745:116;:::o;47867:181::-;48007:33;48003:1;47995:6;47991:14;47984:57;47973:75;:::o;48054:122::-;48127:24;48145:5;48127:24;:::i;:::-;48120:5;48117:35;48107:2;;48166:1;48163;48156:12;48107:2;48097:79;:::o;48182:116::-;48252:21;48267:5;48252:21;:::i;:::-;48245:5;48242:32;48232:2;;48288:1;48285;48278:12;48232:2;48222:76;:::o;48304:120::-;48376:23;48393:5;48376:23;:::i;:::-;48369:5;48366:34;48356:2;;48414:1;48411;48404:12;48356:2;48346:78;:::o;48430:122::-;48503:24;48521:5;48503:24;:::i;:::-;48496:5;48493:35;48483:2;;48542:1;48539;48532:12;48483:2;48473:79;:::o

Swarm Source

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