ETH Price: $2,435.25 (+3.29%)

Contract

0x1f72DFE15e97F6644800043D9bA1066E34B095FB
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Approval For...204840422024-08-08 13:03:3536 days ago1723122215IN
0x1f72DFE1...E34B095FB
0 ETH0.000421619.12973312
Set Approval For...203990542024-07-27 16:23:1148 days ago1722097391IN
0x1f72DFE1...E34B095FB
0 ETH0.000330567.15828474
Set Approval For...198572832024-05-12 23:40:59124 days ago1715557259IN
0x1f72DFE1...E34B095FB
0 ETH0.00012652.73937
Safe Transfer Fr...194964282024-03-23 9:32:11174 days ago1711186331IN
0x1f72DFE1...E34B095FB
0 ETH0.0010171515.84074873
Set Approval For...181731202023-09-19 23:05:11360 days ago1695164711IN
0x1f72DFE1...E34B095FB
0 ETH0.000727315.74934171
Set Approval For...179833572023-08-24 8:25:23386 days ago1692865523IN
0x1f72DFE1...E34B095FB
0 ETH0.0007395516.01460116
Set Approval For...165347122023-02-01 14:58:35590 days ago1675263515IN
0x1f72DFE1...E34B095FB
0 ETH0.0009926521.49544509
Set Approval For...163188462023-01-02 11:39:35620 days ago1672659575IN
0x1f72DFE1...E34B095FB
0 ETH0.0003258413.42695792
Transfer From162708282022-12-26 18:50:35627 days ago1672080635IN
0x1f72DFE1...E34B095FB
0 ETH0.0007551512.29261467
Set Approval For...161775662022-12-13 18:28:47640 days ago1670956127IN
0x1f72DFE1...E34B095FB
0 ETH0.0009881721.39834497
Set Approval For...161506412022-12-10 0:12:11644 days ago1670631131IN
0x1f72DFE1...E34B095FB
0 ETH0.0006692214.46543982
Set Approval For...161313682022-12-07 7:29:47646 days ago1670398187IN
0x1f72DFE1...E34B095FB
0 ETH0.0007130215.44010881
Set Approval For...160874322022-12-01 4:00:59652 days ago1669867259IN
0x1f72DFE1...E34B095FB
0 ETH0.0005303711.48500193
Set Approval For...160849522022-11-30 19:40:59653 days ago1669837259IN
0x1f72DFE1...E34B095FB
0 ETH0.0008206717.77123744
Set Approval For...160849282022-11-30 19:36:11653 days ago1669836971IN
0x1f72DFE1...E34B095FB
0 ETH0.000837918.14431712
Set Approval For...160849192022-11-30 19:34:23653 days ago1669836863IN
0x1f72DFE1...E34B095FB
0 ETH0.0008687118.81143989
Set Approval For...160814602022-11-30 7:58:11653 days ago1669795091IN
0x1f72DFE1...E34B095FB
0 ETH0.0005097711.03877562
Set Approval For...160786782022-11-29 22:38:35654 days ago1669761515IN
0x1f72DFE1...E34B095FB
0 ETH0.0005513611.93942252
Set Approval For...160786392022-11-29 22:30:47654 days ago1669761047IN
0x1f72DFE1...E34B095FB
0 ETH0.0005206711.2748395
Set Approval For...160689022022-11-28 13:52:11655 days ago1669643531IN
0x1f72DFE1...E34B095FB
0 ETH0.000612813.26985218
Transfer From159769482022-11-15 17:33:23668 days ago1668533603IN
0x1f72DFE1...E34B095FB
0 ETH0.0015644723.62116575
Transfer From159769322022-11-15 17:29:59668 days ago1668533399IN
0x1f72DFE1...E34B095FB
0 ETH0.0010434721.23815782
Safe Transfer Fr...159560022022-11-12 19:23:23671 days ago1668281003IN
0x1f72DFE1...E34B095FB
0 ETH0.0007839711.3601962
Safe Transfer Fr...159559942022-11-12 19:21:47671 days ago1668280907IN
0x1f72DFE1...E34B095FB
0 ETH0.000945110.29894397
Transfer From159431822022-11-11 0:24:35673 days ago1668126275IN
0x1f72DFE1...E34B095FB
0 ETH0.0012359918.66156007
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
153034942022-08-08 19:38:44767 days ago1659987524
0x1f72DFE1...E34B095FB
4.14 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Unleashedplatinum

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-06
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.9;

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

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

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

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

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

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



pragma solidity ^0.8.9;

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

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

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



pragma solidity ^0.8.9;


/**
 * @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: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.9;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.9;

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

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



pragma solidity ^0.8.9;

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

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



pragma solidity ^0.8.9;


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

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



pragma solidity ^0.8.9;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.9;


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

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

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


pragma solidity >=0.8.9;
// to enable certain compiler features



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;
    
    //Mapping para atribuirle un URI para cada token
    mapping(uint256 => string) internal id_to_URI;

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

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

pragma solidity ^0.8.9;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity ^0.8.9;

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.9;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: 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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)


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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}



contract Unleashedplatinum is ERC721A, Ownable, ReentrancyGuard{
    
    using Strings for uint256;
    using SafeMath for uint256;

    //initial part of the URI for the metadata
    string private _currentBaseURI;
        
    //cost of mints depending on state of sale    
    uint private mintCostPreSale1 = 0.1 ether;
    uint private mintCostPreSale2 = 0.1 ether;
    uint private mintCostPublicSale = 0.2 ether;

    //declares the maximum amount of tokens that can be minted, total and in presale
    uint256 private maxTotalTokens = 2000;

    // Amount for each phases
    uint public amountForPledgeMint = 0;
    uint public amountForPreSale1 = 1000;
    uint public amountForPreSale2 = 500;
    uint public amountForPublicSale = 500;
    uint public mintedAmountPreSale1 = 0;
    uint public mintedAmountPreSale2 = 0;
    uint public mintedAmountPublicSale = 0;

    
    //maximum amount of mints allowed per person
    uint256 public maxMintPreSalePerWallet = 5;
    uint256 public maxMintPublicSalePerWallet = 5;

    //the amount of reserved mints that have currently been executed by creator and giveaways
    uint private _reservedMints;
    
    //the maximum amount of reserved mints allowed for creator and giveaways
    uint private maxReservedMints = 500;
    
    //dummy address that we use to sign the mint transaction to make sure it is valid
    address private dummy = 0x80E4929c869102140E69550BBECC20bEd61B080c;
    
    //Reveal nft or not
    bool public revealed = false;

    // whitelist enable
    bool public whitelistEnable = true;

    //dictates if sale is paused or not
    bool private paused;

    //amount of mints that each address has executed
    mapping(address => uint256) public mintsPerAddressPreSale;
    mapping(address => uint256) public mintsPerAddressPublicSale;
    
    //current state os sale
    enum State {NoSale, PreSale1, PreSale2, PublicSale}
    State public saleState = State.NoSale;

    //defines the uri for when the NFTs have not been yet revealed
    string public unrevealedURI;

    // Royalty
    uint256 public totalEthRoyaltyPayout;

    //stores the amount of nfts that have recieved there payout
    uint public amountOfTokensGotPayout;

    //declaring initial values for variables
    constructor() ERC721A('Unleashedplatinum', 'UP') {
    }
    
    //in case somebody accidentaly sends funds or transaction to contract
    receive() payable external {}
    fallback() payable external {
        revert();
    }
    
    //visualize baseURI
    function _baseURI() internal view virtual override returns (string memory) {
        return _currentBaseURI;
    }
    
    //change baseURI in case needed for IPFS
    function changeBaseURI(string memory baseURI_) public onlyOwner {
        _currentBaseURI = baseURI_;
    }

    function changeUnrevealedURI(string memory unrevealedURI_) public onlyOwner {
        unrevealedURI = unrevealedURI_;
    }

    // for frontend
    function setWhitelistEnable(bool enable) public onlyOwner {
        whitelistEnable = enable;
    }

    function setupPledgeMint(uint256 maxAmount)public onlyOwner {
        amountForPledgeMint = maxAmount;
    }

    function switchToPreSale1(uint256 price, uint maxAmount) public onlyOwner {
        saleState = State.PreSale1;
        mintCostPreSale1 = price;
        amountForPreSale1 = maxAmount;
    }

    function switchToPreSale2(uint256 price, uint maxAmount) public onlyOwner {
        saleState = State.PreSale2;
        mintCostPreSale2 = price;
        amountForPreSale2 = maxAmount;
    }

    function switchToPublicSale(uint256 price, uint maxAmount) public onlyOwner {
        saleState = State.PublicSale;
        mintCostPublicSale = price;
        amountForPublicSale = maxAmount;
    }
    
    function setMaxMintPreSalePerWallet(uint maxAmount) public onlyOwner {
        maxMintPreSalePerWallet = maxAmount;
    }

    function setMaxMintPublicSalePerWallet(uint maxAmount) public onlyOwner {
        maxMintPublicSalePerWallet = maxAmount;
    }

    modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s) {
        require( isValidAccessMessage(msg.sender,_v,_r,_s), 'Invalid Signature' );
        _;
    }
 
    /* 
    * @dev Verifies if message was signed by owner to give access to _add for this contract.
    *      Assumes Geth signature prefix.
    * @param _add Address of agent with access
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    * @return Validity of access message for a given address.
    */
    function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s) view public returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(address(this), _add));
        return dummy == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s);
    }
    
    //mint a @param number of NFTs in presale
    function presaleMint(uint256 number, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v,  _r, _s) public payable nonReentrant{
        require(!paused, "Sale is paused!");
        require(saleState == State.PreSale1 || saleState == State.PreSale2, "PreSale in not open yet!");
        if(saleState == State.PreSale1){
            require(mintedAmountPreSale1 + number <= amountForPreSale1, "Not enough NFTs for PreSale1 left to mint..");
        }else{ 
            require(mintedAmountPreSale2 + number <= amountForPreSale2, "Not enough NFTs for PreSale2 left to mint..");
        }
        require(totalSupply() + number <= maxTotalTokens - (maxReservedMints  - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddressPreSale[msg.sender] + number <= maxMintPreSalePerWallet, "Maximum Mints per Address exceeded!");
        require(msg.value >= mintCost() * number, "Not sufficient Ether to mint this amount of NFTs");
        
        _safeMint(msg.sender, number);

        mintsPerAddressPreSale[msg.sender] += number;
        if(saleState == State.PreSale1){
            mintedAmountPreSale1 += number;
        }else {
            mintedAmountPreSale2 += number;
        }
    }

    //mint a @param number of NFTs in public sale
    function publicSaleMint(uint256 number) public payable nonReentrant{
        require(!paused, "Sale is paused!");
        require(saleState == State.PublicSale, "Public Sale in not open yet!");
        require(mintedAmountPublicSale + number <= amountForPublicSale, "Not enough NFTs for PublicSale left to mint..");
        require(totalSupply() + number <= maxTotalTokens - (maxReservedMints - _reservedMints), "Not enough NFTs left to mint..");
        require(mintsPerAddressPublicSale[msg.sender] + number <= maxMintPublicSalePerWallet, "Maximum Mints per Address exceeded!");
        require(msg.value >= mintCost() * number, "Not sufficient Ether to mint this amount of NFTs");

        _safeMint(msg.sender, number);
        mintsPerAddressPublicSale[msg.sender] += number;
        mintedAmountPublicSale += number;
    }
    
    function tokenURI(uint256 tokenId_) public view virtual override returns (string memory) {
        require(_exists(tokenId_), "ERC721Metadata: URI query for nonexistent token");
        
        if (revealed == false) { // Not revealed yet
            return unrevealedURI;
        }
        else {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId_.toString(), '.json')) : "";
        }    
    }
    
    //reserved NFTs for creator
    function reservedMint(uint number, address recipient) public onlyOwner {
        require(_reservedMints + number <= maxReservedMints, "Not enough Reserved NFTs left to mint..");
        _safeMint(recipient, number);
        _reservedMints += number; 
        
    }
    
    //burn the tokens that have not been sold yet
    function burnUnsoldTokens() public onlyOwner {
        maxTotalTokens = totalSupply();
    }
    
    //retrieve all funds recieved from minting
    function withdrawFund() public onlyOwner {
        uint256 ethFund = address(this).balance;
        require(ethFund > 0, 'No Funds to withdraw, Balance is 0');

        _withdraw(payable(0x0d5Db29128f967dC231600C652d4f87CFaf717E3), ethFund); 
    }
    
    //send the percentage of funds to a shareholder´s wallet
    function _withdraw(address payable account, uint256 amount) internal {
        (bool sent, ) = account.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }
    
    //change the dummy account used for signing transactions
    function changeDummy(address _dummy) public onlyOwner {
        dummy = _dummy;
    }
    
    //to see the total amount of reserved mints left 
    function reservedMintsLeft() public onlyOwner view returns(uint) {
        return maxReservedMints - _reservedMints;
    }

    
    //gets the cost of current mint
    function mintCost() public view returns(uint) {
        if (saleState == State.NoSale || saleState == State.PreSale1) {
            return mintCostPreSale1;
        }
        else if(saleState == State.PreSale2){
            return mintCostPreSale2;
        }
        else {
            return mintCostPublicSale;
        }
    }

    function royaltyPayout(uint number, uint256 payout) public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > number * payout, "Insufficient Funds to pay out Royalties!");
        require(amountOfTokensGotPayout + number <= totalSupply());
        for (uint i; i < number; i++) {
            (bool success, ) = payable(ownerOf(amountOfTokensGotPayout + i)).call{value: payout}("");
            require(success, "Address: unable to send value, recipient may have reverted");
            totalEthRoyaltyPayout += payout;
        }
        if (totalSupply() == amountOfTokensGotPayout + number) {
            amountOfTokensGotPayout = 0;
        }
        else {
            amountOfTokensGotPayout += number;
        }
    }

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

    function isSalePaused() public view returns(bool) {
        return paused;
    }

    //turn the pause on and off
    function toggleSalePause() public onlyOwner {
        paused = !paused;
    }

    //Pledge mint
    address public pledgeContract;

    function setPledgeContract(address _pledgeAddress) public onlyOwner {
        require(pledgeContract == address(0), "Pledge minting contract was setup");
        pledgeContract = _pledgeAddress;
    }

    function pledgeMint(address to, uint256 amount) public {
        require(pledgeContract != address(0) && msg.sender == pledgeContract, "Only pledge contract can do pledge minting");
        _safeMint(to, amount);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"amountForPledgeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForPreSale1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForPreSale2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountForPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountOfTokensGotPayout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnUnsoldTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dummy","type":"address"}],"name":"changeDummy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI_","type":"string"}],"name":"changeUnrevealedURI","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":"isSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPreSalePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPublicSalePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedAmountPreSale1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedAmountPreSale2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintedAmountPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddressPreSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddressPublicSale","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":"pledgeContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"pledgeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"reservedMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedMintsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint256","name":"payout","type":"uint256"}],"name":"royaltyPayout","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum Unleashedplatinum.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"setMaxMintPreSalePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"setMaxMintPublicSalePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pledgeAddress","type":"address"}],"name":"setPledgeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setWhitelistEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"setupPledgeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"switchToPreSale1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"switchToPreSale2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"switchToPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSalePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalEthRoyaltyPayout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405267016345785d8a0000600a819055600b556702c68af0bb140000600c556107d0600d556000600e8190556103e8600f556101f4601081905560118190556012829055601382905560149190915560056015819055601655601855601980546001600160b01b03191675010080e4929c869102140e69550bbecc20bed61b080c179055601c805460ff191690553480156200009d57600080fd5b506040805180820182526011815270556e6c656173686564706c6174696e756d60781b602080830191825283518085019094526002845261055560f41b908401528151919291620000f19160019162000185565b5080516200010790600290602084019062000185565b505050620001246200011e6200012f60201b60201c565b62000133565b600160085562000268565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000193906200022b565b90600052602060002090601f016020900481019282620001b7576000855562000202565b82601f10620001d257805160ff191683800117855562000202565b8280016001018555821562000202579182015b8281111562000202578251825591602001919060010190620001e5565b506200021092915062000214565b5090565b5b8082111562000210576000815560010162000215565b600181811c908216806200024057607f821691505b602082108114156200026257634e487b7160e01b600052602260045260246000fd5b50919050565b6134d580620002786000396000f3fe6080604052600436106103a55760003560e01c80638da5cb5b116101e7578063bdb4b8481161010d578063e07fa3c1116100a0578063e985e9c51161006f578063e985e9c514610a3c578063f2fde38b14610a85578063f71e13a814610aa5578063f722203114610ac557600080fd5b8063e07fa3c1146109db578063e12fcab7146109f0578063e282327e14610a06578063e3b1825314610a2657600080fd5b8063cec4ab9c116100dc578063cec4ab9c1461097b578063d47513de1461099c578063dc9e206f146109b2578063dcd4e732146109c857600080fd5b8063bdb4b84814610906578063c4d8b9df1461091b578063c87b56dd1461093b578063cb155f961461095b57600080fd5b8063a475b5dd11610185578063b3ee44c611610154578063b3ee44c614610890578063b56d2f67146108a6578063b80b7dbb146108c6578063b88d4fde146108e657600080fd5b8063a475b5dd14610825578063acef455e1461083a578063b3ab66b014610850578063b3b9b8b11461086357600080fd5b806398fb0f0a116101c157806398fb0f0a146107af5780639dc74e63146107cf5780639df9ce90146107e5578063a22cb4651461080557600080fd5b80638da5cb5b14610767578063940bb3441461078557806395d89b411461079a57600080fd5b806342842e0e116102cc5780636352211e1161026a57806370a082311161023957806370a08231146106fc578063715018a61461071c5780637b185c331461073157806382cdc73f1461074757600080fd5b80636352211e1461069157806367797bf6146106b1578063702bceba146106d15780637035bf18146106e757600080fd5b806351830227116102a657806351830227146105fc578063557e6cfe1461061d5780635614e6dc1461063d578063603f4d521461066a57600080fd5b806342842e0e146105a75780634520e916146105c75780634f6ccce7146105dc57600080fd5b806318df6403116103445780632f745c59116103135780632f745c5914610527578063326241141461054757806339a0c6f9146105675780633cfe80571461058757600080fd5b806318df6403146104bc57806323b872dd146104dc57806327e8a11a146104fc5780632c6ff0c71461051157600080fd5b806306fdde031161038057806306fdde0314610423578063081812fc14610445578063095ea7b31461047d57806318160ddd1461049d57600080fd5b80628ca816146103b15780630191a657146103e157806301ffc9a71461040357600080fd5b366103ac57005b600080fd5b3480156103bd57600080fd5b50601954600160b01b900460ff165b60405190151581526020015b60405180910390f35b3480156103ed57600080fd5b506104016103fc366004612dd0565b610adb565b005b34801561040f57600080fd5b506103cc61041e366004612e01565b610b30565b34801561042f57600080fd5b50610438610b9d565b6040516103d89190612e76565b34801561045157600080fd5b50610465610460366004612e89565b610c2f565b6040516001600160a01b0390911681526020016103d8565b34801561048957600080fd5b50610401610498366004612ea2565b610cba565b3480156104a957600080fd5b506000545b6040519081526020016103d8565b3480156104c857600080fd5b506104016104d7366004612ecc565b610dd2565b3480156104e857600080fd5b506104016104f7366004612ef8565b610e90565b34801561050857600080fd5b50610401610e9b565b34801561051d57600080fd5b506104ae60145481565b34801561053357600080fd5b506104ae610542366004612ea2565b610ee6565b34801561055357600080fd5b506103cc610562366004612f45565b611043565b34801561057357600080fd5b50610401610582366004613013565b61114f565b34801561059357600080fd5b506104016105a2366004612e89565b611190565b3480156105b357600080fd5b506104016105c2366004612ef8565b6111bf565b3480156105d357600080fd5b506104ae6111da565b3480156105e857600080fd5b506104ae6105f7366004612e89565b61121c565b34801561060857600080fd5b506019546103cc90600160a01b900460ff1681565b34801561062957600080fd5b50602054610465906001600160a01b031681565b34801561064957600080fd5b506104ae610658366004612dd0565b601b6020526000908152604090205481565b34801561067657600080fd5b50601c546106849060ff1681565b6040516103d89190613072565b34801561069d57600080fd5b506104656106ac366004612e89565b61127e565b3480156106bd57600080fd5b506104016106cc366004612e89565b611290565b3480156106dd57600080fd5b506104ae60125481565b3480156106f357600080fd5b506104386112bf565b34801561070857600080fd5b506104ae610717366004612dd0565b61134d565b34801561072857600080fd5b506104016113de565b34801561073d57600080fd5b506104ae60105481565b34801561075357600080fd5b5061040161076236600461309a565b611414565b34801561077357600080fd5b506007546001600160a01b0316610465565b34801561079157600080fd5b50610401611612565b3480156107a657600080fd5b50610438611644565b3480156107bb57600080fd5b506104016107ca36600461309a565b611653565b3480156107db57600080fd5b506104ae60115481565b3480156107f157600080fd5b50610401610800366004612dd0565b611695565b34801561081157600080fd5b506104016108203660046130cc565b611744565b34801561083157600080fd5b50610401611809565b34801561084657600080fd5b506104ae601e5481565b61040161085e366004612e89565b611848565b34801561086f57600080fd5b506104ae61087e366004612dd0565b601a6020526000908152604090205481565b34801561089c57600080fd5b506104ae601f5481565b3480156108b257600080fd5b506104016108c13660046130f6565b611b03565b3480156108d257600080fd5b506104016108e1366004612ea2565b611b4b565b3480156108f257600080fd5b50610401610901366004613111565b611bd8565b34801561091257600080fd5b506104ae611c11565b34801561092757600080fd5b50610401610936366004613013565b611c86565b34801561094757600080fd5b50610438610956366004612e89565b611cc3565b34801561096757600080fd5b5061040161097636600461309a565b611e38565b34801561098757600080fd5b506019546103cc90600160a81b900460ff1681565b3480156109a857600080fd5b506104ae60135481565b3480156109be57600080fd5b506104ae60165481565b6104016109d636600461318d565b611e7a565b3480156109e757600080fd5b5061040161227c565b3480156109fc57600080fd5b506104ae600f5481565b348015610a1257600080fd5b50610401610a21366004612e89565b612320565b348015610a3257600080fd5b506104ae60155481565b348015610a4857600080fd5b506103cc610a573660046131b3565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a9157600080fd5b50610401610aa0366004612dd0565b61234f565b348015610ab157600080fd5b50610401610ac036600461309a565b6123e7565b348015610ad157600080fd5b506104ae600e5481565b6007546001600160a01b03163314610b0e5760405162461bcd60e51b8152600401610b05906131dd565b60405180910390fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480610b6157506001600160e01b03198216635b5e139f60e01b145b80610b7c57506001600160e01b0319821663780e9d6360e01b145b80610b9757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610bac90613212565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd890613212565b8015610c255780601f10610bfa57610100808354040283529160200191610c25565b820191906000526020600020905b815481529060010190602001808311610c0857829003601f168201915b5050505050905090565b6000610c3c826000541190565b610c9e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b05565b506000908152600560205260409020546001600160a01b031690565b6000610cc58261127e565b9050806001600160a01b0316836001600160a01b03161415610d345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b05565b336001600160a01b0382161480610d505750610d508133610a57565b610dc25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b05565b610dcd838383612429565b505050565b6007546001600160a01b03163314610dfc5760405162461bcd60e51b8152600401610b05906131dd565b60185482601754610e0d9190613263565b1115610e6b5760405162461bcd60e51b815260206004820152602760248201527f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f6044820152661036b4b73a171760c91b6064820152608401610b05565b610e758183612485565b8160176000828254610e879190613263565b90915550505050565b610dcd83838361249f565b6007546001600160a01b03163314610ec55760405162461bcd60e51b8152600401610b05906131dd565b6019805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6000610ef18361134d565b8210610f4a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b05565b600080549080805b83811015610fe3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610fa557805192505b876001600160a01b0316836001600160a01b03161415610fda5786841415610fd357509350610b9792505050565b6001909301925b50600101610f52565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b05565b6040516bffffffffffffffffffffffff1930606090811b8216602084015286901b16603482015260009081906048016040516020818303038152906040528051906020012090506001816040516020016110c991907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181528282528051602091820120600084529083018083525260ff881690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611127573d6000803e3d6000fd5b5050604051601f1901516019546001600160a01b03908116911614925050505b949350505050565b6007546001600160a01b031633146111795760405162461bcd60e51b8152600401610b05906131dd565b805161118c906009906020840190612d29565b5050565b6007546001600160a01b031633146111ba5760405162461bcd60e51b8152600401610b05906131dd565b600e55565b610dcd83838360405180602001604052806000815250611bd8565b6007546000906001600160a01b031633146112075760405162461bcd60e51b8152600401610b05906131dd565b601754601854611217919061327b565b905090565b60008054821061127a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b05565b5090565b600061128982612784565b5192915050565b6007546001600160a01b031633146112ba5760405162461bcd60e51b8152600401610b05906131dd565b601555565b601d80546112cc90613212565b80601f01602080910402602001604051908101604052809291908181526020018280546112f890613212565b80156113455780601f1061131a57610100808354040283529160200191611345565b820191906000526020600020905b81548152906001019060200180831161132857829003601f168201915b505050505081565b60006001600160a01b0382166113b95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b05565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146114085760405162461bcd60e51b8152600401610b05906131dd565b611412600061285b565b565b6007546001600160a01b0316331461143e5760405162461bcd60e51b8152600401610b05906131dd565b476114498284613292565b81116114a85760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e742046756e647320746f20706179206f757420526f60448201526779616c746965732160c01b6064820152608401610b05565b60005483601f546114b99190613263565b11156114c457600080fd5b60005b838110156115d45760006114e282601f546106ac9190613263565b6001600160a01b03168460405160006040518083038185875af1925050503d806000811461152c576040519150601f19603f3d011682016040523d82523d6000602084013e611531565b606091505b50509050806115a85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b05565b83601e60008282546115ba9190613263565b909155508291506115cc9050816132b1565b9150506114c7565b5082601f546115e39190613263565b60005414156115f6576000601f55505050565b82601f60008282546116089190613263565b9091555050505050565b6007546001600160a01b0316331461163c5760405162461bcd60e51b8152600401610b05906131dd565b600054600d55565b606060028054610bac90613212565b6007546001600160a01b0316331461167d5760405162461bcd60e51b8152600401610b05906131dd565b601c805460ff19166003179055600c91909155601155565b6007546001600160a01b031633146116bf5760405162461bcd60e51b8152600401610b05906131dd565b6020546001600160a01b0316156117225760405162461bcd60e51b815260206004820152602160248201527f506c65646765206d696e74696e6720636f6e74726163742077617320736574756044820152600760fc1b6064820152608401610b05565b602080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821633141561179d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b05565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146118335760405162461bcd60e51b8152600401610b05906131dd565b6019805460ff60a01b1916600160a01b179055565b6002600854141561189b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b05565b6002600855601954600160b01b900460ff16156118ec5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206973207061757365642160881b6044820152606401610b05565b6003601c5460ff1660038111156119055761190561305c565b146119525760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c6520696e206e6f74206f70656e2079657421000000006044820152606401610b05565b601154816014546119639190613263565b11156119c75760405162461bcd60e51b815260206004820152602d60248201527f4e6f7420656e6f756768204e46547320666f72205075626c696353616c65206c60448201526c32b33a103a379036b4b73a171760991b6064820152608401610b05565b6017546018546119d7919061327b565b600d546119e4919061327b565b816119ee60005490565b6119f89190613263565b1115611a465760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e00006044820152606401610b05565b601654336000908152601b6020526040902054611a64908390613263565b1115611a825760405162461bcd60e51b8152600401610b05906132cc565b80611a8b611c11565b611a959190613292565b341015611ab45760405162461bcd60e51b8152600401610b059061330f565b611abe3382612485565b336000908152601b602052604081208054839290611add908490613263565b925050819055508060146000828254611af69190613263565b9091555050600160085550565b6007546001600160a01b03163314611b2d5760405162461bcd60e51b8152600401610b05906131dd565b60198054911515600160a81b0260ff60a81b19909216919091179055565b6020546001600160a01b031615801590611b6f57506020546001600160a01b031633145b611bce5760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c7920706c6564676520636f6e74726163742063616e20646f20706c65646044820152696765206d696e74696e6760b01b6064820152608401610b05565b61118c8282612485565b611be384848461249f565b611bef848484846128ad565b611c0b5760405162461bcd60e51b8152600401610b059061335f565b50505050565b600080601c5460ff166003811115611c2b57611c2b61305c565b1480611c4d57506001601c5460ff166003811115611c4b57611c4b61305c565b145b15611c595750600a5490565b6002601c5460ff166003811115611c7257611c7261305c565b1415611c7f5750600b5490565b50600c5490565b6007546001600160a01b03163314611cb05760405162461bcd60e51b8152600401610b05906131dd565b805161118c90601d906020840190612d29565b6060611cd0826000541190565b611d345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b05565b601954600160a01b900460ff16611dd757601d8054611d5290613212565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7e90613212565b8015611dcb5780601f10611da057610100808354040283529160200191611dcb565b820191906000526020600020905b815481529060010190602001808311611dae57829003601f168201915b50505050509050919050565b6000611de16129b7565b90506000815111611e015760405180602001604052806000815250611e2c565b80611e0b846129c6565b604051602001611e1c9291906133b2565b6040516020818303038152906040525b9392505050565b919050565b6007546001600160a01b03163314611e625760405162461bcd60e51b8152600401610b05906131dd565b601c805460ff19166002179055600b91909155601055565b828282611e8933848484611043565b611ec95760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610b05565b60026008541415611f1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b05565b6002600855601954600160b01b900460ff1615611f6d5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206973207061757365642160881b6044820152606401610b05565b6001601c5460ff166003811115611f8657611f8661305c565b1480611fa857506002601c5460ff166003811115611fa657611fa661305c565b145b611ff45760405162461bcd60e51b815260206004820152601860248201527f50726553616c6520696e206e6f74206f70656e207965742100000000000000006044820152606401610b05565b6001601c5460ff16600381111561200d5761200d61305c565b141561208b57600f54876012546120249190613263565b11156120865760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f756768204e46547320666f722050726553616c6531206c656660448201526a3a103a379036b4b73a171760a91b6064820152608401610b05565b6120fe565b6010548760135461209c9190613263565b11156120fe5760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f756768204e46547320666f722050726553616c6532206c656660448201526a3a103a379036b4b73a171760a91b6064820152608401610b05565b60175460185461210e919061327b565b600d5461211b919061327b565b8761212560005490565b61212f9190613263565b111561217d5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e00006044820152606401610b05565b601554336000908152601a602052604090205461219b908990613263565b11156121b95760405162461bcd60e51b8152600401610b05906132cc565b866121c2611c11565b6121cc9190613292565b3410156121eb5760405162461bcd60e51b8152600401610b059061330f565b6121f53388612485565b336000908152601a602052604081208054899290612214908490613263565b9091555060019050601c5460ff1660038111156122335761223361305c565b141561225657866012600082825461224b9190613263565b9091555061226e9050565b86601360008282546122689190613263565b90915550505b505060016008555050505050565b6007546001600160a01b031633146122a65760405162461bcd60e51b8152600401610b05906131dd565b47806122ff5760405162461bcd60e51b815260206004820152602260248201527f4e6f2046756e647320746f2077697468647261772c2042616c616e6365206973604482015261020360f41b6064820152608401610b05565b61231d730d5db29128f967dc231600c652d4f87cfaf717e382612ac4565b50565b6007546001600160a01b0316331461234a5760405162461bcd60e51b8152600401610b05906131dd565b601655565b6007546001600160a01b031633146123795760405162461bcd60e51b8152600401610b05906131dd565b6001600160a01b0381166123de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b05565b61231d8161285b565b6007546001600160a01b031633146124115760405162461bcd60e51b8152600401610b05906131dd565b601c805460ff19166001179055600a91909155600f55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61118c828260405180602001604052806000815250612b5e565b60006124aa82612784565b80519091506000906001600160a01b0316336001600160a01b031614806124e15750336124d684610c2f565b6001600160a01b0316145b806124f3575081516124f39033610a57565b90508061255d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b05565b846001600160a01b031682600001516001600160a01b0316146125d15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b05565b6001600160a01b0384166126355760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b05565b6126456000848460000151612429565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661273a576126ed816000541190565b1561273a578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526127a3826000541190565b6128025760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b05565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612851579392505050565b5060001901612804565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156129af57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128f19033908990889088906004016133f1565b602060405180830381600087803b15801561290b57600080fd5b505af192505050801561293b575060408051601f3d908101601f191682019092526129389181019061342e565b60015b612995573d808015612969576040519150601f19603f3d011682016040523d82523d6000602084013e61296e565b606091505b50805161298d5760405162461bcd60e51b8152600401610b059061335f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611147565b506001611147565b606060098054610bac90613212565b6060816129ea5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a1457806129fe816132b1565b9150612a0d9050600a83613461565b91506129ee565b60008167ffffffffffffffff811115612a2f57612a2f612f87565b6040519080825280601f01601f191660200182016040528015612a59576020820181803683370190505b5090505b841561114757612a6e60018361327b565b9150612a7b600a86613475565b612a86906030613263565b60f81b818381518110612a9b57612a9b613489565b60200101906001600160f81b031916908160001a905350612abd600a86613461565b9450612a5d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612b11576040519150601f19603f3d011682016040523d82523d6000602084013e612b16565b606091505b5050905080610dcd5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610b05565b610dcd83838360016000546001600160a01b038516612bc95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b05565b83612c275760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610b05565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015612d205760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612d1457612cf860008884886128ad565b612d145760405162461bcd60e51b8152600401610b059061335f565b60019182019101612ca5565b5060005561277d565b828054612d3590613212565b90600052602060002090601f016020900481019282612d575760008555612d9d565b82601f10612d7057805160ff1916838001178555612d9d565b82800160010185558215612d9d579182015b82811115612d9d578251825591602001919060010190612d82565b5061127a9291505b8082111561127a5760008155600101612da5565b80356001600160a01b0381168114611e3357600080fd5b600060208284031215612de257600080fd5b611e2c82612db9565b6001600160e01b03198116811461231d57600080fd5b600060208284031215612e1357600080fd5b8135611e2c81612deb565b60005b83811015612e39578181015183820152602001612e21565b83811115611c0b5750506000910152565b60008151808452612e62816020860160208601612e1e565b601f01601f19169290920160200192915050565b602081526000611e2c6020830184612e4a565b600060208284031215612e9b57600080fd5b5035919050565b60008060408385031215612eb557600080fd5b612ebe83612db9565b946020939093013593505050565b60008060408385031215612edf57600080fd5b82359150612eef60208401612db9565b90509250929050565b600080600060608486031215612f0d57600080fd5b612f1684612db9565b9250612f2460208501612db9565b9150604084013590509250925092565b803560ff81168114611e3357600080fd5b60008060008060808587031215612f5b57600080fd5b612f6485612db9565b9350612f7260208601612f34565b93969395505050506040820135916060013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612fb857612fb8612f87565b604051601f8501601f19908116603f01168101908282118183101715612fe057612fe0612f87565b81604052809350858152868686011115612ff957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561302557600080fd5b813567ffffffffffffffff81111561303c57600080fd5b8201601f8101841361304d57600080fd5b61114784823560208401612f9d565b634e487b7160e01b600052602160045260246000fd5b602081016004831061309457634e487b7160e01b600052602160045260246000fd5b91905290565b600080604083850312156130ad57600080fd5b50508035926020909101359150565b80358015158114611e3357600080fd5b600080604083850312156130df57600080fd5b6130e883612db9565b9150612eef602084016130bc565b60006020828403121561310857600080fd5b611e2c826130bc565b6000806000806080858703121561312757600080fd5b61313085612db9565b935061313e60208601612db9565b925060408501359150606085013567ffffffffffffffff81111561316157600080fd5b8501601f8101871361317257600080fd5b61318187823560208401612f9d565b91505092959194509250565b600080600080608085870312156131a357600080fd5b84359350612f7260208601612f34565b600080604083850312156131c657600080fd5b6131cf83612db9565b9150612eef60208401612db9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061322657607f821691505b6020821081141561324757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156132765761327661324d565b500190565b60008282101561328d5761328d61324d565b500390565b60008160001904831182151516156132ac576132ac61324d565b500290565b60006000198214156132c5576132c561324d565b5060010190565b60208082526023908201527f4d6178696d756d204d696e74732070657220416464726573732065786365656460408201526265642160e81b606082015260800190565b60208082526030908201527f4e6f742073756666696369656e7420457468657220746f206d696e742074686960408201526f7320616d6f756e74206f66204e46547360801b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516133c4818460208801612e1e565b8351908301906133d8818360208801612e1e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061342490830184612e4a565b9695505050505050565b60006020828403121561344057600080fd5b8151611e2c81612deb565b634e487b7160e01b600052601260045260246000fd5b6000826134705761347061344b565b500490565b6000826134845761348461344b565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122024d487289948fb18bb4b895d72790ed0808d61fa1de7175681b7d995d64c8f8464736f6c63430008090033

Deployed Bytecode

0x6080604052600436106103a55760003560e01c80638da5cb5b116101e7578063bdb4b8481161010d578063e07fa3c1116100a0578063e985e9c51161006f578063e985e9c514610a3c578063f2fde38b14610a85578063f71e13a814610aa5578063f722203114610ac557600080fd5b8063e07fa3c1146109db578063e12fcab7146109f0578063e282327e14610a06578063e3b1825314610a2657600080fd5b8063cec4ab9c116100dc578063cec4ab9c1461097b578063d47513de1461099c578063dc9e206f146109b2578063dcd4e732146109c857600080fd5b8063bdb4b84814610906578063c4d8b9df1461091b578063c87b56dd1461093b578063cb155f961461095b57600080fd5b8063a475b5dd11610185578063b3ee44c611610154578063b3ee44c614610890578063b56d2f67146108a6578063b80b7dbb146108c6578063b88d4fde146108e657600080fd5b8063a475b5dd14610825578063acef455e1461083a578063b3ab66b014610850578063b3b9b8b11461086357600080fd5b806398fb0f0a116101c157806398fb0f0a146107af5780639dc74e63146107cf5780639df9ce90146107e5578063a22cb4651461080557600080fd5b80638da5cb5b14610767578063940bb3441461078557806395d89b411461079a57600080fd5b806342842e0e116102cc5780636352211e1161026a57806370a082311161023957806370a08231146106fc578063715018a61461071c5780637b185c331461073157806382cdc73f1461074757600080fd5b80636352211e1461069157806367797bf6146106b1578063702bceba146106d15780637035bf18146106e757600080fd5b806351830227116102a657806351830227146105fc578063557e6cfe1461061d5780635614e6dc1461063d578063603f4d521461066a57600080fd5b806342842e0e146105a75780634520e916146105c75780634f6ccce7146105dc57600080fd5b806318df6403116103445780632f745c59116103135780632f745c5914610527578063326241141461054757806339a0c6f9146105675780633cfe80571461058757600080fd5b806318df6403146104bc57806323b872dd146104dc57806327e8a11a146104fc5780632c6ff0c71461051157600080fd5b806306fdde031161038057806306fdde0314610423578063081812fc14610445578063095ea7b31461047d57806318160ddd1461049d57600080fd5b80628ca816146103b15780630191a657146103e157806301ffc9a71461040357600080fd5b366103ac57005b600080fd5b3480156103bd57600080fd5b50601954600160b01b900460ff165b60405190151581526020015b60405180910390f35b3480156103ed57600080fd5b506104016103fc366004612dd0565b610adb565b005b34801561040f57600080fd5b506103cc61041e366004612e01565b610b30565b34801561042f57600080fd5b50610438610b9d565b6040516103d89190612e76565b34801561045157600080fd5b50610465610460366004612e89565b610c2f565b6040516001600160a01b0390911681526020016103d8565b34801561048957600080fd5b50610401610498366004612ea2565b610cba565b3480156104a957600080fd5b506000545b6040519081526020016103d8565b3480156104c857600080fd5b506104016104d7366004612ecc565b610dd2565b3480156104e857600080fd5b506104016104f7366004612ef8565b610e90565b34801561050857600080fd5b50610401610e9b565b34801561051d57600080fd5b506104ae60145481565b34801561053357600080fd5b506104ae610542366004612ea2565b610ee6565b34801561055357600080fd5b506103cc610562366004612f45565b611043565b34801561057357600080fd5b50610401610582366004613013565b61114f565b34801561059357600080fd5b506104016105a2366004612e89565b611190565b3480156105b357600080fd5b506104016105c2366004612ef8565b6111bf565b3480156105d357600080fd5b506104ae6111da565b3480156105e857600080fd5b506104ae6105f7366004612e89565b61121c565b34801561060857600080fd5b506019546103cc90600160a01b900460ff1681565b34801561062957600080fd5b50602054610465906001600160a01b031681565b34801561064957600080fd5b506104ae610658366004612dd0565b601b6020526000908152604090205481565b34801561067657600080fd5b50601c546106849060ff1681565b6040516103d89190613072565b34801561069d57600080fd5b506104656106ac366004612e89565b61127e565b3480156106bd57600080fd5b506104016106cc366004612e89565b611290565b3480156106dd57600080fd5b506104ae60125481565b3480156106f357600080fd5b506104386112bf565b34801561070857600080fd5b506104ae610717366004612dd0565b61134d565b34801561072857600080fd5b506104016113de565b34801561073d57600080fd5b506104ae60105481565b34801561075357600080fd5b5061040161076236600461309a565b611414565b34801561077357600080fd5b506007546001600160a01b0316610465565b34801561079157600080fd5b50610401611612565b3480156107a657600080fd5b50610438611644565b3480156107bb57600080fd5b506104016107ca36600461309a565b611653565b3480156107db57600080fd5b506104ae60115481565b3480156107f157600080fd5b50610401610800366004612dd0565b611695565b34801561081157600080fd5b506104016108203660046130cc565b611744565b34801561083157600080fd5b50610401611809565b34801561084657600080fd5b506104ae601e5481565b61040161085e366004612e89565b611848565b34801561086f57600080fd5b506104ae61087e366004612dd0565b601a6020526000908152604090205481565b34801561089c57600080fd5b506104ae601f5481565b3480156108b257600080fd5b506104016108c13660046130f6565b611b03565b3480156108d257600080fd5b506104016108e1366004612ea2565b611b4b565b3480156108f257600080fd5b50610401610901366004613111565b611bd8565b34801561091257600080fd5b506104ae611c11565b34801561092757600080fd5b50610401610936366004613013565b611c86565b34801561094757600080fd5b50610438610956366004612e89565b611cc3565b34801561096757600080fd5b5061040161097636600461309a565b611e38565b34801561098757600080fd5b506019546103cc90600160a81b900460ff1681565b3480156109a857600080fd5b506104ae60135481565b3480156109be57600080fd5b506104ae60165481565b6104016109d636600461318d565b611e7a565b3480156109e757600080fd5b5061040161227c565b3480156109fc57600080fd5b506104ae600f5481565b348015610a1257600080fd5b50610401610a21366004612e89565b612320565b348015610a3257600080fd5b506104ae60155481565b348015610a4857600080fd5b506103cc610a573660046131b3565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b348015610a9157600080fd5b50610401610aa0366004612dd0565b61234f565b348015610ab157600080fd5b50610401610ac036600461309a565b6123e7565b348015610ad157600080fd5b506104ae600e5481565b6007546001600160a01b03163314610b0e5760405162461bcd60e51b8152600401610b05906131dd565b60405180910390fd5b601980546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480610b6157506001600160e01b03198216635b5e139f60e01b145b80610b7c57506001600160e01b0319821663780e9d6360e01b145b80610b9757506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610bac90613212565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd890613212565b8015610c255780601f10610bfa57610100808354040283529160200191610c25565b820191906000526020600020905b815481529060010190602001808311610c0857829003601f168201915b5050505050905090565b6000610c3c826000541190565b610c9e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610b05565b506000908152600560205260409020546001600160a01b031690565b6000610cc58261127e565b9050806001600160a01b0316836001600160a01b03161415610d345760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610b05565b336001600160a01b0382161480610d505750610d508133610a57565b610dc25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610b05565b610dcd838383612429565b505050565b6007546001600160a01b03163314610dfc5760405162461bcd60e51b8152600401610b05906131dd565b60185482601754610e0d9190613263565b1115610e6b5760405162461bcd60e51b815260206004820152602760248201527f4e6f7420656e6f756768205265736572766564204e465473206c65667420746f6044820152661036b4b73a171760c91b6064820152608401610b05565b610e758183612485565b8160176000828254610e879190613263565b90915550505050565b610dcd83838361249f565b6007546001600160a01b03163314610ec55760405162461bcd60e51b8152600401610b05906131dd565b6019805460ff60b01b198116600160b01b9182900460ff1615909102179055565b6000610ef18361134d565b8210610f4a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610b05565b600080549080805b83811015610fe3576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610fa557805192505b876001600160a01b0316836001600160a01b03161415610fda5786841415610fd357509350610b9792505050565b6001909301925b50600101610f52565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610b05565b6040516bffffffffffffffffffffffff1930606090811b8216602084015286901b16603482015260009081906048016040516020818303038152906040528051906020012090506001816040516020016110c991907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181528282528051602091820120600084529083018083525260ff881690820152606081018690526080810185905260a0016020604051602081039080840390855afa158015611127573d6000803e3d6000fd5b5050604051601f1901516019546001600160a01b03908116911614925050505b949350505050565b6007546001600160a01b031633146111795760405162461bcd60e51b8152600401610b05906131dd565b805161118c906009906020840190612d29565b5050565b6007546001600160a01b031633146111ba5760405162461bcd60e51b8152600401610b05906131dd565b600e55565b610dcd83838360405180602001604052806000815250611bd8565b6007546000906001600160a01b031633146112075760405162461bcd60e51b8152600401610b05906131dd565b601754601854611217919061327b565b905090565b60008054821061127a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610b05565b5090565b600061128982612784565b5192915050565b6007546001600160a01b031633146112ba5760405162461bcd60e51b8152600401610b05906131dd565b601555565b601d80546112cc90613212565b80601f01602080910402602001604051908101604052809291908181526020018280546112f890613212565b80156113455780601f1061131a57610100808354040283529160200191611345565b820191906000526020600020905b81548152906001019060200180831161132857829003601f168201915b505050505081565b60006001600160a01b0382166113b95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610b05565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633146114085760405162461bcd60e51b8152600401610b05906131dd565b611412600061285b565b565b6007546001600160a01b0316331461143e5760405162461bcd60e51b8152600401610b05906131dd565b476114498284613292565b81116114a85760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e742046756e647320746f20706179206f757420526f60448201526779616c746965732160c01b6064820152608401610b05565b60005483601f546114b99190613263565b11156114c457600080fd5b60005b838110156115d45760006114e282601f546106ac9190613263565b6001600160a01b03168460405160006040518083038185875af1925050503d806000811461152c576040519150601f19603f3d011682016040523d82523d6000602084013e611531565b606091505b50509050806115a85760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610b05565b83601e60008282546115ba9190613263565b909155508291506115cc9050816132b1565b9150506114c7565b5082601f546115e39190613263565b60005414156115f6576000601f55505050565b82601f60008282546116089190613263565b9091555050505050565b6007546001600160a01b0316331461163c5760405162461bcd60e51b8152600401610b05906131dd565b600054600d55565b606060028054610bac90613212565b6007546001600160a01b0316331461167d5760405162461bcd60e51b8152600401610b05906131dd565b601c805460ff19166003179055600c91909155601155565b6007546001600160a01b031633146116bf5760405162461bcd60e51b8152600401610b05906131dd565b6020546001600160a01b0316156117225760405162461bcd60e51b815260206004820152602160248201527f506c65646765206d696e74696e6720636f6e74726163742077617320736574756044820152600760fc1b6064820152608401610b05565b602080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03821633141561179d5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610b05565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146118335760405162461bcd60e51b8152600401610b05906131dd565b6019805460ff60a01b1916600160a01b179055565b6002600854141561189b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b05565b6002600855601954600160b01b900460ff16156118ec5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206973207061757365642160881b6044820152606401610b05565b6003601c5460ff1660038111156119055761190561305c565b146119525760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632053616c6520696e206e6f74206f70656e2079657421000000006044820152606401610b05565b601154816014546119639190613263565b11156119c75760405162461bcd60e51b815260206004820152602d60248201527f4e6f7420656e6f756768204e46547320666f72205075626c696353616c65206c60448201526c32b33a103a379036b4b73a171760991b6064820152608401610b05565b6017546018546119d7919061327b565b600d546119e4919061327b565b816119ee60005490565b6119f89190613263565b1115611a465760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e00006044820152606401610b05565b601654336000908152601b6020526040902054611a64908390613263565b1115611a825760405162461bcd60e51b8152600401610b05906132cc565b80611a8b611c11565b611a959190613292565b341015611ab45760405162461bcd60e51b8152600401610b059061330f565b611abe3382612485565b336000908152601b602052604081208054839290611add908490613263565b925050819055508060146000828254611af69190613263565b9091555050600160085550565b6007546001600160a01b03163314611b2d5760405162461bcd60e51b8152600401610b05906131dd565b60198054911515600160a81b0260ff60a81b19909216919091179055565b6020546001600160a01b031615801590611b6f57506020546001600160a01b031633145b611bce5760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c7920706c6564676520636f6e74726163742063616e20646f20706c65646044820152696765206d696e74696e6760b01b6064820152608401610b05565b61118c8282612485565b611be384848461249f565b611bef848484846128ad565b611c0b5760405162461bcd60e51b8152600401610b059061335f565b50505050565b600080601c5460ff166003811115611c2b57611c2b61305c565b1480611c4d57506001601c5460ff166003811115611c4b57611c4b61305c565b145b15611c595750600a5490565b6002601c5460ff166003811115611c7257611c7261305c565b1415611c7f5750600b5490565b50600c5490565b6007546001600160a01b03163314611cb05760405162461bcd60e51b8152600401610b05906131dd565b805161118c90601d906020840190612d29565b6060611cd0826000541190565b611d345760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b05565b601954600160a01b900460ff16611dd757601d8054611d5290613212565b80601f0160208091040260200160405190810160405280929190818152602001828054611d7e90613212565b8015611dcb5780601f10611da057610100808354040283529160200191611dcb565b820191906000526020600020905b815481529060010190602001808311611dae57829003601f168201915b50505050509050919050565b6000611de16129b7565b90506000815111611e015760405180602001604052806000815250611e2c565b80611e0b846129c6565b604051602001611e1c9291906133b2565b6040516020818303038152906040525b9392505050565b919050565b6007546001600160a01b03163314611e625760405162461bcd60e51b8152600401610b05906131dd565b601c805460ff19166002179055600b91909155601055565b828282611e8933848484611043565b611ec95760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610b05565b60026008541415611f1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b05565b6002600855601954600160b01b900460ff1615611f6d5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206973207061757365642160881b6044820152606401610b05565b6001601c5460ff166003811115611f8657611f8661305c565b1480611fa857506002601c5460ff166003811115611fa657611fa661305c565b145b611ff45760405162461bcd60e51b815260206004820152601860248201527f50726553616c6520696e206e6f74206f70656e207965742100000000000000006044820152606401610b05565b6001601c5460ff16600381111561200d5761200d61305c565b141561208b57600f54876012546120249190613263565b11156120865760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f756768204e46547320666f722050726553616c6531206c656660448201526a3a103a379036b4b73a171760a91b6064820152608401610b05565b6120fe565b6010548760135461209c9190613263565b11156120fe5760405162461bcd60e51b815260206004820152602b60248201527f4e6f7420656e6f756768204e46547320666f722050726553616c6532206c656660448201526a3a103a379036b4b73a171760a91b6064820152608401610b05565b60175460185461210e919061327b565b600d5461211b919061327b565b8761212560005490565b61212f9190613263565b111561217d5760405162461bcd60e51b815260206004820152601e60248201527f4e6f7420656e6f756768204e465473206c65667420746f206d696e742e2e00006044820152606401610b05565b601554336000908152601a602052604090205461219b908990613263565b11156121b95760405162461bcd60e51b8152600401610b05906132cc565b866121c2611c11565b6121cc9190613292565b3410156121eb5760405162461bcd60e51b8152600401610b059061330f565b6121f53388612485565b336000908152601a602052604081208054899290612214908490613263565b9091555060019050601c5460ff1660038111156122335761223361305c565b141561225657866012600082825461224b9190613263565b9091555061226e9050565b86601360008282546122689190613263565b90915550505b505060016008555050505050565b6007546001600160a01b031633146122a65760405162461bcd60e51b8152600401610b05906131dd565b47806122ff5760405162461bcd60e51b815260206004820152602260248201527f4e6f2046756e647320746f2077697468647261772c2042616c616e6365206973604482015261020360f41b6064820152608401610b05565b61231d730d5db29128f967dc231600c652d4f87cfaf717e382612ac4565b50565b6007546001600160a01b0316331461234a5760405162461bcd60e51b8152600401610b05906131dd565b601655565b6007546001600160a01b031633146123795760405162461bcd60e51b8152600401610b05906131dd565b6001600160a01b0381166123de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b05565b61231d8161285b565b6007546001600160a01b031633146124115760405162461bcd60e51b8152600401610b05906131dd565b601c805460ff19166001179055600a91909155600f55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61118c828260405180602001604052806000815250612b5e565b60006124aa82612784565b80519091506000906001600160a01b0316336001600160a01b031614806124e15750336124d684610c2f565b6001600160a01b0316145b806124f3575081516124f39033610a57565b90508061255d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610b05565b846001600160a01b031682600001516001600160a01b0316146125d15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610b05565b6001600160a01b0384166126355760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610b05565b6126456000848460000151612429565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661273a576126ed816000541190565b1561273a578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526127a3826000541190565b6128025760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610b05565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215612851579392505050565b5060001901612804565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156129af57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906128f19033908990889088906004016133f1565b602060405180830381600087803b15801561290b57600080fd5b505af192505050801561293b575060408051601f3d908101601f191682019092526129389181019061342e565b60015b612995573d808015612969576040519150601f19603f3d011682016040523d82523d6000602084013e61296e565b606091505b50805161298d5760405162461bcd60e51b8152600401610b059061335f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611147565b506001611147565b606060098054610bac90613212565b6060816129ea5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a1457806129fe816132b1565b9150612a0d9050600a83613461565b91506129ee565b60008167ffffffffffffffff811115612a2f57612a2f612f87565b6040519080825280601f01601f191660200182016040528015612a59576020820181803683370190505b5090505b841561114757612a6e60018361327b565b9150612a7b600a86613475565b612a86906030613263565b60f81b818381518110612a9b57612a9b613489565b60200101906001600160f81b031916908160001a905350612abd600a86613461565b9450612a5d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612b11576040519150601f19603f3d011682016040523d82523d6000602084013e612b16565b606091505b5050905080610dcd5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610b05565b610dcd83838360016000546001600160a01b038516612bc95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610b05565b83612c275760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610b05565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015612d205760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612d1457612cf860008884886128ad565b612d145760405162461bcd60e51b8152600401610b059061335f565b60019182019101612ca5565b5060005561277d565b828054612d3590613212565b90600052602060002090601f016020900481019282612d575760008555612d9d565b82601f10612d7057805160ff1916838001178555612d9d565b82800160010185558215612d9d579182015b82811115612d9d578251825591602001919060010190612d82565b5061127a9291505b8082111561127a5760008155600101612da5565b80356001600160a01b0381168114611e3357600080fd5b600060208284031215612de257600080fd5b611e2c82612db9565b6001600160e01b03198116811461231d57600080fd5b600060208284031215612e1357600080fd5b8135611e2c81612deb565b60005b83811015612e39578181015183820152602001612e21565b83811115611c0b5750506000910152565b60008151808452612e62816020860160208601612e1e565b601f01601f19169290920160200192915050565b602081526000611e2c6020830184612e4a565b600060208284031215612e9b57600080fd5b5035919050565b60008060408385031215612eb557600080fd5b612ebe83612db9565b946020939093013593505050565b60008060408385031215612edf57600080fd5b82359150612eef60208401612db9565b90509250929050565b600080600060608486031215612f0d57600080fd5b612f1684612db9565b9250612f2460208501612db9565b9150604084013590509250925092565b803560ff81168114611e3357600080fd5b60008060008060808587031215612f5b57600080fd5b612f6485612db9565b9350612f7260208601612f34565b93969395505050506040820135916060013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612fb857612fb8612f87565b604051601f8501601f19908116603f01168101908282118183101715612fe057612fe0612f87565b81604052809350858152868686011115612ff957600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561302557600080fd5b813567ffffffffffffffff81111561303c57600080fd5b8201601f8101841361304d57600080fd5b61114784823560208401612f9d565b634e487b7160e01b600052602160045260246000fd5b602081016004831061309457634e487b7160e01b600052602160045260246000fd5b91905290565b600080604083850312156130ad57600080fd5b50508035926020909101359150565b80358015158114611e3357600080fd5b600080604083850312156130df57600080fd5b6130e883612db9565b9150612eef602084016130bc565b60006020828403121561310857600080fd5b611e2c826130bc565b6000806000806080858703121561312757600080fd5b61313085612db9565b935061313e60208601612db9565b925060408501359150606085013567ffffffffffffffff81111561316157600080fd5b8501601f8101871361317257600080fd5b61318187823560208401612f9d565b91505092959194509250565b600080600080608085870312156131a357600080fd5b84359350612f7260208601612f34565b600080604083850312156131c657600080fd5b6131cf83612db9565b9150612eef60208401612db9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061322657607f821691505b6020821081141561324757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156132765761327661324d565b500190565b60008282101561328d5761328d61324d565b500390565b60008160001904831182151516156132ac576132ac61324d565b500290565b60006000198214156132c5576132c561324d565b5060010190565b60208082526023908201527f4d6178696d756d204d696e74732070657220416464726573732065786365656460408201526265642160e81b606082015260800190565b60208082526030908201527f4e6f742073756666696369656e7420457468657220746f206d696e742074686960408201526f7320616d6f756e74206f66204e46547360801b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516133c4818460208801612e1e565b8351908301906133d8818360208801612e1e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061342490830184612e4a565b9695505050505050565b60006020828403121561344057600080fd5b8151611e2c81612deb565b634e487b7160e01b600052601260045260246000fd5b6000826134705761347061344b565b500490565b6000826134845761348461344b565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122024d487289948fb18bb4b895d72790ed0808d61fa1de7175681b7d995d64c8f8464736f6c63430008090033

Deployed Bytecode Sourcemap

61845:11094:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;;;;;;;;;;;64396:8;;;61845:11094;;;;;;64396:8;;;72235:82;;;;;;;;;;-1:-1:-1;72303:6:0;;-1:-1:-1;;;72303:6:0;;;;72235:82;;;179:14:1;;172:22;154:41;;142:2;127:18;72235:82:0;;;;;;;;70701:87;;;;;;;;;;-1:-1:-1;70701:87:0;;;;;:::i;:::-;;:::i;:::-;;41706:372;;;;;;;;;;-1:-1:-1;41706:372:0;;;;;:::i;:::-;;:::i;43592:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45154:214::-;;;;;;;;;;-1:-1:-1;45154:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;45154:214:0;1897:203:1;44675:413:0;;;;;;;;;;-1:-1:-1;44675:413:0;;;;;:::i;:::-;;:::i;39955:108::-;;;;;;;;;;-1:-1:-1;40016:7:0;40043:12;39955:108;;;2510:25:1;;;2498:2;2483:18;39955:108:0;2364:177:1;69629:270:0;;;;;;;;;;-1:-1:-1;69629:270:0;;;;;:::i;:::-;;:::i;46030:170::-;;;;;;;;;;-1:-1:-1;46030:170:0;;;;;:::i;:::-;;:::i;72358:79::-;;;;;;;;;;;;;:::i;62703:38::-;;;;;;;;;;;;;;;;40627:1007;;;;;;;;;;-1:-1:-1;40627:1007:0;;;;;:::i;:::-;;:::i;66584:306::-;;;;;;;;;;-1:-1:-1;66584:306:0;;;;;:::i;:::-;;:::i;64623:109::-;;;;;;;;;;-1:-1:-1;64623:109:0;;;;;:::i;:::-;;:::i;65003:110::-;;;;;;;;;;-1:-1:-1;65003:110:0;;;;;:::i;:::-;;:::i;46271:185::-;;;;;;;;;;-1:-1:-1;46271:185:0;;;;;:::i;:::-;;:::i;70855:124::-;;;;;;;;;;;;;:::i;40140:187::-;;;;;;;;;;-1:-1:-1;40140:187:0;;;;;:::i;:::-;;:::i;63361:28::-;;;;;;;;;;-1:-1:-1;63361:28:0;;;;-1:-1:-1;;;63361:28:0;;;;;;72464:29;;;;;;;;;;-1:-1:-1;72464:29:0;;;;-1:-1:-1;;;;;72464:29:0;;;63653:60;;;;;;;;;;-1:-1:-1;63653:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;63812:37;;;;;;;;;;-1:-1:-1;63812:37:0;;;;;;;;;;;;;;;:::i;43401:124::-;;;;;;;;;;-1:-1:-1;43401:124:0;;;;;:::i;:::-;;:::i;65739:123::-;;;;;;;;;;-1:-1:-1;65739:123:0;;;;;:::i;:::-;;:::i;62617:36::-;;;;;;;;;;;;;;;;63926:27;;;;;;;;;;;;;:::i;42142:221::-;;;;;;;;;;-1:-1:-1;42142:221:0;;;;;:::i;:::-;;:::i;4587:94::-;;;;;;;;;;;;;:::i;62531:35::-;;;;;;;;;;;;;;;;71377:773;;;;;;;;;;-1:-1:-1;71377:773:0;;;;;:::i;:::-;;:::i;3936:87::-;;;;;;;;;;-1:-1:-1;4009:6:0;;-1:-1:-1;;;;;4009:6:0;3936:87;;69962:94;;;;;;;;;;;;;:::i;43761:104::-;;;;;;;;;;;;;:::i;65525:202::-;;;;;;;;;;-1:-1:-1;65525:202:0;;;;;:::i;:::-;;:::i;62573:37::-;;;;;;;;;;;;;;;;72502:203;;;;;;;;;;-1:-1:-1;72502:203:0;;;;;:::i;:::-;;:::i;45440:288::-;;;;;;;;;;-1:-1:-1;45440:288:0;;;;;:::i;:::-;;:::i;72158:69::-;;;;;;;;;;;;;:::i;63978:36::-;;;;;;;;;;;;;;;;68240:839;;;;;;:::i;:::-;;:::i;63589:57::-;;;;;;;;;;-1:-1:-1;63589:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;64088:35;;;;;;;;;;;;;;;;64894:101;;;;;;;;;;-1:-1:-1;64894:101:0;;;;;:::i;:::-;;:::i;72713:221::-;;;;;;;;;;-1:-1:-1;72713:221:0;;;;;:::i;:::-;;:::i;46527:355::-;;;;;;;;;;-1:-1:-1;46527:355:0;;;;;:::i;:::-;;:::i;71030:339::-;;;;;;;;;;;;;:::i;64740:125::-;;;;;;;;;;-1:-1:-1;64740:125:0;;;;;:::i;:::-;;:::i;69091:493::-;;;;;;;;;;-1:-1:-1;69091:493:0;;;;;:::i;:::-;;:::i;65323:194::-;;;;;;;;;;-1:-1:-1;65323:194:0;;;;;:::i;:::-;;:::i;63423:34::-;;;;;;;;;;-1:-1:-1;63423:34:0;;;;-1:-1:-1;;;63423:34:0;;;;;;62660:36;;;;;;;;;;;;;;;;62855:45;;;;;;;;;;;;;;;;66949:1232;;;;;;:::i;:::-;;:::i;70116:253::-;;;;;;;;;;;;;:::i;62488:36::-;;;;;;;;;;;;;;;;65870:129;;;;;;;;;;-1:-1:-1;65870:129:0;;;;;:::i;:::-;;:::i;62806:42::-;;;;;;;;;;;;;;;;45799:164;;;;;;;;;;-1:-1:-1;45799:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;45920:25:0;;;45896:4;45920:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45799:164;4836:192;;;;;;;;;;-1:-1:-1;4836:192:0;;;;;:::i;:::-;;:::i;65121:194::-;;;;;;;;;;-1:-1:-1;65121:194:0;;;;;:::i;:::-;;:::i;62446:35::-;;;;;;;;;;;;;;;;70701:87;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;;;;;;;;;70766:5:::1;:14:::0;;-1:-1:-1;;;;;;70766:14:0::1;-1:-1:-1::0;;;;;70766:14:0;;;::::1;::::0;;;::::1;::::0;;70701:87::o;41706:372::-;41808:4;-1:-1:-1;;;;;;41845:40:0;;-1:-1:-1;;;41845:40:0;;:105;;-1:-1:-1;;;;;;;41902:48:0;;-1:-1:-1;;;41902:48:0;41845:105;:172;;;-1:-1:-1;;;;;;;41967:50:0;;-1:-1:-1;;;41967:50:0;41845:172;:225;;;-1:-1:-1;;;;;;;;;;16027:40:0;;;42034:36;41825:245;41706:372;-1:-1:-1;;41706:372:0:o;43592:100::-;43646:13;43679:5;43672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43592:100;:::o;45154:214::-;45222:7;45250:16;45258:7;47194:4;47228:12;-1:-1:-1;47218:22:0;47137:111;45250:16;45242:74;;;;-1:-1:-1;;;45242:74:0;;8536:2:1;45242:74:0;;;8518:21:1;8575:2;8555:18;;;8548:30;8614:34;8594:18;;;8587:62;-1:-1:-1;;;8665:18:1;;;8658:43;8718:19;;45242:74:0;8334:409:1;45242:74:0;-1:-1:-1;45336:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;45336:24:0;;45154:214::o;44675:413::-;44748:13;44764:24;44780:7;44764:15;:24::i;:::-;44748:40;;44813:5;-1:-1:-1;;;;;44807:11:0;:2;-1:-1:-1;;;;;44807:11:0;;;44799:58;;;;-1:-1:-1;;;44799:58:0;;8950:2:1;44799:58:0;;;8932:21:1;8989:2;8969:18;;;8962:30;9028:34;9008:18;;;9001:62;-1:-1:-1;;;9079:18:1;;;9072:32;9121:19;;44799:58:0;8748:398:1;44799:58:0;2804:10;-1:-1:-1;;;;;44892:21:0;;;;:62;;-1:-1:-1;44917:37:0;44934:5;2804:10;45799:164;:::i;44917:37::-;44870:169;;;;-1:-1:-1;;;44870:169:0;;9353:2:1;44870:169:0;;;9335:21:1;9392:2;9372:18;;;9365:30;9431:34;9411:18;;;9404:62;9502:27;9482:18;;;9475:55;9547:19;;44870:169:0;9151:421:1;44870:169:0;45052:28;45061:2;45065:7;45074:5;45052:8;:28::i;:::-;44737:351;44675:413;;:::o;69629:270::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;69746:16:::1;;69736:6;69719:14;;:23;;;;:::i;:::-;:43;;69711:95;;;::::0;-1:-1:-1;;;69711:95:0;;10044:2:1;69711:95:0::1;::::0;::::1;10026:21:1::0;10083:2;10063:18;;;10056:30;10122:34;10102:18;;;10095:62;-1:-1:-1;;;10173:18:1;;;10166:37;10220:19;;69711:95:0::1;9842:403:1::0;69711:95:0::1;69817:28;69827:9;69838:6;69817:9;:28::i;:::-;69874:6;69856:14;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;69629:270:0:o;46030:170::-;46164:28;46174:4;46180:2;46184:7;46164:9;:28::i;72358:79::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;72423:6:::1;::::0;;-1:-1:-1;;;;72413:16:0;::::1;-1:-1:-1::0;;;72423:6:0;;;::::1;;;72422:7;72413:16:::0;;::::1;;::::0;;72358:79::o;40627:1007::-;40716:7;40752:16;40762:5;40752:9;:16::i;:::-;40744:5;:24;40736:71;;;;-1:-1:-1;;;40736:71:0;;10452:2:1;40736:71:0;;;10434:21:1;10491:2;10471:18;;;10464:30;10530:34;10510:18;;;10503:62;-1:-1:-1;;;10581:18:1;;;10574:32;10623:19;;40736:71:0;10250:398:1;40736:71:0;40818:22;40043:12;;;40818:22;;41081:466;41101:14;41097:1;:18;41081:466;;;41141:31;41175:14;;;:11;:14;;;;;;;;;41141:48;;;;;;;;;-1:-1:-1;;;;;41141:48:0;;;;;-1:-1:-1;;;41141:48:0;;;;;;;;;;;;41212:28;41208:111;;41285:14;;;-1:-1:-1;41208:111:0;41362:5;-1:-1:-1;;;;;41341:26:0;:17;-1:-1:-1;;;;;41341:26:0;;41337:195;;;41411:5;41396:11;:20;41392:85;;;-1:-1:-1;41452:1:0;-1:-1:-1;41445:8:0;;-1:-1:-1;;;41445:8:0;41392:85;41499:13;;;;;41337:195;-1:-1:-1;41117:3:0;;41081:466;;;-1:-1:-1;41570:56:0;;-1:-1:-1;;;41570:56:0;;10855:2:1;41570:56:0;;;10837:21:1;10894:2;10874:18;;;10867:30;10933:34;10913:18;;;10906:62;-1:-1:-1;;;10984:18:1;;;10977:44;11038:19;;41570:56:0;10653:410:1;66584:306:0;66725:37;;-1:-1:-1;;66750:4:0;11295:2:1;11291:15;;;11287:24;;66725:37:0;;;11275::1;11346:15;;;11342:24;11328:12;;;11321:46;66683:4:0;;;;11383:12:1;;66725:37:0;;;;;;;;;;;;66715:48;;;;;;66700:63;;66790:92;66863:4;66810:58;;;;;;;11648:66:1;11636:79;;11740:2;11731:12;;11724:28;;;;11777:2;11768:12;;11406:380;66810:58:0;;;;-1:-1:-1;;66810:58:0;;;;;;;;;66800:69;;66810:58;66800:69;;;;66790:92;;;;;;;;;12018:25:1;12091:4;12079:17;;12059:18;;;12052:45;12113:18;;;12106:34;;;12156:18;;;12149:34;;;11990:19;;66790:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66790:92:0;;-1:-1:-1;;66790:92:0;;66781:5;;-1:-1:-1;;;;;66781:5:0;;;:101;;;;-1:-1:-1;;;66584:306:0;;;;;;;:::o;64623:109::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;64698:26;;::::1;::::0;:15:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;64623:109:::0;:::o;65003:110::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;65074:19:::1;:31:::0;65003:110::o;46271:185::-;46409:39;46426:4;46432:2;46436:7;46409:39;;;;;;;;;;;;:16;:39::i;70855:124::-;4009:6;;70914:4;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;70957:14:::1;;70938:16;;:33;;;;:::i;:::-;70931:40;;70855:124:::0;:::o;40140:187::-;40207:7;40043:12;;40235:5;:21;40227:69;;;;-1:-1:-1;;;40227:69:0;;12526:2:1;40227:69:0;;;12508:21:1;12565:2;12545:18;;;12538:30;12604:34;12584:18;;;12577:62;-1:-1:-1;;;12655:18:1;;;12648:33;12698:19;;40227:69:0;12324:399:1;40227:69:0;-1:-1:-1;40314:5:0;40140:187::o;43401:124::-;43465:7;43492:20;43504:7;43492:11;:20::i;:::-;:25;;43401:124;-1:-1:-1;;43401:124:0:o;65739:123::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;65819:23:::1;:35:::0;65739:123::o;63926:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42142:221::-;42206:7;-1:-1:-1;;;;;42234:19:0;;42226:75;;;;-1:-1:-1;;;42226:75:0;;12930:2:1;42226:75:0;;;12912:21:1;12969:2;12949:18;;;12942:30;13008:34;12988:18;;;12981:62;-1:-1:-1;;;13059:18:1;;;13052:41;13110:19;;42226:75:0;12728:407:1;42226:75:0;-1:-1:-1;;;;;;42327:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42327:27:0;;42142:221::o;4587:94::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;4652:21:::1;4670:1;4652:9;:21::i;:::-;4587:94::o:0;71377:773::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;71475:21:::1;71525:15;71534:6:::0;71525;:15:::1;:::i;:::-;71515:7;:25;71507:78;;;::::0;-1:-1:-1;;;71507:78:0;;13515:2:1;71507:78:0::1;::::0;::::1;13497:21:1::0;13554:2;13534:18;;;13527:30;13593:34;13573:18;;;13566:62;-1:-1:-1;;;13644:18:1;;;13637:38;13692:19;;71507:78:0::1;13313:404:1::0;71507:78:0::1;40016:7:::0;40043:12;71630:6:::1;71604:23;;:32;;;;:::i;:::-;:49;;71596:58;;;::::0;::::1;;71670:6;71665:284;71682:6;71678:1;:10;71665:284;;;71711:12;71737:36;71771:1;71745:23;;:27;;;;:::i;71737:36::-;-1:-1:-1::0;;;;;71729:50:0::1;71787:6;71729:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71710:88;;;71821:7;71813:78;;;::::0;-1:-1:-1;;;71813:78:0;;14134:2:1;71813:78:0::1;::::0;::::1;14116:21:1::0;14173:2;14153:18;;;14146:30;14212:34;14192:18;;;14185:62;14283:28;14263:18;;;14256:56;14329:19;;71813:78:0::1;13932:422:1::0;71813:78:0::1;71931:6;71906:21;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;71690:3:0;;-1:-1:-1;71690:3:0::1;::::0;-1:-1:-1;71690:3:0;::::1;:::i;:::-;;;;71665:284;;;;72006:6;71980:23;;:32;;;;:::i;:::-;40016:7:::0;40043:12;71963:49:::1;71959:184;;;72055:1;72029:23;:27:::0;44737:351;44675:413;;:::o;71959:184::-:1;72125:6;72098:23;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;71446:704:0::1;71377:773:::0;;:::o;69962:94::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;40016:7;40043:12;70018:14:::1;:30:::0;69962:94::o;43761:104::-;43817:13;43850:7;43843:14;;;;;:::i;65525:202::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;65612:9:::1;:28:::0;;-1:-1:-1;;65612:28:0::1;65624:16;65612:28;::::0;;65651:18:::1;:26:::0;;;;65688:19:::1;:31:::0;65525:202::o;72502:203::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;72589:14:::1;::::0;-1:-1:-1;;;;;72589:14:0::1;:28:::0;72581:74:::1;;;::::0;-1:-1:-1;;;72581:74:0;;14701:2:1;72581:74:0::1;::::0;::::1;14683:21:1::0;14740:2;14720:18;;;14713:30;14779:34;14759:18;;;14752:62;-1:-1:-1;;;14830:18:1;;;14823:31;14871:19;;72581:74:0::1;14499:397:1::0;72581:74:0::1;72666:14;:31:::0;;-1:-1:-1;;;;;;72666:31:0::1;-1:-1:-1::0;;;;;72666:31:0;;;::::1;::::0;;;::::1;::::0;;72502:203::o;45440:288::-;-1:-1:-1;;;;;45535:24:0;;2804:10;45535:24;;45527:63;;;;-1:-1:-1;;;45527:63:0;;15103:2:1;45527:63:0;;;15085:21:1;15142:2;15122:18;;;15115:30;15181:28;15161:18;;;15154:56;15227:18;;45527:63:0;14901:350:1;45527:63:0;2804:10;45603:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;45603:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;45603:53:0;;;;;;;;;;45672:48;;154:41:1;;;45603:42:0;;2804:10;45672:48;;127:18:1;45672:48:0;;;;;;;45440:288;;:::o;72158:69::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;72204:8:::1;:15:::0;;-1:-1:-1;;;;72204:15:0::1;-1:-1:-1::0;;;72204:15:0::1;::::0;;72158:69::o;68240:839::-;36348:1;36946:7;;:19;;36938:63;;;;-1:-1:-1;;;36938:63:0;;15458:2:1;36938:63:0;;;15440:21:1;15497:2;15477:18;;;15470:30;15536:33;15516:18;;;15509:61;15587:18;;36938:63:0;15256:355:1;36938:63:0;36348:1;37079:7;:18;68327:6:::1;::::0;-1:-1:-1;;;68327:6:0;::::1;;;68326:7;68318:35;;;::::0;-1:-1:-1;;;68318:35:0;;15818:2:1;68318:35:0::1;::::0;::::1;15800:21:1::0;15857:2;15837:18;;;15830:30;-1:-1:-1;;;15876:18:1;;;15869:45;15931:18;;68318:35:0::1;15616:339:1::0;68318:35:0::1;68385:16;68372:9;::::0;::::1;;:29;::::0;::::1;;;;;;:::i;:::-;;68364:70;;;::::0;-1:-1:-1;;;68364:70:0;;16162:2:1;68364:70:0::1;::::0;::::1;16144:21:1::0;16201:2;16181:18;;;16174:30;16240;16220:18;;;16213:58;16288:18;;68364:70:0::1;15960:352:1::0;68364:70:0::1;68488:19;;68478:6;68453:22;;:31;;;;:::i;:::-;:54;;68445:112;;;::::0;-1:-1:-1;;;68445:112:0;;16519:2:1;68445:112:0::1;::::0;::::1;16501:21:1::0;16558:2;16538:18;;;16531:30;16597:34;16577:18;;;16570:62;-1:-1:-1;;;16648:18:1;;;16641:43;16701:19;;68445:112:0::1;16317:409:1::0;68445:112:0::1;68639:14;;68620:16;;:33;;;;:::i;:::-;68602:14;;:52;;;;:::i;:::-;68592:6;68576:13;40016:7:::0;40043:12;;39955:108;68576:13:::1;:22;;;;:::i;:::-;:78;;68568:121;;;::::0;-1:-1:-1;;;68568:121:0;;16933:2:1;68568:121:0::1;::::0;::::1;16915:21:1::0;16972:2;16952:18;;;16945:30;17011:32;16991:18;;;16984:60;17061:18;;68568:121:0::1;16731:354:1::0;68568:121:0::1;68758:26;::::0;68734:10:::1;68708:37;::::0;;;:25:::1;:37;::::0;;;;;:46:::1;::::0;68748:6;;68708:46:::1;:::i;:::-;:76;;68700:124;;;;-1:-1:-1::0;;;68700:124:0::1;;;;;;;:::i;:::-;68869:6;68856:10;:8;:10::i;:::-;:19;;;;:::i;:::-;68843:9;:32;;68835:93;;;;-1:-1:-1::0;;;68835:93:0::1;;;;;;;:::i;:::-;68941:29;68951:10;68963:6;68941:9;:29::i;:::-;69007:10;68981:37;::::0;;;:25:::1;:37;::::0;;;;:47;;69022:6;;68981:37;:47:::1;::::0;69022:6;;68981:47:::1;:::i;:::-;;;;;;;;69065:6;69039:22;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;36304:1:0;37258:7;:22;-1:-1:-1;68240:839:0:o;64894:101::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;64963:15:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;64963:24:0::1;-1:-1:-1::0;;;;64963:24:0;;::::1;::::0;;;::::1;::::0;;64894:101::o;72713:221::-;72787:14;;-1:-1:-1;;;;;72787:14:0;:28;;;;:60;;-1:-1:-1;72833:14:0;;-1:-1:-1;;;;;72833:14:0;72819:10;:28;72787:60;72779:115;;;;-1:-1:-1;;;72779:115:0;;18113:2:1;72779:115:0;;;18095:21:1;18152:2;18132:18;;;18125:30;18191:34;18171:18;;;18164:62;-1:-1:-1;;;18242:18:1;;;18235:40;18292:19;;72779:115:0;17911:406:1;72779:115:0;72905:21;72915:2;72919:6;72905:9;:21::i;46527:355::-;46686:28;46696:4;46702:2;46706:7;46686:9;:28::i;:::-;46747:48;46770:4;46776:2;46780:7;46789:5;46747:22;:48::i;:::-;46725:149;;;;-1:-1:-1;;;46725:149:0;;;;;;;:::i;:::-;46527:355;;;;:::o;71030:339::-;71070:4;;71091:9;;;;:25;;;;;;;;:::i;:::-;;:56;;;-1:-1:-1;71133:14:0;71120:9;;;;:27;;;;;;;;:::i;:::-;;71091:56;71087:275;;;-1:-1:-1;71171:16:0;;;71030:339::o;71087:275::-;71230:14;71217:9;;;;:27;;;;;;;;:::i;:::-;;71214:148;;;-1:-1:-1;71267:16:0;;;71030:339::o;71214:148::-;-1:-1:-1;71332:18:0;;;71030:339::o;64740:125::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;64827:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;69091:493::-:0;69165:13;69199:17;69207:8;47194:4;47228:12;-1:-1:-1;47218:22:0;47137:111;69199:17;69191:77;;;;-1:-1:-1;;;69191:77:0;;18944:2:1;69191:77:0;;;18926:21:1;18983:2;18963:18;;;18956:30;19022:34;19002:18;;;18995:62;-1:-1:-1;;;19073:18:1;;;19066:45;19128:19;;69191:77:0;18742:411:1;69191:77:0;69293:8;;-1:-1:-1;;;69293:8:0;;;;69289:284;;69354:13;69347:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69091:493;;;:::o;69289:284::-;69409:21;69433:10;:8;:10::i;:::-;69409:34;;69489:1;69471:7;69465:21;:25;:96;;;;;;;;;;;;;;;;;69517:7;69526:19;:8;:17;:19::i;:::-;69500:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69465:96;69458:103;69091:493;-1:-1:-1;;;69091:493:0:o;69289:284::-;69091:493;;;:::o;65323:194::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;65408:9:::1;:26:::0;;-1:-1:-1;;65408:26:0::1;65420:14;65408:26;::::0;;65445:16:::1;:24:::0;;;;65480:17:::1;:29:::0;65323:194::o;66949:1232::-;67036:2;67041;67045;66086:41;66107:10;66118:2;66121;66124;66086:20;:41::i;:::-;66077:73;;;;-1:-1:-1;;;66077:73:0;;20002:2:1;66077:73:0;;;19984:21:1;20041:2;20021:18;;;20014:30;-1:-1:-1;;;20060:18:1;;;20053:47;20117:18;;66077:73:0;19800:341:1;66077:73:0;36348:1:::1;36946:7;;:19;;36938:63;;;::::0;-1:-1:-1;;;36938:63:0;;15458:2:1;36938:63:0::1;::::0;::::1;15440:21:1::0;15497:2;15477:18;;;15470:30;15536:33;15516:18;;;15509:61;15587:18;;36938:63:0::1;15256:355:1::0;36938:63:0::1;36348:1;37079:7;:18:::0;67096:6:::2;::::0;-1:-1:-1;;;67096:6:0;::::2;;;67095:7;67087:35;;;::::0;-1:-1:-1;;;67087:35:0;;15818:2:1;67087:35:0::2;::::0;::::2;15800:21:1::0;15857:2;15837:18;;;15830:30;-1:-1:-1;;;15876:18:1;;;15869:45;15931:18;;67087:35:0::2;15616:339:1::0;67087:35:0::2;67154:14;67141:9;::::0;::::2;;:27;::::0;::::2;;;;;;:::i;:::-;;:58;;;-1:-1:-1::0;67185:14:0::2;67172:9;::::0;::::2;;:27;::::0;::::2;;;;;;:::i;:::-;;67141:58;67133:95;;;::::0;-1:-1:-1;;;67133:95:0;;20348:2:1;67133:95:0::2;::::0;::::2;20330:21:1::0;20387:2;20367:18;;;20360:30;20426:26;20406:18;;;20399:54;20470:18;;67133:95:0::2;20146:348:1::0;67133:95:0::2;67255:14;67242:9;::::0;::::2;;:27;::::0;::::2;;;;;;:::i;:::-;;67239:302;;;67326:17;;67316:6;67293:20;;:29;;;;:::i;:::-;:50;;67285:106;;;::::0;-1:-1:-1;;;67285:106:0;;20701:2:1;67285:106:0::2;::::0;::::2;20683:21:1::0;20740:2;20720:18;;;20713:30;20779:34;20759:18;;;20752:62;-1:-1:-1;;;20830:18:1;;;20823:41;20881:19;;67285:106:0::2;20499:407:1::0;67285:106:0::2;67239:302;;;67464:17;;67454:6;67431:20;;:29;;;;:::i;:::-;:50;;67423:106;;;::::0;-1:-1:-1;;;67423:106:0;;21113:2:1;67423:106:0::2;::::0;::::2;21095:21:1::0;21152:2;21132:18;;;21125:30;21191:34;21171:18;;;21164:62;-1:-1:-1;;;21242:18:1;;;21235:41;21293:19;;67423:106:0::2;20911:407:1::0;67423:106:0::2;67623:14;;67603:16;;:34;;;;:::i;:::-;67585:14;;:53;;;;:::i;:::-;67575:6;67559:13;40016:7:::0;40043:12;;39955:108;67559:13:::2;:22;;;;:::i;:::-;:79;;67551:122;;;::::0;-1:-1:-1;;;67551:122:0;;16933:2:1;67551:122:0::2;::::0;::::2;16915:21:1::0;16972:2;16952:18;;;16945:30;17011:32;16991:18;;;16984:60;17061:18;;67551:122:0::2;16731:354:1::0;67551:122:0::2;67739:23;::::0;67715:10:::2;67692:34;::::0;;;:22:::2;:34;::::0;;;;;:43:::2;::::0;67729:6;;67692:43:::2;:::i;:::-;:70;;67684:118;;;;-1:-1:-1::0;;;67684:118:0::2;;;;;;;:::i;:::-;67847:6;67834:10;:8;:10::i;:::-;:19;;;;:::i;:::-;67821:9;:32;;67813:93;;;;-1:-1:-1::0;;;67813:93:0::2;;;;;;;:::i;:::-;67927:29;67937:10;67949:6;67927:9;:29::i;:::-;67992:10;67969:34;::::0;;;:22:::2;:34;::::0;;;;:44;;68007:6;;67969:34;:44:::2;::::0;68007:6;;67969:44:::2;:::i;:::-;::::0;;;-1:-1:-1;68040:14:0::2;::::0;-1:-1:-1;68027:9:0::2;::::0;::::2;;:27;::::0;::::2;;;;;;:::i;:::-;;68024:150;;;68094:6;68070:20;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;68024:150:0::2;::::0;-1:-1:-1;68024:150:0::2;;68156:6;68132:20;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;68024:150:0::2;-1:-1:-1::0;;36304:1:0::1;37258:7;:22:::0;-1:-1:-1;;;;;66949:1232:0:o;70116:253::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;70186:21:::1;70226:11:::0;70218:58:::1;;;::::0;-1:-1:-1;;;70218:58:0;;21525:2:1;70218:58:0::1;::::0;::::1;21507:21:1::0;21564:2;21544:18;;;21537:30;21603:34;21583:18;;;21576:62;-1:-1:-1;;;21654:18:1;;;21647:32;21696:19;;70218:58:0::1;21323:398:1::0;70218:58:0::1;70289:71;70307:42;70352:7;70289:9;:71::i;:::-;70157:212;70116:253::o:0;65870:129::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;65953:26:::1;:38:::0;65870:129::o;4836:192::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4925:22:0;::::1;4917:73;;;::::0;-1:-1:-1;;;4917:73:0;;21928:2:1;4917:73:0::1;::::0;::::1;21910:21:1::0;21967:2;21947:18;;;21940:30;22006:34;21986:18;;;21979:62;-1:-1:-1;;;22057:18:1;;;22050:36;22103:19;;4917:73:0::1;21726:402:1::0;4917:73:0::1;5001:19;5011:8;5001:9;:19::i;65121:194::-:0;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;65206:9:::1;:26:::0;;-1:-1:-1;;65206:26:0::1;65218:14;65206:26;::::0;;65243:16:::1;:24:::0;;;;65278:17:::1;:29:::0;65121:194::o;52057:196::-;52172:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52172:29:0;-1:-1:-1;;;;;52172:29:0;;;;;;;;;52217:28;;52172:24;;52217:28;;;;;;;52057:196;;;:::o;47256:104::-;47325:27;47335:2;47339:8;47325:27;;;;;;;;;;;;:9;:27::i;49937:2002::-;50052:35;50090:20;50102:7;50090:11;:20::i;:::-;50165:18;;50052:58;;-1:-1:-1;50123:22:0;;-1:-1:-1;;;;;50149:34:0;2804:10;-1:-1:-1;;;;;50149:34:0;;:87;;;-1:-1:-1;2804:10:0;50200:20;50212:7;50200:11;:20::i;:::-;-1:-1:-1;;;;;50200:36:0;;50149:87;:154;;;-1:-1:-1;50270:18:0;;50253:50;;2804:10;45799:164;:::i;50253:50::-;50123:181;;50325:17;50317:80;;;;-1:-1:-1;;;50317:80:0;;22335:2:1;50317:80:0;;;22317:21:1;22374:2;22354:18;;;22347:30;22413:34;22393:18;;;22386:62;-1:-1:-1;;;22464:18:1;;;22457:48;22522:19;;50317:80:0;22133:414:1;50317:80:0;50440:4;-1:-1:-1;;;;;50418:26:0;:13;:18;;;-1:-1:-1;;;;;50418:26:0;;50410:77;;;;-1:-1:-1;;;50410:77:0;;22754:2:1;50410:77:0;;;22736:21:1;22793:2;22773:18;;;22766:30;22832:34;22812:18;;;22805:62;-1:-1:-1;;;22883:18:1;;;22876:36;22929:19;;50410:77:0;22552:402:1;50410:77:0;-1:-1:-1;;;;;50506:16:0;;50498:66;;;;-1:-1:-1;;;50498:66:0;;23161:2:1;50498:66:0;;;23143:21:1;23200:2;23180:18;;;23173:30;23239:34;23219:18;;;23212:62;-1:-1:-1;;;23290:18:1;;;23283:35;23335:19;;50498:66:0;22959:401:1;50498:66:0;50685:49;50702:1;50706:7;50715:13;:18;;;50685:8;:49::i;:::-;-1:-1:-1;;;;;51030:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;51030:31:0;;;-1:-1:-1;;;;;51030:31:0;;;-1:-1:-1;;51030:31:0;;;;;;;51076:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;51076:29:0;;;;;;;;;;;;;51122:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;51167:61:0;;;;-1:-1:-1;;;51212:15:0;51167:61;;;;;;51502:11;;;51532:24;;;;;:29;51502:11;;51532:29;51528:295;;51600:20;51608:11;47194:4;47228:12;-1:-1:-1;47218:22:0;47137:111;51600:20;51596:212;;;51677:18;;;51645:24;;;:11;:24;;;;;;;;:50;;51760:28;;;;51718:70;;-1:-1:-1;;;51718:70:0;-1:-1:-1;;;;;;51718:70:0;;;-1:-1:-1;;;;;51645:50:0;;;51718:70;;;;;;;51596:212;51005:829;51870:7;51866:2;-1:-1:-1;;;;;51851:27:0;51860:4;-1:-1:-1;;;;;51851:27:0;;;;;;;;;;;51889:42;50041:1898;;49937:2002;;;:::o;42802:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;42905:16:0;42913:7;47194:4;47228:12;-1:-1:-1;47218:22:0;47137:111;42905:16;42897:71;;;;-1:-1:-1;;;42897:71:0;;23567:2:1;42897:71:0;;;23549:21:1;23606:2;23586:18;;;23579:30;23645:34;23625:18;;;23618:62;-1:-1:-1;;;23696:18:1;;;23689:40;23746:19;;42897:71:0;23365:406:1;42897:71:0;43026:7;43006:245;43073:31;43107:17;;;:11;:17;;;;;;;;;43073:51;;;;;;;;;-1:-1:-1;;;;;43073:51:0;;;;;-1:-1:-1;;;43073:51:0;;;;;;;;;;;;43147:28;43143:93;;43207:9;42802:537;-1:-1:-1;;;42802:537:0:o;43143:93::-;-1:-1:-1;;;43046:6:0;43006:245;;5036:173;5111:6;;;-1:-1:-1;;;;;5128:17:0;;;-1:-1:-1;;;;;;5128:17:0;;;;;;;5161:40;;5111:6;;;5128:17;5111:6;;5161:40;;5092:16;;5161:40;5081:128;5036:173;:::o;52818:804::-;52973:4;-1:-1:-1;;;;;52994:13:0;;6305:20;6353:8;52990:625;;53030:72;;-1:-1:-1;;;53030:72:0;;-1:-1:-1;;;;;53030:36:0;;;;;:72;;2804:10;;53081:4;;53087:7;;53096:5;;53030:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53030:72:0;;;;;;;;-1:-1:-1;;53030:72:0;;;;;;;;;;;;:::i;:::-;;;53026:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53276:13:0;;53272:273;;53319:61;;-1:-1:-1;;;53319:61:0;;;;;;;:::i;53272:273::-;53495:6;53489:13;53480:6;53476:2;53472:15;53465:38;53026:534;-1:-1:-1;;;;;;53153:55:0;-1:-1:-1;;;53153:55:0;;-1:-1:-1;53146:62:0;;52990:625;-1:-1:-1;53599:4:0;53592:11;;64449:116;64509:13;64542:15;64535:22;;;;;:::i;340:723::-;396:13;617:10;613:53;;-1:-1:-1;;644:10:0;;;;;;;;;;;;-1:-1:-1;;;644:10:0;;;;;340:723::o;613:53::-;691:5;676:12;732:78;739:9;;732:78;;765:8;;;;:::i;:::-;;-1:-1:-1;788:10:0;;-1:-1:-1;796:2:0;788:10;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;842:17:0;;820:39;;870:154;877:10;;870:154;;904:11;914:1;904:11;;:::i;:::-;;-1:-1:-1;973:10:0;981:2;973:5;:10;:::i;:::-;960:24;;:2;:24;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;930:56:0;;;;;;;;-1:-1:-1;1001:11:0;1010:2;1001:11;;:::i;:::-;;;870:154;;70444:183;70525:9;70540:7;-1:-1:-1;;;;;70540:12:0;70560:6;70540:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70524:47;;;70590:4;70582:37;;;;-1:-1:-1;;;70582:37:0;;25648:2:1;70582:37:0;;;25630:21:1;25687:2;25667:18;;;25660:30;-1:-1:-1;;;25706:18:1;;;25699:50;25766:18;;70582:37:0;25446:344:1;47723:163:0;47846:32;47852:2;47856:8;47866:5;47873:4;48284:20;48307:12;-1:-1:-1;;;;;48338:16:0;;48330:62;;;;-1:-1:-1;;;48330:62:0;;25997:2:1;48330:62:0;;;25979:21:1;26036:2;26016:18;;;26009:30;26075:34;26055:18;;;26048:62;-1:-1:-1;;;26126:18:1;;;26119:31;26167:19;;48330:62:0;25795:397:1;48330:62:0;48411:13;48403:66;;;;-1:-1:-1;;;48403:66:0;;26399:2:1;48403:66:0;;;26381:21:1;26438:2;26418:18;;;26411:30;26477:34;26457:18;;;26450:62;-1:-1:-1;;;26528:18:1;;;26521:38;26576:19;;48403:66:0;26197:404:1;48403:66:0;-1:-1:-1;;;;;48821:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;48821:45:0;;-1:-1:-1;;;;;48821:45:0;;;;;;;;;;48881:50;;;;;;;;;;;;;;48948:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;48998:66:0;;;;-1:-1:-1;;;49048:15:0;48998:66;;;;;;;48948:25;;49133:415;49153:8;49149:1;:12;49133:415;;;49192:38;;49217:12;;-1:-1:-1;;;;;49192:38:0;;;49209:1;;49192:38;;49209:1;;49192:38;49253:4;49249:249;;;49316:59;49347:1;49351:2;49355:12;49369:5;49316:22;:59::i;:::-;49282:196;;;;-1:-1:-1;;;49282:196:0;;;;;;;:::i;:::-;49518:14;;;;;49163:3;49133:415;;;-1:-1:-1;49564:12:0;:27;49615:60;46527:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;206:173:1;274:20;;-1:-1:-1;;;;;323:31:1;;313:42;;303:70;;369:1;366;359:12;384:186;443:6;496:2;484:9;475:7;471:23;467:32;464:52;;;512:1;509;502:12;464:52;535:29;554:9;535:29;:::i;575:131::-;-1:-1:-1;;;;;;649:32:1;;639:43;;629:71;;696:1;693;686:12;711:245;769:6;822:2;810:9;801:7;797:23;793:32;790:52;;;838:1;835;828:12;790:52;877:9;864:23;896:30;920:5;896:30;:::i;961:258::-;1033:1;1043:113;1057:6;1054:1;1051:13;1043:113;;;1133:11;;;1127:18;1114:11;;;1107:39;1079:2;1072:10;1043:113;;;1174:6;1171:1;1168:13;1165:48;;;-1:-1:-1;;1209:1:1;1191:16;;1184:27;961:258::o;1224:::-;1266:3;1304:5;1298:12;1331:6;1326:3;1319:19;1347:63;1403:6;1396:4;1391:3;1387:14;1380:4;1373:5;1369:16;1347:63;:::i;:::-;1464:2;1443:15;-1:-1:-1;;1439:29:1;1430:39;;;;1471:4;1426:50;;1224:258;-1:-1:-1;;1224:258:1:o;1487:220::-;1636:2;1625:9;1618:21;1599:4;1656:45;1697:2;1686:9;1682:18;1674:6;1656:45;:::i;1712:180::-;1771:6;1824:2;1812:9;1803:7;1799:23;1795:32;1792:52;;;1840:1;1837;1830:12;1792:52;-1:-1:-1;1863:23:1;;1712:180;-1:-1:-1;1712:180:1:o;2105:254::-;2173:6;2181;2234:2;2222:9;2213:7;2209:23;2205:32;2202:52;;;2250:1;2247;2240:12;2202:52;2273:29;2292:9;2273:29;:::i;:::-;2263:39;2349:2;2334:18;;;;2321:32;;-1:-1:-1;;;2105:254:1:o;2546:::-;2614:6;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2727:9;2714:23;2704:33;;2756:38;2790:2;2779:9;2775:18;2756:38;:::i;:::-;2746:48;;2546:254;;;;;:::o;2805:328::-;2882:6;2890;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:38;3072:2;3061:9;3057:18;3038:38;:::i;:::-;3028:48;;3123:2;3112:9;3108:18;3095:32;3085:42;;2805:328;;;;;:::o;3138:156::-;3204:20;;3264:4;3253:16;;3243:27;;3233:55;;3284:1;3281;3274:12;3299:393;3383:6;3391;3399;3407;3460:3;3448:9;3439:7;3435:23;3431:33;3428:53;;;3477:1;3474;3467:12;3428:53;3500:29;3519:9;3500:29;:::i;:::-;3490:39;;3548:36;3580:2;3569:9;3565:18;3548:36;:::i;:::-;3299:393;;3538:46;;-1:-1:-1;;;;3631:2:1;3616:18;;3603:32;;3682:2;3667:18;3654:32;;3299:393::o;3697:127::-;3758:10;3753:3;3749:20;3746:1;3739:31;3789:4;3786:1;3779:15;3813:4;3810:1;3803:15;3829:632;3894:5;3924:18;3965:2;3957:6;3954:14;3951:40;;;3971:18;;:::i;:::-;4046:2;4040:9;4014:2;4100:15;;-1:-1:-1;;4096:24:1;;;4122:2;4092:33;4088:42;4076:55;;;4146:18;;;4166:22;;;4143:46;4140:72;;;4192:18;;:::i;:::-;4232:10;4228:2;4221:22;4261:6;4252:15;;4291:6;4283;4276:22;4331:3;4322:6;4317:3;4313:16;4310:25;4307:45;;;4348:1;4345;4338:12;4307:45;4398:6;4393:3;4386:4;4378:6;4374:17;4361:44;4453:1;4446:4;4437:6;4429;4425:19;4421:30;4414:41;;;;3829:632;;;;;:::o;4466:451::-;4535:6;4588:2;4576:9;4567:7;4563:23;4559:32;4556:52;;;4604:1;4601;4594:12;4556:52;4644:9;4631:23;4677:18;4669:6;4666:30;4663:50;;;4709:1;4706;4699:12;4663:50;4732:22;;4785:4;4777:13;;4773:27;-1:-1:-1;4763:55:1;;4814:1;4811;4804:12;4763:55;4837:74;4903:7;4898:2;4885:16;4880:2;4876;4872:11;4837:74;:::i;4922:127::-;4983:10;4978:3;4974:20;4971:1;4964:31;5014:4;5011:1;5004:15;5038:4;5035:1;5028:15;5054:338;5196:2;5181:18;;5229:1;5218:13;;5208:144;;5274:10;5269:3;5265:20;5262:1;5255:31;5309:4;5306:1;5299:15;5337:4;5334:1;5327:15;5208:144;5361:25;;;5054:338;:::o;5397:248::-;5465:6;5473;5526:2;5514:9;5505:7;5501:23;5497:32;5494:52;;;5542:1;5539;5532:12;5494:52;-1:-1:-1;;5565:23:1;;;5635:2;5620:18;;;5607:32;;-1:-1:-1;5397:248:1:o;5650:160::-;5715:20;;5771:13;;5764:21;5754:32;;5744:60;;5800:1;5797;5790:12;5815:254;5880:6;5888;5941:2;5929:9;5920:7;5916:23;5912:32;5909:52;;;5957:1;5954;5947:12;5909:52;5980:29;5999:9;5980:29;:::i;:::-;5970:39;;6028:35;6059:2;6048:9;6044:18;6028:35;:::i;6074:180::-;6130:6;6183:2;6171:9;6162:7;6158:23;6154:32;6151:52;;;6199:1;6196;6189:12;6151:52;6222:26;6238:9;6222:26;:::i;6259:667::-;6354:6;6362;6370;6378;6431:3;6419:9;6410:7;6406:23;6402:33;6399:53;;;6448:1;6445;6438:12;6399:53;6471:29;6490:9;6471:29;:::i;:::-;6461:39;;6519:38;6553:2;6542:9;6538:18;6519:38;:::i;:::-;6509:48;;6604:2;6593:9;6589:18;6576:32;6566:42;;6659:2;6648:9;6644:18;6631:32;6686:18;6678:6;6675:30;6672:50;;;6718:1;6715;6708:12;6672:50;6741:22;;6794:4;6786:13;;6782:27;-1:-1:-1;6772:55:1;;6823:1;6820;6813:12;6772:55;6846:74;6912:7;6907:2;6894:16;6889:2;6885;6881:11;6846:74;:::i;:::-;6836:84;;;6259:667;;;;;;;:::o;6931:387::-;7015:6;7023;7031;7039;7092:3;7080:9;7071:7;7067:23;7063:33;7060:53;;;7109:1;7106;7099:12;7060:53;7145:9;7132:23;7122:33;;7174:36;7206:2;7195:9;7191:18;7174:36;:::i;7323:260::-;7391:6;7399;7452:2;7440:9;7431:7;7427:23;7423:32;7420:52;;;7468:1;7465;7458:12;7420:52;7491:29;7510:9;7491:29;:::i;:::-;7481:39;;7539:38;7573:2;7562:9;7558:18;7539:38;:::i;7588:356::-;7790:2;7772:21;;;7809:18;;;7802:30;7868:34;7863:2;7848:18;;7841:62;7935:2;7920:18;;7588:356::o;7949:380::-;8028:1;8024:12;;;;8071;;;8092:61;;8146:4;8138:6;8134:17;8124:27;;8092:61;8199:2;8191:6;8188:14;8168:18;8165:38;8162:161;;;8245:10;8240:3;8236:20;8233:1;8226:31;8280:4;8277:1;8270:15;8308:4;8305:1;8298:15;8162:161;;7949:380;;;:::o;9577:127::-;9638:10;9633:3;9629:20;9626:1;9619:31;9669:4;9666:1;9659:15;9693:4;9690:1;9683:15;9709:128;9749:3;9780:1;9776:6;9773:1;9770:13;9767:39;;;9786:18;;:::i;:::-;-1:-1:-1;9822:9:1;;9709:128::o;12194:125::-;12234:4;12262:1;12259;12256:8;12253:34;;;12267:18;;:::i;:::-;-1:-1:-1;12304:9:1;;12194:125::o;13140:168::-;13180:7;13246:1;13242;13238:6;13234:14;13231:1;13228:21;13223:1;13216:9;13209:17;13205:45;13202:71;;;13253:18;;:::i;:::-;-1:-1:-1;13293:9:1;;13140:168::o;14359:135::-;14398:3;-1:-1:-1;;14419:17:1;;14416:43;;;14439:18;;:::i;:::-;-1:-1:-1;14486:1:1;14475:13;;14359:135::o;17090:399::-;17292:2;17274:21;;;17331:2;17311:18;;;17304:30;17370:34;17365:2;17350:18;;17343:62;-1:-1:-1;;;17436:2:1;17421:18;;17414:33;17479:3;17464:19;;17090:399::o;17494:412::-;17696:2;17678:21;;;17735:2;17715:18;;;17708:30;17774:34;17769:2;17754:18;;17747:62;-1:-1:-1;;;17840:2:1;17825:18;;17818:46;17896:3;17881:19;;17494:412::o;18322:415::-;18524:2;18506:21;;;18563:2;18543:18;;;18536:30;18602:34;18597:2;18582:18;;18575:62;-1:-1:-1;;;18668:2:1;18653:18;;18646:49;18727:3;18712:19;;18322:415::o;19158:637::-;19438:3;19476:6;19470:13;19492:53;19538:6;19533:3;19526:4;19518:6;19514:17;19492:53;:::i;:::-;19608:13;;19567:16;;;;19630:57;19608:13;19567:16;19664:4;19652:17;;19630:57;:::i;:::-;-1:-1:-1;;;19709:20:1;;19738:22;;;19787:1;19776:13;;19158:637;-1:-1:-1;;;;19158:637:1:o;24192:489::-;-1:-1:-1;;;;;24461:15:1;;;24443:34;;24513:15;;24508:2;24493:18;;24486:43;24560:2;24545:18;;24538:34;;;24608:3;24603:2;24588:18;;24581:31;;;24386:4;;24629:46;;24655:19;;24647:6;24629:46;:::i;:::-;24621:54;24192:489;-1:-1:-1;;;;;;24192:489:1:o;24686:249::-;24755:6;24808:2;24796:9;24787:7;24783:23;24779:32;24776:52;;;24824:1;24821;24814:12;24776:52;24856:9;24850:16;24875:30;24899:5;24875:30;:::i;24940:127::-;25001:10;24996:3;24992:20;24989:1;24982:31;25032:4;25029:1;25022:15;25056:4;25053:1;25046:15;25072:120;25112:1;25138;25128:35;;25143:18;;:::i;:::-;-1:-1:-1;25177:9:1;;25072:120::o;25197:112::-;25229:1;25255;25245:35;;25260:18;;:::i;:::-;-1:-1:-1;25294:9:1;;25197:112::o;25314:127::-;25375:10;25370:3;25366:20;25363:1;25356:31;25406:4;25403:1;25396:15;25430:4;25427:1;25420:15

Swarm Source

ipfs://24d487289948fb18bb4b895d72790ed0808d61fa1de7175681b7d995d64c8f84

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.