ETH Price: $3,384.72 (-1.54%)
Gas: 1 Gwei

Token

PunkBatz (PUNKBATZ)
 

Overview

Max Total Supply

2,562 PUNKBATZ

Holders

326

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 PUNKBATZ
0x7f3988ea0275cf4741bbf9080fbad248805f9956
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
PunkBatz

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/math/SafeMath.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Context.sol



pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(address(0));
    }

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.3.3/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

// File: contracts/PunkBatz.sol


pragma solidity ^0.8.8;

contract PunkBatz is Ownable, ERC721 {
    using SafeMath for uint256;

  uint public constant supplyLimit = 2999;
  uint256 public totalSupply;
  bool public publicSaleActive = true;
  string public baseURI;
  uint public maxPerTransaction = 10; //Max per transaction
  uint256 public tokenPrice = 49000000000000000;

  constructor(string memory name, string memory symbol, string memory baseURIinput)
    ERC721(name, symbol)
  {
      baseURI = baseURIinput;
  }

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

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

  function togglePublicSaleActive() external onlyOwner {
    publicSaleActive = !publicSaleActive;
  }

  function freeMint(uint256 numberOfTokens) public {
    require(totalSupply <= 2500, "free supply reached");
    require(publicSaleActive == true, "Sale is Paused.");
    require(numberOfTokens <= maxPerTransaction, "invalid token count");

    uint256 newId = totalSupply;

        for (uint i = 0; i < numberOfTokens; i++) {
        newId+=1;
        _safeMint(msg.sender, newId);
        }
    
    totalSupply = newId;
  }

  function buy(uint _count) public payable{
    require(_count <= maxPerTransaction, "invalid token count");
    require(tokenPrice.mul(_count) <= msg.value,"Ether value sent is not correct");
    require(publicSaleActive == true, "Sale is Paused.");
    require((totalSupply + _count) <= supplyLimit, "supply reached");

    uint256 newId = totalSupply;

        for(uint i = 0; i < _count; i++){
            newId+=1;
            _safeMint(msg.sender, newId);
        }

    totalSupply = newId;
    }

  function changePrice(uint256 newPrice) public onlyOwner {
        tokenPrice = newPrice;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURIinput","type":"string"}],"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":[{"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenPrice","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600860006101000a81548160ff021916908315150217905550600a805566ae153d89fe8000600b553480156200003b57600080fd5b5060405162003d8e38038062003d8e8339818101604052810190620000619190620003f2565b82826200008362000077620000d960201b60201c565b620000e160201b60201c565b81600190805190602001906200009b929190620001a5565b508060029080519060200190620000b4929190620001a5565b5050508060099080519060200190620000cf929190620001a5565b5050505062000510565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b390620004da565b90600052602060002090601f016020900481019282620001d7576000855562000223565b82601f10620001f257805160ff191683800117855562000223565b8280016001018555821562000223579182015b828111156200022257825182559160200191906001019062000205565b5b50905062000232919062000236565b5090565b5b808211156200025157600081600090555060010162000237565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002be8262000273565b810181811067ffffffffffffffff82111715620002e057620002df62000284565b5b80604052505050565b6000620002f562000255565b9050620003038282620002b3565b919050565b600067ffffffffffffffff82111562000326576200032562000284565b5b620003318262000273565b9050602081019050919050565b60005b838110156200035e57808201518184015260208101905062000341565b838111156200036e576000848401525b50505050565b60006200038b620003858462000308565b620002e9565b905082815260208101848484011115620003aa57620003a96200026e565b5b620003b78482856200033e565b509392505050565b600082601f830112620003d757620003d662000269565b5b8151620003e984826020860162000374565b91505092915050565b6000806000606084860312156200040e576200040d6200025f565b5b600084015167ffffffffffffffff8111156200042f576200042e62000264565b5b6200043d86828701620003bf565b935050602084015167ffffffffffffffff81111562000461576200046062000264565b5b6200046f86828701620003bf565b925050604084015167ffffffffffffffff81111562000493576200049262000264565b5b620004a186828701620003bf565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f357607f821691505b602082108114156200050a5762000509620004ab565b5b50919050565b61386e80620005206000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a2b40d191161008a578063c87b56dd11610064578063c87b56dd146105c0578063d96a094a146105fd578063e985e9c514610619578063f2fde38b14610656576101b7565b8063a2b40d1914610543578063b88d4fde1461056c578063bc8893b414610595576101b7565b80637ff9b596116100c65780637ff9b596146104995780638da5cb5b146104c457806395d89b41146104ef578063a22cb4651461051a576101b7565b806370a082311461041c578063715018a6146104595780637c928fe914610470576101b7565b806323b872dd116101595780634b980d67116101335780634b980d671461036057806355f804b31461038b5780636352211e146103b45780636c0360eb146103f1576101b7565b806323b872dd146102f75780633ccfd60b1461032057806342842e0e14610337576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461028a57806318160ddd146102a157806319d1997a146102cc576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906123d0565b61067f565b6040516101f09190612418565b60405180910390f35b34801561020557600080fd5b5061020e610761565b60405161021b91906124cc565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612524565b6107f3565b6040516102589190612592565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906125d9565b610878565b005b34801561029657600080fd5b5061029f610990565b005b3480156102ad57600080fd5b506102b6610a38565b6040516102c39190612628565b60405180910390f35b3480156102d857600080fd5b506102e1610a3e565b6040516102ee9190612628565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612643565b610a44565b005b34801561032c57600080fd5b50610335610aa4565b005b34801561034357600080fd5b5061035e60048036038101906103599190612643565b610b6f565b005b34801561036c57600080fd5b50610375610b8f565b6040516103829190612628565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906126fb565b610b95565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612524565b610c27565b6040516103e89190612592565b60405180910390f35b3480156103fd57600080fd5b50610406610cd9565b60405161041391906124cc565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612748565b610d67565b6040516104509190612628565b60405180910390f35b34801561046557600080fd5b5061046e610e1f565b005b34801561047c57600080fd5b5061049760048036038101906104929190612524565b610ea7565b005b3480156104a557600080fd5b506104ae610fd3565b6040516104bb9190612628565b60405180910390f35b3480156104d057600080fd5b506104d9610fd9565b6040516104e69190612592565b60405180910390f35b3480156104fb57600080fd5b50610504611002565b60405161051191906124cc565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c91906127a1565b611094565b005b34801561054f57600080fd5b5061056a60048036038101906105659190612524565b611215565b005b34801561057857600080fd5b50610593600480360381019061058e9190612911565b61129b565b005b3480156105a157600080fd5b506105aa6112fd565b6040516105b79190612418565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190612524565b611310565b6040516105f491906124cc565b60405180910390f35b61061760048036038101906106129190612524565b6113b7565b005b34801561062557600080fd5b50610640600480360381019061063b9190612994565b611545565b60405161064d9190612418565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190612748565b6115d9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075a5750610759826116d1565b5b9050919050565b60606001805461077090612a03565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90612a03565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b60006107fe8261173b565b61083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490612aa7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088382610c27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb90612b39565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109136117a7565b73ffffffffffffffffffffffffffffffffffffffff16148061094257506109418161093c6117a7565b611545565b5b610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890612bcb565b60405180910390fd5b61098b83836117af565b505050565b6109986117a7565b73ffffffffffffffffffffffffffffffffffffffff166109b6610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390612c37565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b60075481565b610bb781565b610a55610a4f6117a7565b82611868565b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90612cc9565b60405180910390fd5b610a9f838383611946565b505050565b610aac6117a7565b73ffffffffffffffffffffffffffffffffffffffff16610aca610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612c37565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b6b573d6000803e3d6000fd5b5050565b610b8a8383836040518060200160405280600081525061129b565b505050565b600a5481565b610b9d6117a7565b73ffffffffffffffffffffffffffffffffffffffff16610bbb610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0890612c37565b60405180910390fd5b818160099190610c229291906122c1565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790612d5b565b60405180910390fd5b80915050919050565b60098054610ce690612a03565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1290612a03565b8015610d5f5780601f10610d3457610100808354040283529160200191610d5f565b820191906000526020600020905b815481529060010190602001808311610d4257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90612ded565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e276117a7565b73ffffffffffffffffffffffffffffffffffffffff16610e45610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290612c37565b60405180910390fd5b610ea56000611ba2565b565b6109c46007541115610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590612e59565b60405180910390fd5b60011515600860009054906101000a900460ff16151514610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90612ec5565b60405180910390fd5b600a54811115610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612f31565b60405180910390fd5b6000600754905060005b82811015610fc757600182610fa89190612f80565b9150610fb43383611c66565b8080610fbf90612fd6565b915050610f93565b50806007819055505050565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461101190612a03565b80601f016020809104026020016040519081016040528092919081815260200182805461103d90612a03565b801561108a5780601f1061105f5761010080835404028352916020019161108a565b820191906000526020600020905b81548152906001019060200180831161106d57829003601f168201915b5050505050905090565b61109c6117a7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061306b565b60405180910390fd5b80600660006111176117a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111c46117a7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112099190612418565b60405180910390a35050565b61121d6117a7565b73ffffffffffffffffffffffffffffffffffffffff1661123b610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890612c37565b60405180910390fd5b80600b8190555050565b6112ac6112a66117a7565b83611868565b6112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290612cc9565b60405180910390fd5b6112f784848484611c84565b50505050565b600860009054906101000a900460ff1681565b606061131b8261173b565b61135a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611351906130fd565b60405180910390fd5b6000611364611ce0565b9050600081511161138457604051806020016040528060008152506113af565b8061138e84611d72565b60405160200161139f929190613159565b6040516020818303038152906040525b915050919050565b600a548111156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390612f31565b60405180910390fd5b3461141282600b54611ed390919063ffffffff16565b1115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a906131c9565b60405180910390fd5b60011515600860009054906101000a900460ff161515146114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090612ec5565b60405180910390fd5b610bb7816007546114ba9190612f80565b11156114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290613235565b60405180910390fd5b6000600754905060005b828110156115395760018261151a9190612f80565b91506115263383611c66565b808061153190612fd6565b915050611505565b50806007819055505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115e16117a7565b73ffffffffffffffffffffffffffffffffffffffff166115ff610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90612c37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc906132c7565b60405180910390fd5b6116ce81611ba2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661182283610c27565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118738261173b565b6118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990613359565b60405180910390fd5b60006118bd83610c27565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061192c57508373ffffffffffffffffffffffffffffffffffffffff16611914846107f3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061193d575061193c8185611545565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661196682610c27565b73ffffffffffffffffffffffffffffffffffffffff16146119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b3906133eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a239061347d565b60405180910390fd5b611a37838383611ee9565b611a426000826117af565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a92919061349d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae99190612f80565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c80828260405180602001604052806000815250611eee565b5050565b611c8f848484611946565b611c9b84848484611f49565b611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190613543565b60405180910390fd5b50505050565b606060098054611cef90612a03565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1b90612a03565b8015611d685780601f10611d3d57610100808354040283529160200191611d68565b820191906000526020600020905b815481529060010190602001808311611d4b57829003601f168201915b5050505050905090565b60606000821415611dba576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ece565b600082905060005b60008214611dec578080611dd590612fd6565b915050600a82611de59190613592565b9150611dc2565b60008167ffffffffffffffff811115611e0857611e076127e6565b5b6040519080825280601f01601f191660200182016040528015611e3a5781602001600182028036833780820191505090505b5090505b60008514611ec757600182611e53919061349d565b9150600a85611e6291906135c3565b6030611e6e9190612f80565b60f81b818381518110611e8457611e836135f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ec09190613592565b9450611e3e565b8093505050505b919050565b60008183611ee19190613623565b905092915050565b505050565b611ef883836120e0565b611f056000848484611f49565b611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613543565b60405180910390fd5b505050565b6000611f6a8473ffffffffffffffffffffffffffffffffffffffff166122ae565b156120d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f936117a7565b8786866040518563ffffffff1660e01b8152600401611fb594939291906136d2565b602060405180830381600087803b158015611fcf57600080fd5b505af192505050801561200057506040513d601f19601f82011682018060405250810190611ffd9190613733565b60015b612083573d8060008114612030576040519150601f19603f3d011682016040523d82523d6000602084013e612035565b606091505b5060008151141561207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613543565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120d8565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612147906137ac565b60405180910390fd5b6121598161173b565b15612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613818565b60405180910390fd5b6121a560008383611ee9565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f59190612f80565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546122cd90612a03565b90600052602060002090601f0160209004810192826122ef5760008555612336565b82601f1061230857803560ff1916838001178555612336565b82800160010185558215612336579182015b8281111561233557823582559160200191906001019061231a565b5b5090506123439190612347565b5090565b5b80821115612360576000816000905550600101612348565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ad81612378565b81146123b857600080fd5b50565b6000813590506123ca816123a4565b92915050565b6000602082840312156123e6576123e561236e565b5b60006123f4848285016123bb565b91505092915050565b60008115159050919050565b612412816123fd565b82525050565b600060208201905061242d6000830184612409565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246d578082015181840152602081019050612452565b8381111561247c576000848401525b50505050565b6000601f19601f8301169050919050565b600061249e82612433565b6124a8818561243e565b93506124b881856020860161244f565b6124c181612482565b840191505092915050565b600060208201905081810360008301526124e68184612493565b905092915050565b6000819050919050565b612501816124ee565b811461250c57600080fd5b50565b60008135905061251e816124f8565b92915050565b60006020828403121561253a5761253961236e565b5b60006125488482850161250f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061257c82612551565b9050919050565b61258c81612571565b82525050565b60006020820190506125a76000830184612583565b92915050565b6125b681612571565b81146125c157600080fd5b50565b6000813590506125d3816125ad565b92915050565b600080604083850312156125f0576125ef61236e565b5b60006125fe858286016125c4565b925050602061260f8582860161250f565b9150509250929050565b612622816124ee565b82525050565b600060208201905061263d6000830184612619565b92915050565b60008060006060848603121561265c5761265b61236e565b5b600061266a868287016125c4565b935050602061267b868287016125c4565b925050604061268c8682870161250f565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126126bb576126ba612696565b5b8235905067ffffffffffffffff8111156126d8576126d761269b565b5b6020830191508360018202830111156126f4576126f36126a0565b5b9250929050565b600080602083850312156127125761271161236e565b5b600083013567ffffffffffffffff8111156127305761272f612373565b5b61273c858286016126a5565b92509250509250929050565b60006020828403121561275e5761275d61236e565b5b600061276c848285016125c4565b91505092915050565b61277e816123fd565b811461278957600080fd5b50565b60008135905061279b81612775565b92915050565b600080604083850312156127b8576127b761236e565b5b60006127c6858286016125c4565b92505060206127d78582860161278c565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61281e82612482565b810181811067ffffffffffffffff8211171561283d5761283c6127e6565b5b80604052505050565b6000612850612364565b905061285c8282612815565b919050565b600067ffffffffffffffff82111561287c5761287b6127e6565b5b61288582612482565b9050602081019050919050565b82818337600083830152505050565b60006128b46128af84612861565b612846565b9050828152602081018484840111156128d0576128cf6127e1565b5b6128db848285612892565b509392505050565b600082601f8301126128f8576128f7612696565b5b81356129088482602086016128a1565b91505092915050565b6000806000806080858703121561292b5761292a61236e565b5b6000612939878288016125c4565b945050602061294a878288016125c4565b935050604061295b8782880161250f565b925050606085013567ffffffffffffffff81111561297c5761297b612373565b5b612988878288016128e3565b91505092959194509250565b600080604083850312156129ab576129aa61236e565b5b60006129b9858286016125c4565b92505060206129ca858286016125c4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a1b57607f821691505b60208210811415612a2f57612a2e6129d4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612a91602c8361243e565b9150612a9c82612a35565b604082019050919050565b60006020820190508181036000830152612ac081612a84565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b2360218361243e565b9150612b2e82612ac7565b604082019050919050565b60006020820190508181036000830152612b5281612b16565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612bb560388361243e565b9150612bc082612b59565b604082019050919050565b60006020820190508181036000830152612be481612ba8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2160208361243e565b9150612c2c82612beb565b602082019050919050565b60006020820190508181036000830152612c5081612c14565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612cb360318361243e565b9150612cbe82612c57565b604082019050919050565b60006020820190508181036000830152612ce281612ca6565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612d4560298361243e565b9150612d5082612ce9565b604082019050919050565b60006020820190508181036000830152612d7481612d38565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612dd7602a8361243e565b9150612de282612d7b565b604082019050919050565b60006020820190508181036000830152612e0681612dca565b9050919050565b7f6672656520737570706c79207265616368656400000000000000000000000000600082015250565b6000612e4360138361243e565b9150612e4e82612e0d565b602082019050919050565b60006020820190508181036000830152612e7281612e36565b9050919050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6000612eaf600f8361243e565b9150612eba82612e79565b602082019050919050565b60006020820190508181036000830152612ede81612ea2565b9050919050565b7f696e76616c696420746f6b656e20636f756e7400000000000000000000000000600082015250565b6000612f1b60138361243e565b9150612f2682612ee5565b602082019050919050565b60006020820190508181036000830152612f4a81612f0e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f8b826124ee565b9150612f96836124ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fcb57612fca612f51565b5b828201905092915050565b6000612fe1826124ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561301457613013612f51565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061305560198361243e565b91506130608261301f565b602082019050919050565b6000602082019050818103600083015261308481613048565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006130e7602f8361243e565b91506130f28261308b565b604082019050919050565b60006020820190508181036000830152613116816130da565b9050919050565b600081905092915050565b600061313382612433565b61313d818561311d565b935061314d81856020860161244f565b80840191505092915050565b60006131658285613128565b91506131718284613128565b91508190509392505050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006131b3601f8361243e565b91506131be8261317d565b602082019050919050565b600060208201905081810360008301526131e2816131a6565b9050919050565b7f737570706c792072656163686564000000000000000000000000000000000000600082015250565b600061321f600e8361243e565b915061322a826131e9565b602082019050919050565b6000602082019050818103600083015261324e81613212565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132b160268361243e565b91506132bc82613255565b604082019050919050565b600060208201905081810360008301526132e0816132a4565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613343602c8361243e565b915061334e826132e7565b604082019050919050565b6000602082019050818103600083015261337281613336565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006133d560298361243e565b91506133e082613379565b604082019050919050565b60006020820190508181036000830152613404816133c8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061346760248361243e565b91506134728261340b565b604082019050919050565b600060208201905081810360008301526134968161345a565b9050919050565b60006134a8826124ee565b91506134b3836124ee565b9250828210156134c6576134c5612f51565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061352d60328361243e565b9150613538826134d1565b604082019050919050565b6000602082019050818103600083015261355c81613520565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061359d826124ee565b91506135a8836124ee565b9250826135b8576135b7613563565b5b828204905092915050565b60006135ce826124ee565b91506135d9836124ee565b9250826135e9576135e8613563565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061362e826124ee565b9150613639836124ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561367257613671612f51565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b60006136a48261367d565b6136ae8185613688565b93506136be81856020860161244f565b6136c781612482565b840191505092915050565b60006080820190506136e76000830187612583565b6136f46020830186612583565b6137016040830185612619565b81810360608301526137138184613699565b905095945050505050565b60008151905061372d816123a4565b92915050565b6000602082840312156137495761374861236e565b5b60006137578482850161371e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061379660208361243e565b91506137a182613760565b602082019050919050565b600060208201905081810360008301526137c581613789565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613802601c8361243e565b915061380d826137cc565b602082019050919050565b60006020820190508181036000830152613831816137f5565b905091905056fea26469706673582212201df55b8f49c4788bbed23d8896f962205d1120cbcd275b5fa048b90fcceb3c7664736f6c63430008080033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000850756e6b4261747a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000850554e4b4241545a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a2b40d191161008a578063c87b56dd11610064578063c87b56dd146105c0578063d96a094a146105fd578063e985e9c514610619578063f2fde38b14610656576101b7565b8063a2b40d1914610543578063b88d4fde1461056c578063bc8893b414610595576101b7565b80637ff9b596116100c65780637ff9b596146104995780638da5cb5b146104c457806395d89b41146104ef578063a22cb4651461051a576101b7565b806370a082311461041c578063715018a6146104595780637c928fe914610470576101b7565b806323b872dd116101595780634b980d67116101335780634b980d671461036057806355f804b31461038b5780636352211e146103b45780636c0360eb146103f1576101b7565b806323b872dd146102f75780633ccfd60b1461032057806342842e0e14610337576101b7565b8063095ea7b311610195578063095ea7b3146102615780630c894cfe1461028a57806318160ddd146102a157806319d1997a146102cc576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906123d0565b61067f565b6040516101f09190612418565b60405180910390f35b34801561020557600080fd5b5061020e610761565b60405161021b91906124cc565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612524565b6107f3565b6040516102589190612592565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906125d9565b610878565b005b34801561029657600080fd5b5061029f610990565b005b3480156102ad57600080fd5b506102b6610a38565b6040516102c39190612628565b60405180910390f35b3480156102d857600080fd5b506102e1610a3e565b6040516102ee9190612628565b60405180910390f35b34801561030357600080fd5b5061031e60048036038101906103199190612643565b610a44565b005b34801561032c57600080fd5b50610335610aa4565b005b34801561034357600080fd5b5061035e60048036038101906103599190612643565b610b6f565b005b34801561036c57600080fd5b50610375610b8f565b6040516103829190612628565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad91906126fb565b610b95565b005b3480156103c057600080fd5b506103db60048036038101906103d69190612524565b610c27565b6040516103e89190612592565b60405180910390f35b3480156103fd57600080fd5b50610406610cd9565b60405161041391906124cc565b60405180910390f35b34801561042857600080fd5b50610443600480360381019061043e9190612748565b610d67565b6040516104509190612628565b60405180910390f35b34801561046557600080fd5b5061046e610e1f565b005b34801561047c57600080fd5b5061049760048036038101906104929190612524565b610ea7565b005b3480156104a557600080fd5b506104ae610fd3565b6040516104bb9190612628565b60405180910390f35b3480156104d057600080fd5b506104d9610fd9565b6040516104e69190612592565b60405180910390f35b3480156104fb57600080fd5b50610504611002565b60405161051191906124cc565b60405180910390f35b34801561052657600080fd5b50610541600480360381019061053c91906127a1565b611094565b005b34801561054f57600080fd5b5061056a60048036038101906105659190612524565b611215565b005b34801561057857600080fd5b50610593600480360381019061058e9190612911565b61129b565b005b3480156105a157600080fd5b506105aa6112fd565b6040516105b79190612418565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e29190612524565b611310565b6040516105f491906124cc565b60405180910390f35b61061760048036038101906106129190612524565b6113b7565b005b34801561062557600080fd5b50610640600480360381019061063b9190612994565b611545565b60405161064d9190612418565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190612748565b6115d9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061074a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061075a5750610759826116d1565b5b9050919050565b60606001805461077090612a03565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90612a03565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050505050905090565b60006107fe8261173b565b61083d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083490612aa7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088382610c27565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108eb90612b39565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109136117a7565b73ffffffffffffffffffffffffffffffffffffffff16148061094257506109418161093c6117a7565b611545565b5b610981576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097890612bcb565b60405180910390fd5b61098b83836117af565b505050565b6109986117a7565b73ffffffffffffffffffffffffffffffffffffffff166109b6610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390612c37565b60405180910390fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b60075481565b610bb781565b610a55610a4f6117a7565b82611868565b610a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8b90612cc9565b60405180910390fd5b610a9f838383611946565b505050565b610aac6117a7565b73ffffffffffffffffffffffffffffffffffffffff16610aca610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612c37565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b6b573d6000803e3d6000fd5b5050565b610b8a8383836040518060200160405280600081525061129b565b505050565b600a5481565b610b9d6117a7565b73ffffffffffffffffffffffffffffffffffffffff16610bbb610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0890612c37565b60405180910390fd5b818160099190610c229291906122c1565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790612d5b565b60405180910390fd5b80915050919050565b60098054610ce690612a03565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1290612a03565b8015610d5f5780601f10610d3457610100808354040283529160200191610d5f565b820191906000526020600020905b815481529060010190602001808311610d4257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90612ded565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e276117a7565b73ffffffffffffffffffffffffffffffffffffffff16610e45610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290612c37565b60405180910390fd5b610ea56000611ba2565b565b6109c46007541115610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590612e59565b60405180910390fd5b60011515600860009054906101000a900460ff16151514610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90612ec5565b60405180910390fd5b600a54811115610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090612f31565b60405180910390fd5b6000600754905060005b82811015610fc757600182610fa89190612f80565b9150610fb43383611c66565b8080610fbf90612fd6565b915050610f93565b50806007819055505050565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461101190612a03565b80601f016020809104026020016040519081016040528092919081815260200182805461103d90612a03565b801561108a5780601f1061105f5761010080835404028352916020019161108a565b820191906000526020600020905b81548152906001019060200180831161106d57829003601f168201915b5050505050905090565b61109c6117a7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561110a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111019061306b565b60405180910390fd5b80600660006111176117a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111c46117a7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112099190612418565b60405180910390a35050565b61121d6117a7565b73ffffffffffffffffffffffffffffffffffffffff1661123b610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890612c37565b60405180910390fd5b80600b8190555050565b6112ac6112a66117a7565b83611868565b6112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e290612cc9565b60405180910390fd5b6112f784848484611c84565b50505050565b600860009054906101000a900460ff1681565b606061131b8261173b565b61135a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611351906130fd565b60405180910390fd5b6000611364611ce0565b9050600081511161138457604051806020016040528060008152506113af565b8061138e84611d72565b60405160200161139f929190613159565b6040516020818303038152906040525b915050919050565b600a548111156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f390612f31565b60405180910390fd5b3461141282600b54611ed390919063ffffffff16565b1115611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a906131c9565b60405180910390fd5b60011515600860009054906101000a900460ff161515146114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090612ec5565b60405180910390fd5b610bb7816007546114ba9190612f80565b11156114fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f290613235565b60405180910390fd5b6000600754905060005b828110156115395760018261151a9190612f80565b91506115263383611c66565b808061153190612fd6565b915050611505565b50806007819055505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115e16117a7565b73ffffffffffffffffffffffffffffffffffffffff166115ff610fd9565b73ffffffffffffffffffffffffffffffffffffffff1614611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90612c37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc906132c7565b60405180910390fd5b6116ce81611ba2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661182283610c27565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118738261173b565b6118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a990613359565b60405180910390fd5b60006118bd83610c27565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061192c57508373ffffffffffffffffffffffffffffffffffffffff16611914846107f3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061193d575061193c8185611545565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661196682610c27565b73ffffffffffffffffffffffffffffffffffffffff16146119bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b3906133eb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a239061347d565b60405180910390fd5b611a37838383611ee9565b611a426000826117af565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a92919061349d565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ae99190612f80565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c80828260405180602001604052806000815250611eee565b5050565b611c8f848484611946565b611c9b84848484611f49565b611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190613543565b60405180910390fd5b50505050565b606060098054611cef90612a03565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1b90612a03565b8015611d685780601f10611d3d57610100808354040283529160200191611d68565b820191906000526020600020905b815481529060010190602001808311611d4b57829003601f168201915b5050505050905090565b60606000821415611dba576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ece565b600082905060005b60008214611dec578080611dd590612fd6565b915050600a82611de59190613592565b9150611dc2565b60008167ffffffffffffffff811115611e0857611e076127e6565b5b6040519080825280601f01601f191660200182016040528015611e3a5781602001600182028036833780820191505090505b5090505b60008514611ec757600182611e53919061349d565b9150600a85611e6291906135c3565b6030611e6e9190612f80565b60f81b818381518110611e8457611e836135f4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ec09190613592565b9450611e3e565b8093505050505b919050565b60008183611ee19190613623565b905092915050565b505050565b611ef883836120e0565b611f056000848484611f49565b611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b90613543565b60405180910390fd5b505050565b6000611f6a8473ffffffffffffffffffffffffffffffffffffffff166122ae565b156120d3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f936117a7565b8786866040518563ffffffff1660e01b8152600401611fb594939291906136d2565b602060405180830381600087803b158015611fcf57600080fd5b505af192505050801561200057506040513d601f19601f82011682018060405250810190611ffd9190613733565b60015b612083573d8060008114612030576040519150601f19603f3d011682016040523d82523d6000602084013e612035565b606091505b5060008151141561207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613543565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506120d8565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612150576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612147906137ac565b60405180910390fd5b6121598161173b565b15612199576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219090613818565b60405180910390fd5b6121a560008383611ee9565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f59190612f80565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546122cd90612a03565b90600052602060002090601f0160209004810192826122ef5760008555612336565b82601f1061230857803560ff1916838001178555612336565b82800160010185558215612336579182015b8281111561233557823582559160200191906001019061231a565b5b5090506123439190612347565b5090565b5b80821115612360576000816000905550600101612348565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123ad81612378565b81146123b857600080fd5b50565b6000813590506123ca816123a4565b92915050565b6000602082840312156123e6576123e561236e565b5b60006123f4848285016123bb565b91505092915050565b60008115159050919050565b612412816123fd565b82525050565b600060208201905061242d6000830184612409565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246d578082015181840152602081019050612452565b8381111561247c576000848401525b50505050565b6000601f19601f8301169050919050565b600061249e82612433565b6124a8818561243e565b93506124b881856020860161244f565b6124c181612482565b840191505092915050565b600060208201905081810360008301526124e68184612493565b905092915050565b6000819050919050565b612501816124ee565b811461250c57600080fd5b50565b60008135905061251e816124f8565b92915050565b60006020828403121561253a5761253961236e565b5b60006125488482850161250f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061257c82612551565b9050919050565b61258c81612571565b82525050565b60006020820190506125a76000830184612583565b92915050565b6125b681612571565b81146125c157600080fd5b50565b6000813590506125d3816125ad565b92915050565b600080604083850312156125f0576125ef61236e565b5b60006125fe858286016125c4565b925050602061260f8582860161250f565b9150509250929050565b612622816124ee565b82525050565b600060208201905061263d6000830184612619565b92915050565b60008060006060848603121561265c5761265b61236e565b5b600061266a868287016125c4565b935050602061267b868287016125c4565b925050604061268c8682870161250f565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126126bb576126ba612696565b5b8235905067ffffffffffffffff8111156126d8576126d761269b565b5b6020830191508360018202830111156126f4576126f36126a0565b5b9250929050565b600080602083850312156127125761271161236e565b5b600083013567ffffffffffffffff8111156127305761272f612373565b5b61273c858286016126a5565b92509250509250929050565b60006020828403121561275e5761275d61236e565b5b600061276c848285016125c4565b91505092915050565b61277e816123fd565b811461278957600080fd5b50565b60008135905061279b81612775565b92915050565b600080604083850312156127b8576127b761236e565b5b60006127c6858286016125c4565b92505060206127d78582860161278c565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61281e82612482565b810181811067ffffffffffffffff8211171561283d5761283c6127e6565b5b80604052505050565b6000612850612364565b905061285c8282612815565b919050565b600067ffffffffffffffff82111561287c5761287b6127e6565b5b61288582612482565b9050602081019050919050565b82818337600083830152505050565b60006128b46128af84612861565b612846565b9050828152602081018484840111156128d0576128cf6127e1565b5b6128db848285612892565b509392505050565b600082601f8301126128f8576128f7612696565b5b81356129088482602086016128a1565b91505092915050565b6000806000806080858703121561292b5761292a61236e565b5b6000612939878288016125c4565b945050602061294a878288016125c4565b935050604061295b8782880161250f565b925050606085013567ffffffffffffffff81111561297c5761297b612373565b5b612988878288016128e3565b91505092959194509250565b600080604083850312156129ab576129aa61236e565b5b60006129b9858286016125c4565b92505060206129ca858286016125c4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a1b57607f821691505b60208210811415612a2f57612a2e6129d4565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612a91602c8361243e565b9150612a9c82612a35565b604082019050919050565b60006020820190508181036000830152612ac081612a84565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b2360218361243e565b9150612b2e82612ac7565b604082019050919050565b60006020820190508181036000830152612b5281612b16565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612bb560388361243e565b9150612bc082612b59565b604082019050919050565b60006020820190508181036000830152612be481612ba8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c2160208361243e565b9150612c2c82612beb565b602082019050919050565b60006020820190508181036000830152612c5081612c14565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612cb360318361243e565b9150612cbe82612c57565b604082019050919050565b60006020820190508181036000830152612ce281612ca6565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612d4560298361243e565b9150612d5082612ce9565b604082019050919050565b60006020820190508181036000830152612d7481612d38565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612dd7602a8361243e565b9150612de282612d7b565b604082019050919050565b60006020820190508181036000830152612e0681612dca565b9050919050565b7f6672656520737570706c79207265616368656400000000000000000000000000600082015250565b6000612e4360138361243e565b9150612e4e82612e0d565b602082019050919050565b60006020820190508181036000830152612e7281612e36565b9050919050565b7f53616c65206973205061757365642e0000000000000000000000000000000000600082015250565b6000612eaf600f8361243e565b9150612eba82612e79565b602082019050919050565b60006020820190508181036000830152612ede81612ea2565b9050919050565b7f696e76616c696420746f6b656e20636f756e7400000000000000000000000000600082015250565b6000612f1b60138361243e565b9150612f2682612ee5565b602082019050919050565b60006020820190508181036000830152612f4a81612f0e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f8b826124ee565b9150612f96836124ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612fcb57612fca612f51565b5b828201905092915050565b6000612fe1826124ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561301457613013612f51565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061305560198361243e565b91506130608261301f565b602082019050919050565b6000602082019050818103600083015261308481613048565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006130e7602f8361243e565b91506130f28261308b565b604082019050919050565b60006020820190508181036000830152613116816130da565b9050919050565b600081905092915050565b600061313382612433565b61313d818561311d565b935061314d81856020860161244f565b80840191505092915050565b60006131658285613128565b91506131718284613128565b91508190509392505050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006131b3601f8361243e565b91506131be8261317d565b602082019050919050565b600060208201905081810360008301526131e2816131a6565b9050919050565b7f737570706c792072656163686564000000000000000000000000000000000000600082015250565b600061321f600e8361243e565b915061322a826131e9565b602082019050919050565b6000602082019050818103600083015261324e81613212565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132b160268361243e565b91506132bc82613255565b604082019050919050565b600060208201905081810360008301526132e0816132a4565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613343602c8361243e565b915061334e826132e7565b604082019050919050565b6000602082019050818103600083015261337281613336565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006133d560298361243e565b91506133e082613379565b604082019050919050565b60006020820190508181036000830152613404816133c8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061346760248361243e565b91506134728261340b565b604082019050919050565b600060208201905081810360008301526134968161345a565b9050919050565b60006134a8826124ee565b91506134b3836124ee565b9250828210156134c6576134c5612f51565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061352d60328361243e565b9150613538826134d1565b604082019050919050565b6000602082019050818103600083015261355c81613520565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061359d826124ee565b91506135a8836124ee565b9250826135b8576135b7613563565b5b828204905092915050565b60006135ce826124ee565b91506135d9836124ee565b9250826135e9576135e8613563565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061362e826124ee565b9150613639836124ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561367257613671612f51565b5b828202905092915050565b600081519050919050565b600082825260208201905092915050565b60006136a48261367d565b6136ae8185613688565b93506136be81856020860161244f565b6136c781612482565b840191505092915050565b60006080820190506136e76000830187612583565b6136f46020830186612583565b6137016040830185612619565b81810360608301526137138184613699565b905095945050505050565b60008151905061372d816123a4565b92915050565b6000602082840312156137495761374861236e565b5b60006137578482850161371e565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061379660208361243e565b91506137a182613760565b602082019050919050565b600060208201905081810360008301526137c581613789565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613802601c8361243e565b915061380d826137cc565b602082019050919050565b60006020820190508181036000830152613831816137f5565b905091905056fea26469706673582212201df55b8f49c4788bbed23d8896f962205d1120cbcd275b5fa048b90fcceb3c7664736f6c63430008080033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000850756e6b4261747a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000850554e4b4241545a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): PunkBatz
Arg [1] : symbol (string): PUNKBATZ
Arg [2] : baseURIinput (string):

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 50756e6b4261747a000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 50554e4b4241545a000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

42650:2012:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30463:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31408:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32967:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32490:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43341:102;;;;;;;;;;;;;:::i;:::-;;42771:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42727:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33857:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44516:143;;;;;;;;;;;;;:::i;:::-;;34267:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42868:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43235:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31102:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42842:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30832:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11727:94;;;;;;;;;;;;;:::i;:::-;;43449:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42929:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11076:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31577:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33260:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44414:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34523:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42802:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31752:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43893:515;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33626:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11976:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30463:305;30565:4;30617:25;30602:40;;;:11;:40;;;;:105;;;;30674:33;30659:48;;;:11;:48;;;;30602:105;:158;;;;30724:36;30748:11;30724:23;:36::i;:::-;30602:158;30582:178;;30463:305;;;:::o;31408:100::-;31462:13;31495:5;31488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31408:100;:::o;32967:221::-;33043:7;33071:16;33079:7;33071;:16::i;:::-;33063:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33156:15;:24;33172:7;33156:24;;;;;;;;;;;;;;;;;;;;;33149:31;;32967:221;;;:::o;32490:411::-;32571:13;32587:23;32602:7;32587:14;:23::i;:::-;32571:39;;32635:5;32629:11;;:2;:11;;;;32621:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;32729:5;32713:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;32738:37;32755:5;32762:12;:10;:12::i;:::-;32738:16;:37::i;:::-;32713:62;32691:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;32872:21;32881:2;32885:7;32872:8;:21::i;:::-;32560:341;32490:411;;:::o;43341:102::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43421:16:::1;;;;;;;;;;;43420:17;43401:16;;:36;;;;;;;;;;;;;;;;;;43341:102::o:0;42771:26::-;;;;:::o;42727:39::-;42762:4;42727:39;:::o;33857:339::-;34052:41;34071:12;:10;:12::i;:::-;34085:7;34052:18;:41::i;:::-;34044:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34160:28;34170:4;34176:2;34180:7;34160:9;:28::i;:::-;33857:339;;;:::o;44516:143::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44564:15:::1;44582:21;44564:39;;44622:10;44614:28;;:37;44643:7;44614:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;44553:106;44516:143::o:0;34267:185::-;34405:39;34422:4;34428:2;34432:7;34405:39;;;;;;;;;;;;:16;:39::i;:::-;34267:185;;;:::o;42868:34::-;;;;:::o;43235:100::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43319:10:::1;;43309:7;:20;;;;;;;:::i;:::-;;43235:100:::0;;:::o;31102:239::-;31174:7;31194:13;31210:7;:16;31218:7;31210:16;;;;;;;;;;;;;;;;;;;;;31194:32;;31262:1;31245:19;;:5;:19;;;;31237:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31328:5;31321:12;;;31102:239;;;:::o;42842:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30832:208::-;30904:7;30949:1;30932:19;;:5;:19;;;;30924:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31016:9;:16;31026:5;31016:16;;;;;;;;;;;;;;;;31009:23;;30832:208;;;:::o;11727:94::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11792:21:::1;11810:1;11792:9;:21::i;:::-;11727:94::o:0;43449:438::-;43528:4;43513:11;;:19;;43505:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;43591:4;43571:24;;:16;;;;;;;;;;;:24;;;43563:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;43648:17;;43630:14;:35;;43622:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43698:13;43714:11;;43698:27;;43743:6;43738:112;43759:14;43755:1;:18;43738:112;;;43798:1;43791:8;;;;;:::i;:::-;;;43810:28;43820:10;43832:5;43810:9;:28::i;:::-;43775:3;;;;;:::i;:::-;;;;43738:112;;;;43876:5;43862:11;:19;;;;43498:389;43449:438;:::o;42929:45::-;;;;:::o;11076:87::-;11122:7;11149:6;;;;;;;;;;;11142:13;;11076:87;:::o;31577:104::-;31633:13;31666:7;31659:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31577:104;:::o;33260:295::-;33375:12;:10;:12::i;:::-;33363:24;;:8;:24;;;;33355:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33475:8;33430:18;:32;33449:12;:10;:12::i;:::-;33430:32;;;;;;;;;;;;;;;:42;33463:8;33430:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33528:8;33499:48;;33514:12;:10;:12::i;:::-;33499:48;;;33538:8;33499:48;;;;;;:::i;:::-;;;;;;;;33260:295;;:::o;44414:96::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44494:8:::1;44481:10;:21;;;;44414:96:::0;:::o;34523:328::-;34698:41;34717:12;:10;:12::i;:::-;34731:7;34698:18;:41::i;:::-;34690:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;34804:39;34818:4;34824:2;34828:7;34837:5;34804:13;:39::i;:::-;34523:328;;;;:::o;42802:35::-;;;;;;;;;;;;;:::o;31752:334::-;31825:13;31859:16;31867:7;31859;:16::i;:::-;31851:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;31940:21;31964:10;:8;:10::i;:::-;31940:34;;32016:1;31998:7;31992:21;:25;:86;;;;;;;;;;;;;;;;;32044:7;32053:18;:7;:16;:18::i;:::-;32027:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31992:86;31985:93;;;31752:334;;;:::o;43893:515::-;43958:17;;43948:6;:27;;43940:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;44040:9;44014:22;44029:6;44014:10;;:14;;:22;;;;:::i;:::-;:35;;44006:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;44119:4;44099:24;;:16;;;;;;;;;;;:24;;;44091:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;42762:4;44173:6;44159:11;;:20;;;;:::i;:::-;44158:37;;44150:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44223:13;44239:11;;44223:27;;44267:6;44263:110;44283:6;44279:1;:10;44263:110;;;44317:1;44310:8;;;;;:::i;:::-;;;44333:28;44343:10;44355:5;44333:9;:28::i;:::-;44291:3;;;;;:::i;:::-;;;;44263:110;;;;44395:5;44381:11;:19;;;;43933:475;43893:515;:::o;33626:164::-;33723:4;33747:18;:25;33766:5;33747:25;;;;;;;;;;;;;;;:35;33773:8;33747:35;;;;;;;;;;;;;;;;;;;;;;;;;33740:42;;33626:164;;;;:::o;11976:192::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12085:1:::1;12065:22;;:8;:22;;;;12057:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12141:19;12151:8;12141:9;:19::i;:::-;11976:192:::0;:::o;23274:157::-;23359:4;23398:25;23383:40;;;:11;:40;;;;23376:47;;23274:157;;;:::o;36361:127::-;36426:4;36478:1;36450:30;;:7;:16;36458:7;36450:16;;;;;;;;;;;;;;;;;;;;;:30;;;;36443:37;;36361:127;;;:::o;9811:98::-;9864:7;9891:10;9884:17;;9811:98;:::o;40343:174::-;40445:2;40418:15;:24;40434:7;40418:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40501:7;40497:2;40463:46;;40472:23;40487:7;40472:14;:23::i;:::-;40463:46;;;;;;;;;;;;40343:174;;:::o;36655:348::-;36748:4;36773:16;36781:7;36773;:16::i;:::-;36765:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36849:13;36865:23;36880:7;36865:14;:23::i;:::-;36849:39;;36918:5;36907:16;;:7;:16;;;:51;;;;36951:7;36927:31;;:20;36939:7;36927:11;:20::i;:::-;:31;;;36907:51;:87;;;;36962:32;36979:5;36986:7;36962:16;:32::i;:::-;36907:87;36899:96;;;36655:348;;;;:::o;39647:578::-;39806:4;39779:31;;:23;39794:7;39779:14;:23::i;:::-;:31;;;39771:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39889:1;39875:16;;:2;:16;;;;39867:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;39945:39;39966:4;39972:2;39976:7;39945:20;:39::i;:::-;40049:29;40066:1;40070:7;40049:8;:29::i;:::-;40110:1;40091:9;:15;40101:4;40091:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;40139:1;40122:9;:13;40132:2;40122:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;40170:2;40151:7;:16;40159:7;40151:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;40209:7;40205:2;40190:27;;40199:4;40190:27;;;;;;;;;;;;39647:578;;;:::o;12176:173::-;12232:16;12251:6;;;;;;;;;;;12232:25;;12277:8;12268:6;;:17;;;;;;;;;;;;;;;;;;12332:8;12301:40;;12322:8;12301:40;;;;;;;;;;;;12221:128;12176:173;:::o;37345:110::-;37421:26;37431:2;37435:7;37421:26;;;;;;;;;;;;:9;:26::i;:::-;37345:110;;:::o;35733:315::-;35890:28;35900:4;35906:2;35910:7;35890:9;:28::i;:::-;35937:48;35960:4;35966:2;35970:7;35979:5;35937:22;:48::i;:::-;35929:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;35733:315;;;;:::o;43135:94::-;43187:13;43216:7;43209:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43135:94;:::o;7374:723::-;7430:13;7660:1;7651:5;:10;7647:53;;;7678:10;;;;;;;;;;;;;;;;;;;;;7647:53;7710:12;7725:5;7710:20;;7741:14;7766:78;7781:1;7773:4;:9;7766:78;;7799:8;;;;;:::i;:::-;;;;7830:2;7822:10;;;;;:::i;:::-;;;7766:78;;;7854:19;7886:6;7876:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7854:39;;7904:154;7920:1;7911:5;:10;7904:154;;7948:1;7938:11;;;;;:::i;:::-;;;8015:2;8007:5;:10;;;;:::i;:::-;7994:2;:24;;;;:::i;:::-;7981:39;;7964:6;7971;7964:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8044:2;8035:11;;;;;:::i;:::-;;;7904:154;;;8082:6;8068:21;;;;;7374:723;;;;:::o;3583:98::-;3641:7;3672:1;3668;:5;;;;:::i;:::-;3661:12;;3583:98;;;;:::o;42453:126::-;;;;:::o;37682:321::-;37812:18;37818:2;37822:7;37812:5;:18::i;:::-;37863:54;37894:1;37898:2;37902:7;37911:5;37863:22;:54::i;:::-;37841:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;37682:321;;;:::o;41082:799::-;41237:4;41258:15;:2;:13;;;:15::i;:::-;41254:620;;;41310:2;41294:36;;;41331:12;:10;:12::i;:::-;41345:4;41351:7;41360:5;41294:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41290:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41553:1;41536:6;:13;:18;41532:272;;;41579:60;;;;;;;;;;:::i;:::-;;;;;;;;41532:272;41754:6;41748:13;41739:6;41735:2;41731:15;41724:38;41290:529;41427:41;;;41417:51;;;:6;:51;;;;41410:58;;;;;41254:620;41858:4;41851:11;;41082:799;;;;;;;:::o;38339:382::-;38433:1;38419:16;;:2;:16;;;;38411:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38492:16;38500:7;38492;:16::i;:::-;38491:17;38483:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38554:45;38583:1;38587:2;38591:7;38554:20;:45::i;:::-;38629:1;38612:9;:13;38622:2;38612:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;38660:2;38641:7;:16;38649:7;38641:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;38705:7;38701:2;38680:33;;38697:1;38680:33;;;;;;;;;;;;38339:382;;:::o;13175:387::-;13235:4;13443:12;13510:7;13498:20;13490:28;;13553:1;13546:4;:8;13539:15;;;13175:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:117;6270:1;6267;6260:12;6298:553;6356:8;6366:6;6416:3;6409:4;6401:6;6397:17;6393:27;6383:122;;6424:79;;:::i;:::-;6383:122;6537:6;6524:20;6514:30;;6567:18;6559:6;6556:30;6553:117;;;6589:79;;:::i;:::-;6553:117;6703:4;6695:6;6691:17;6679:29;;6757:3;6749:4;6741:6;6737:17;6727:8;6723:32;6720:41;6717:128;;;6764:79;;:::i;:::-;6717:128;6298:553;;;;;:::o;6857:529::-;6928:6;6936;6985:2;6973:9;6964:7;6960:23;6956:32;6953:119;;;6991:79;;:::i;:::-;6953:119;7139:1;7128:9;7124:17;7111:31;7169:18;7161:6;7158:30;7155:117;;;7191:79;;:::i;:::-;7155:117;7304:65;7361:7;7352:6;7341:9;7337:22;7304:65;:::i;:::-;7286:83;;;;7082:297;6857:529;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:154::-;9590:6;9585:3;9580;9567:30;9652:1;9643:6;9638:3;9634:16;9627:27;9506:154;;;:::o;9666:410::-;9743:5;9768:65;9784:48;9825:6;9784:48;:::i;:::-;9768:65;:::i;:::-;9759:74;;9856:6;9849:5;9842:21;9894:4;9887:5;9883:16;9932:3;9923:6;9918:3;9914:16;9911:25;9908:112;;;9939:79;;:::i;:::-;9908:112;10029:41;10063:6;10058:3;10053;10029:41;:::i;:::-;9749:327;9666:410;;;;;:::o;10095:338::-;10150:5;10199:3;10192:4;10184:6;10180:17;10176:27;10166:122;;10207:79;;:::i;:::-;10166:122;10324:6;10311:20;10349:78;10423:3;10415:6;10408:4;10400:6;10396:17;10349:78;:::i;:::-;10340:87;;10156:277;10095:338;;;;:::o;10439:943::-;10534:6;10542;10550;10558;10607:3;10595:9;10586:7;10582:23;10578:33;10575:120;;;10614:79;;:::i;:::-;10575:120;10734:1;10759:53;10804:7;10795:6;10784:9;10780:22;10759:53;:::i;:::-;10749:63;;10705:117;10861:2;10887:53;10932:7;10923:6;10912:9;10908:22;10887:53;:::i;:::-;10877:63;;10832:118;10989:2;11015:53;11060:7;11051:6;11040:9;11036:22;11015:53;:::i;:::-;11005:63;;10960:118;11145:2;11134:9;11130:18;11117:32;11176:18;11168:6;11165:30;11162:117;;;11198:79;;:::i;:::-;11162:117;11303:62;11357:7;11348:6;11337:9;11333:22;11303:62;:::i;:::-;11293:72;;11088:287;10439:943;;;;;;;:::o;11388:474::-;11456:6;11464;11513:2;11501:9;11492:7;11488:23;11484:32;11481:119;;;11519:79;;:::i;:::-;11481:119;11639:1;11664:53;11709:7;11700:6;11689:9;11685:22;11664:53;:::i;:::-;11654:63;;11610:117;11766:2;11792:53;11837:7;11828:6;11817:9;11813:22;11792:53;:::i;:::-;11782:63;;11737:118;11388:474;;;;;:::o;11868:180::-;11916:77;11913:1;11906:88;12013:4;12010:1;12003:15;12037:4;12034:1;12027:15;12054:320;12098:6;12135:1;12129:4;12125:12;12115:22;;12182:1;12176:4;12172:12;12203:18;12193:81;;12259:4;12251:6;12247:17;12237:27;;12193:81;12321:2;12313:6;12310:14;12290:18;12287:38;12284:84;;;12340:18;;:::i;:::-;12284:84;12105:269;12054:320;;;:::o;12380:231::-;12520:34;12516:1;12508:6;12504:14;12497:58;12589:14;12584:2;12576:6;12572:15;12565:39;12380:231;:::o;12617:366::-;12759:3;12780:67;12844:2;12839:3;12780:67;:::i;:::-;12773:74;;12856:93;12945:3;12856:93;:::i;:::-;12974:2;12969:3;12965:12;12958:19;;12617:366;;;:::o;12989:419::-;13155:4;13193:2;13182:9;13178:18;13170:26;;13242:9;13236:4;13232:20;13228:1;13217:9;13213:17;13206:47;13270:131;13396:4;13270:131;:::i;:::-;13262:139;;12989:419;;;:::o;13414:220::-;13554:34;13550:1;13542:6;13538:14;13531:58;13623:3;13618:2;13610:6;13606:15;13599:28;13414:220;:::o;13640:366::-;13782:3;13803:67;13867:2;13862:3;13803:67;:::i;:::-;13796:74;;13879:93;13968:3;13879:93;:::i;:::-;13997:2;13992:3;13988:12;13981:19;;13640:366;;;:::o;14012:419::-;14178:4;14216:2;14205:9;14201:18;14193:26;;14265:9;14259:4;14255:20;14251:1;14240:9;14236:17;14229:47;14293:131;14419:4;14293:131;:::i;:::-;14285:139;;14012:419;;;:::o;14437:243::-;14577:34;14573:1;14565:6;14561:14;14554:58;14646:26;14641:2;14633:6;14629:15;14622:51;14437:243;:::o;14686:366::-;14828:3;14849:67;14913:2;14908:3;14849:67;:::i;:::-;14842:74;;14925:93;15014:3;14925:93;:::i;:::-;15043:2;15038:3;15034:12;15027:19;;14686:366;;;:::o;15058:419::-;15224:4;15262:2;15251:9;15247:18;15239:26;;15311:9;15305:4;15301:20;15297:1;15286:9;15282:17;15275:47;15339:131;15465:4;15339:131;:::i;:::-;15331:139;;15058:419;;;:::o;15483:182::-;15623:34;15619:1;15611:6;15607:14;15600:58;15483:182;:::o;15671:366::-;15813:3;15834:67;15898:2;15893:3;15834:67;:::i;:::-;15827:74;;15910:93;15999:3;15910:93;:::i;:::-;16028:2;16023:3;16019:12;16012:19;;15671:366;;;:::o;16043:419::-;16209:4;16247:2;16236:9;16232:18;16224:26;;16296:9;16290:4;16286:20;16282:1;16271:9;16267:17;16260:47;16324:131;16450:4;16324:131;:::i;:::-;16316:139;;16043:419;;;:::o;16468:236::-;16608:34;16604:1;16596:6;16592:14;16585:58;16677:19;16672:2;16664:6;16660:15;16653:44;16468:236;:::o;16710:366::-;16852:3;16873:67;16937:2;16932:3;16873:67;:::i;:::-;16866:74;;16949:93;17038:3;16949:93;:::i;:::-;17067:2;17062:3;17058:12;17051:19;;16710:366;;;:::o;17082:419::-;17248:4;17286:2;17275:9;17271:18;17263:26;;17335:9;17329:4;17325:20;17321:1;17310:9;17306:17;17299:47;17363:131;17489:4;17363:131;:::i;:::-;17355:139;;17082:419;;;:::o;17507:228::-;17647:34;17643:1;17635:6;17631:14;17624:58;17716:11;17711:2;17703:6;17699:15;17692:36;17507:228;:::o;17741:366::-;17883:3;17904:67;17968:2;17963:3;17904:67;:::i;:::-;17897:74;;17980:93;18069:3;17980:93;:::i;:::-;18098:2;18093:3;18089:12;18082:19;;17741:366;;;:::o;18113:419::-;18279:4;18317:2;18306:9;18302:18;18294:26;;18366:9;18360:4;18356:20;18352:1;18341:9;18337:17;18330:47;18394:131;18520:4;18394:131;:::i;:::-;18386:139;;18113:419;;;:::o;18538:229::-;18678:34;18674:1;18666:6;18662:14;18655:58;18747:12;18742:2;18734:6;18730:15;18723:37;18538:229;:::o;18773:366::-;18915:3;18936:67;19000:2;18995:3;18936:67;:::i;:::-;18929:74;;19012:93;19101:3;19012:93;:::i;:::-;19130:2;19125:3;19121:12;19114:19;;18773:366;;;:::o;19145:419::-;19311:4;19349:2;19338:9;19334:18;19326:26;;19398:9;19392:4;19388:20;19384:1;19373:9;19369:17;19362:47;19426:131;19552:4;19426:131;:::i;:::-;19418:139;;19145:419;;;:::o;19570:169::-;19710:21;19706:1;19698:6;19694:14;19687:45;19570:169;:::o;19745:366::-;19887:3;19908:67;19972:2;19967:3;19908:67;:::i;:::-;19901:74;;19984:93;20073:3;19984:93;:::i;:::-;20102:2;20097:3;20093:12;20086:19;;19745:366;;;:::o;20117:419::-;20283:4;20321:2;20310:9;20306:18;20298:26;;20370:9;20364:4;20360:20;20356:1;20345:9;20341:17;20334:47;20398:131;20524:4;20398:131;:::i;:::-;20390:139;;20117:419;;;:::o;20542:165::-;20682:17;20678:1;20670:6;20666:14;20659:41;20542:165;:::o;20713:366::-;20855:3;20876:67;20940:2;20935:3;20876:67;:::i;:::-;20869:74;;20952:93;21041:3;20952:93;:::i;:::-;21070:2;21065:3;21061:12;21054:19;;20713:366;;;:::o;21085:419::-;21251:4;21289:2;21278:9;21274:18;21266:26;;21338:9;21332:4;21328:20;21324:1;21313:9;21309:17;21302:47;21366:131;21492:4;21366:131;:::i;:::-;21358:139;;21085:419;;;:::o;21510:169::-;21650:21;21646:1;21638:6;21634:14;21627:45;21510:169;:::o;21685:366::-;21827:3;21848:67;21912:2;21907:3;21848:67;:::i;:::-;21841:74;;21924:93;22013:3;21924:93;:::i;:::-;22042:2;22037:3;22033:12;22026:19;;21685:366;;;:::o;22057:419::-;22223:4;22261:2;22250:9;22246:18;22238:26;;22310:9;22304:4;22300:20;22296:1;22285:9;22281:17;22274:47;22338:131;22464:4;22338:131;:::i;:::-;22330:139;;22057:419;;;:::o;22482:180::-;22530:77;22527:1;22520:88;22627:4;22624:1;22617:15;22651:4;22648:1;22641:15;22668:305;22708:3;22727:20;22745:1;22727:20;:::i;:::-;22722:25;;22761:20;22779:1;22761:20;:::i;:::-;22756:25;;22915:1;22847:66;22843:74;22840:1;22837:81;22834:107;;;22921:18;;:::i;:::-;22834:107;22965:1;22962;22958:9;22951:16;;22668:305;;;;:::o;22979:233::-;23018:3;23041:24;23059:5;23041:24;:::i;:::-;23032:33;;23087:66;23080:5;23077:77;23074:103;;;23157:18;;:::i;:::-;23074:103;23204:1;23197:5;23193:13;23186:20;;22979:233;;;:::o;23218:175::-;23358:27;23354:1;23346:6;23342:14;23335:51;23218:175;:::o;23399:366::-;23541:3;23562:67;23626:2;23621:3;23562:67;:::i;:::-;23555:74;;23638:93;23727:3;23638:93;:::i;:::-;23756:2;23751:3;23747:12;23740:19;;23399:366;;;:::o;23771:419::-;23937:4;23975:2;23964:9;23960:18;23952:26;;24024:9;24018:4;24014:20;24010:1;23999:9;23995:17;23988:47;24052:131;24178:4;24052:131;:::i;:::-;24044:139;;23771:419;;;:::o;24196:234::-;24336:34;24332:1;24324:6;24320:14;24313:58;24405:17;24400:2;24392:6;24388:15;24381:42;24196:234;:::o;24436:366::-;24578:3;24599:67;24663:2;24658:3;24599:67;:::i;:::-;24592:74;;24675:93;24764:3;24675:93;:::i;:::-;24793:2;24788:3;24784:12;24777:19;;24436:366;;;:::o;24808:419::-;24974:4;25012:2;25001:9;24997:18;24989:26;;25061:9;25055:4;25051:20;25047:1;25036:9;25032:17;25025:47;25089:131;25215:4;25089:131;:::i;:::-;25081:139;;24808:419;;;:::o;25233:148::-;25335:11;25372:3;25357:18;;25233:148;;;;:::o;25387:377::-;25493:3;25521:39;25554:5;25521:39;:::i;:::-;25576:89;25658:6;25653:3;25576:89;:::i;:::-;25569:96;;25674:52;25719:6;25714:3;25707:4;25700:5;25696:16;25674:52;:::i;:::-;25751:6;25746:3;25742:16;25735:23;;25497:267;25387:377;;;;:::o;25770:435::-;25950:3;25972:95;26063:3;26054:6;25972:95;:::i;:::-;25965:102;;26084:95;26175:3;26166:6;26084:95;:::i;:::-;26077:102;;26196:3;26189:10;;25770:435;;;;;:::o;26211:181::-;26351:33;26347:1;26339:6;26335:14;26328:57;26211:181;:::o;26398:366::-;26540:3;26561:67;26625:2;26620:3;26561:67;:::i;:::-;26554:74;;26637:93;26726:3;26637:93;:::i;:::-;26755:2;26750:3;26746:12;26739:19;;26398:366;;;:::o;26770:419::-;26936:4;26974:2;26963:9;26959:18;26951:26;;27023:9;27017:4;27013:20;27009:1;26998:9;26994:17;26987:47;27051:131;27177:4;27051:131;:::i;:::-;27043:139;;26770:419;;;:::o;27195:164::-;27335:16;27331:1;27323:6;27319:14;27312:40;27195:164;:::o;27365:366::-;27507:3;27528:67;27592:2;27587:3;27528:67;:::i;:::-;27521:74;;27604:93;27693:3;27604:93;:::i;:::-;27722:2;27717:3;27713:12;27706:19;;27365:366;;;:::o;27737:419::-;27903:4;27941:2;27930:9;27926:18;27918:26;;27990:9;27984:4;27980:20;27976:1;27965:9;27961:17;27954:47;28018:131;28144:4;28018:131;:::i;:::-;28010:139;;27737:419;;;:::o;28162:225::-;28302:34;28298:1;28290:6;28286:14;28279:58;28371:8;28366:2;28358:6;28354:15;28347:33;28162:225;:::o;28393:366::-;28535:3;28556:67;28620:2;28615:3;28556:67;:::i;:::-;28549:74;;28632:93;28721:3;28632:93;:::i;:::-;28750:2;28745:3;28741:12;28734:19;;28393:366;;;:::o;28765:419::-;28931:4;28969:2;28958:9;28954:18;28946:26;;29018:9;29012:4;29008:20;29004:1;28993:9;28989:17;28982:47;29046:131;29172:4;29046:131;:::i;:::-;29038:139;;28765:419;;;:::o;29190:231::-;29330:34;29326:1;29318:6;29314:14;29307:58;29399:14;29394:2;29386:6;29382:15;29375:39;29190:231;:::o;29427:366::-;29569:3;29590:67;29654:2;29649:3;29590:67;:::i;:::-;29583:74;;29666:93;29755:3;29666:93;:::i;:::-;29784:2;29779:3;29775:12;29768:19;;29427:366;;;:::o;29799:419::-;29965:4;30003:2;29992:9;29988:18;29980:26;;30052:9;30046:4;30042:20;30038:1;30027:9;30023:17;30016:47;30080:131;30206:4;30080:131;:::i;:::-;30072:139;;29799:419;;;:::o;30224:228::-;30364:34;30360:1;30352:6;30348:14;30341:58;30433:11;30428:2;30420:6;30416:15;30409:36;30224:228;:::o;30458:366::-;30600:3;30621:67;30685:2;30680:3;30621:67;:::i;:::-;30614:74;;30697:93;30786:3;30697:93;:::i;:::-;30815:2;30810:3;30806:12;30799:19;;30458:366;;;:::o;30830:419::-;30996:4;31034:2;31023:9;31019:18;31011:26;;31083:9;31077:4;31073:20;31069:1;31058:9;31054:17;31047:47;31111:131;31237:4;31111:131;:::i;:::-;31103:139;;30830:419;;;:::o;31255:223::-;31395:34;31391:1;31383:6;31379:14;31372:58;31464:6;31459:2;31451:6;31447:15;31440:31;31255:223;:::o;31484:366::-;31626:3;31647:67;31711:2;31706:3;31647:67;:::i;:::-;31640:74;;31723:93;31812:3;31723:93;:::i;:::-;31841:2;31836:3;31832:12;31825:19;;31484:366;;;:::o;31856:419::-;32022:4;32060:2;32049:9;32045:18;32037:26;;32109:9;32103:4;32099:20;32095:1;32084:9;32080:17;32073:47;32137:131;32263:4;32137:131;:::i;:::-;32129:139;;31856:419;;;:::o;32281:191::-;32321:4;32341:20;32359:1;32341:20;:::i;:::-;32336:25;;32375:20;32393:1;32375:20;:::i;:::-;32370:25;;32414:1;32411;32408:8;32405:34;;;32419:18;;:::i;:::-;32405:34;32464:1;32461;32457:9;32449:17;;32281:191;;;;:::o;32478:237::-;32618:34;32614:1;32606:6;32602:14;32595:58;32687:20;32682:2;32674:6;32670:15;32663:45;32478:237;:::o;32721:366::-;32863:3;32884:67;32948:2;32943:3;32884:67;:::i;:::-;32877:74;;32960:93;33049:3;32960:93;:::i;:::-;33078:2;33073:3;33069:12;33062:19;;32721:366;;;:::o;33093:419::-;33259:4;33297:2;33286:9;33282:18;33274:26;;33346:9;33340:4;33336:20;33332:1;33321:9;33317:17;33310:47;33374:131;33500:4;33374:131;:::i;:::-;33366:139;;33093:419;;;:::o;33518:180::-;33566:77;33563:1;33556:88;33663:4;33660:1;33653:15;33687:4;33684:1;33677:15;33704:185;33744:1;33761:20;33779:1;33761:20;:::i;:::-;33756:25;;33795:20;33813:1;33795:20;:::i;:::-;33790:25;;33834:1;33824:35;;33839:18;;:::i;:::-;33824:35;33881:1;33878;33874:9;33869:14;;33704:185;;;;:::o;33895:176::-;33927:1;33944:20;33962:1;33944:20;:::i;:::-;33939:25;;33978:20;33996:1;33978:20;:::i;:::-;33973:25;;34017:1;34007:35;;34022:18;;:::i;:::-;34007:35;34063:1;34060;34056:9;34051:14;;33895:176;;;;:::o;34077:180::-;34125:77;34122:1;34115:88;34222:4;34219:1;34212:15;34246:4;34243:1;34236:15;34263:348;34303:7;34326:20;34344:1;34326:20;:::i;:::-;34321:25;;34360:20;34378:1;34360:20;:::i;:::-;34355:25;;34548:1;34480:66;34476:74;34473:1;34470:81;34465:1;34458:9;34451:17;34447:105;34444:131;;;34555:18;;:::i;:::-;34444:131;34603:1;34600;34596:9;34585:20;;34263:348;;;;:::o;34617:98::-;34668:6;34702:5;34696:12;34686:22;;34617:98;;;:::o;34721:168::-;34804:11;34838:6;34833:3;34826:19;34878:4;34873:3;34869:14;34854:29;;34721:168;;;;:::o;34895:360::-;34981:3;35009:38;35041:5;35009:38;:::i;:::-;35063:70;35126:6;35121:3;35063:70;:::i;:::-;35056:77;;35142:52;35187:6;35182:3;35175:4;35168:5;35164:16;35142:52;:::i;:::-;35219:29;35241:6;35219:29;:::i;:::-;35214:3;35210:39;35203:46;;34985:270;34895:360;;;;:::o;35261:640::-;35456:4;35494:3;35483:9;35479:19;35471:27;;35508:71;35576:1;35565:9;35561:17;35552:6;35508:71;:::i;:::-;35589:72;35657:2;35646:9;35642:18;35633:6;35589:72;:::i;:::-;35671;35739:2;35728:9;35724:18;35715:6;35671:72;:::i;:::-;35790:9;35784:4;35780:20;35775:2;35764:9;35760:18;35753:48;35818:76;35889:4;35880:6;35818:76;:::i;:::-;35810:84;;35261:640;;;;;;;:::o;35907:141::-;35963:5;35994:6;35988:13;35979:22;;36010:32;36036:5;36010:32;:::i;:::-;35907:141;;;;:::o;36054:349::-;36123:6;36172:2;36160:9;36151:7;36147:23;36143:32;36140:119;;;36178:79;;:::i;:::-;36140:119;36298:1;36323:63;36378:7;36369:6;36358:9;36354:22;36323:63;:::i;:::-;36313:73;;36269:127;36054:349;;;;:::o;36409:182::-;36549:34;36545:1;36537:6;36533:14;36526:58;36409:182;:::o;36597:366::-;36739:3;36760:67;36824:2;36819:3;36760:67;:::i;:::-;36753:74;;36836:93;36925:3;36836:93;:::i;:::-;36954:2;36949:3;36945:12;36938:19;;36597:366;;;:::o;36969:419::-;37135:4;37173:2;37162:9;37158:18;37150:26;;37222:9;37216:4;37212:20;37208:1;37197:9;37193:17;37186:47;37250:131;37376:4;37250:131;:::i;:::-;37242:139;;36969:419;;;:::o;37394:178::-;37534:30;37530:1;37522:6;37518:14;37511:54;37394:178;:::o;37578:366::-;37720:3;37741:67;37805:2;37800:3;37741:67;:::i;:::-;37734:74;;37817:93;37906:3;37817:93;:::i;:::-;37935:2;37930:3;37926:12;37919:19;;37578:366;;;:::o;37950:419::-;38116:4;38154:2;38143:9;38139:18;38131:26;;38203:9;38197:4;38193:20;38189:1;38178:9;38174:17;38167:47;38231:131;38357:4;38231:131;:::i;:::-;38223:139;;37950:419;;;:::o

Swarm Source

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