ETH Price: $2,633.33 (+2.17%)
Gas: 0.94 Gwei

Token

DRAGONSAGA (SAGA)
 

Overview

Max Total Supply

553 SAGA

Holders

265

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SAGA
0xe547490fd7d2d00d47e221b026650e54838ed057
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DragonSaga

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MPL-2.0 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-23
*/

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/5_dragon.sol

pragma solidity >= 0.8.0;




/*
                          ,     \    /      ,
                         / \    )\__/(     / \
                        /   \  (_\  /_)   /   \
     __________________/_____\__\@  @/___/_____\_________________
     |                          |\../|                          |
     |                           \VV/                           |
     |                                                          |
     |                       DRAGON SAGA                        |
     |                                                          |
     |                                                          |
     |__________________________________________________________|
                   |    /\ /      \\       \ /\    |
                   |  /   V        ))       V   \  |
                   |/     `       //        '     \|
                   `              V                '
*/
contract DragonSaga is ERC721, ERC721Enumerable, Ownable {
    uint256 public constant MAXSUPPLY = 10000;
    uint256 public constant RESERVE = 100;
    uint256 public constant MAX_PER_PRESALE_TRANSACTION = 3;
    uint256 public constant MAX_PER_RESERVE_TRANSACTION = 5;
    uint256 public constant MAX_PER_PUBLIC_TRANSACTION  = 5;
    uint256 public constant MAX_PRESALE = 1500;
    uint256 private constant PRICE = 0.08 ether; 

    // launch dates - unix timestamp
    uint256 private _presaleDate = 0;
    uint256 private _reserveDate = 0;
    uint256 private _publicDate  = 0;

    // tokenURI for metadata
    string private _tokenURI = "";

    // presale whitelist logic 
    uint256 public presaleAllowedCount = 0;
    mapping(address => bool) presaleAddressAllowed;
    mapping(address => uint256) presaleAddressMinted;

    // reservation logic
    uint256 public reservationAllowedCount = 0;
    mapping(address => uint256) reservationAddressAllowed;
    mapping(address => uint256) reservationAddressMinted;

    // public sale logic
    mapping(address => uint256) publicAddressMinted;

    // Team wallet addresses for withdrawal.
    address public a1;
    address public a2;
    address public a3;
    address public a4;

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    
    /**
     * Modifiers
     */

    // ensures that the max presale can't be over the limit
    modifier checkIfPresaleCapped(uint256 _amount) {
        require(presaleAllowedCount + _amount <= MAX_PRESALE, "Adding more will exceed presale total supply");
        _;
    }

    // checks if the presale is active.
    modifier checkIfPresaleSaleActive(){
        require(block.timestamp >= _presaleDate && _presaleDate > 0, "Presale Sale hasn't started yet!");
        require(block.timestamp < _reserveDate && _reserveDate > 0, "Presale has ended!");
        _;
    }

    // checks if the reserve sale is active.
    modifier checkIfReserveSaleActive() {
        require(block.timestamp >= _reserveDate && _reserveDate > 0, "Reserve sale hasn't started yet!");
        require(block.timestamp < _publicDate && _publicDate > 0, "Reserve sale has ended!");
        _;
    }

    // checks if the public sale is active.
    modifier checkIfPublicSaleActive(){
        require(block.timestamp >= _publicDate && _publicDate > 0, "Public sale hasn't started yet!");
        _;
    }


    constructor(string memory tokenURI) ERC721("DRAGONSAGA", "SAGA") {
        setBaseURI(tokenURI);
        _tokenURI = tokenURI;
    }


    // Override so the openzeppelin tokenURI() method will use this method to create the full tokenURI instead
    function _baseURI() internal view virtual override returns (string memory) {
        return _tokenURI;
    }

    /**
     * sets the token uri for the metadata after mint
     *
     * @param baseURI metadata api url
     */
    function setBaseURI(string memory baseURI) public onlyOwner {
        _tokenURI = baseURI;
    }

    /**
     * Set withdrawal addresses. 
     */
    function setAddresses(address[] memory _a) public onlyOwner {
        a1 = _a[0];
        a2 = _a[1];
        a3 = _a[2];
        a4 = _a[3];
    }

    /**
     * Withdraw holdings and pay the hard working team.
     */
    function withdrawToTeam(uint256 amount) public payable onlyOwner {

        uint256 percent = amount / 100;
        
        // Give each member their share.
        require(payable(a1).send(percent * 25));
        require(payable(a2).send(percent * 25));
        require(payable(a3).send(percent * 25));
        require(payable(a4).send(percent * 25));
    }

    /**
     * Funny man
     */
    function emergencyWithdraw() public pure returns (string memory){
        return "https://tenor.com/view/jake-jake-the-dog-funny-laugh-laughing-gif-5372688"; // LOL, just kidding.
    }

    /**
     * set the presale, public, or reserve launch date
     * 
     * @param timestamp unix formatted
     * @param group 0 for public launch
     */
    function setLaunchDate(uint256 timestamp, uint256 group) public onlyOwner {
        if (group == 0) {
            _presaleDate = timestamp;
        }
        if (group == 1){
            _reserveDate = timestamp;
        }
        if (group == 2){
            _publicDate = timestamp;
        }
    }

    /**
     * adds a bulk array of address to the presale list
     * 
     * @param _list group of addresses
     */
    function addListToPresale(address[] memory _list) public onlyOwner checkIfPresaleCapped(_list.length) {
        for (uint256 i; i < _list.length; i++) {
            presaleAddressAllowed[_list[i]] = true;
            presaleAllowedCount += 1;
        }
    }

    /**
     * adds a bulk array of address to the reservation list
     *
     * @param _list group of addresses
     */
    function addListToReservation(address[] memory _list, uint256[] memory _amount) public onlyOwner {
        for (uint256 i; i < _list.length; i++) {
            reservationAddressAllowed[_list[i]] = _amount[i];
            reservationAllowedCount += 1;
        }
    }

    /**
     * Minting functions.
     */

    /**
     * reserves the dragons for giveaways, community events, and team
     *
     * @param _amount the amount we're minting
     */
    function reserveDragons(uint256 _amount) public onlyOwner {
        uint256 amountOfTokens = balanceOf(msg.sender);
        uint256 totalSupply = totalSupply();

        require(_amount <= RESERVE, "Your amount exceeds the reserve supply!");
        require(_amount + amountOfTokens <= RESERVE, "Your amount plus your balance exceeds the reserve supply!");

        for (uint256 i; i < _amount; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    /**
     * this is the mint function for presale release
     *
     * @param _amount the amount we're minting
     */
    function mintPresale(uint256 _amount) public payable checkIfPresaleSaleActive {
        
        uint256 totalSupply = totalSupply();

        require(_amount <= MAX_PER_PRESALE_TRANSACTION, "Your amount exceeds presale transaction limit!");
        require(presaleAddressAllowed[msg.sender] == true, "You're not whitelisted for presale!");
        require(presaleAddressMinted[msg.sender] < 1, "You already purchased during presale!");
        require(presaleAddressMinted[msg.sender] + _amount <= MAX_PER_PRESALE_TRANSACTION, "You already purchased during presale!");
        require(PRICE * _amount <= msg.value, "Transaction value is too low");
        require(totalSupply + _amount + RESERVE <= MAXSUPPLY, "You can not mint more than the max supply" );

        for (uint256 i;i < _amount;i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        presaleAddressMinted[msg.sender] += _amount;
    }

    /**
     * Let the user mint from the amount reserved.
     *
     * @param _amount the amount we're minting
     */
    function mintReservation(uint256 _amount) public payable checkIfReserveSaleActive {
        
        uint256 totalSupply = totalSupply();
        uint256 reservedAmount = reservationAddressAllowed[msg.sender];

        require(reservationAddressMinted[msg.sender] < 1, "You already minted your reserved amount!");
        require(reservedAmount > 0, "You're address is not reserved!");
        require(_amount == reservedAmount, "You have to mint the number reserved to you.");
        require(PRICE * _amount <= msg.value, "Transaction value is too low");
        require(totalSupply + _amount + RESERVE <= MAXSUPPLY, "You can not mint more than the max supply" );

        for (uint256 i;i < _amount;i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        reservationAddressMinted[msg.sender] += _amount;
    }

    /**
     * Let the user mint from our public
     *
     * @param _amount the amount we're minting
     */
    function mintPublic(uint256 _amount) public payable checkIfPublicSaleActive {
        
        uint256 totalSupply = totalSupply();

        require(_amount > 0, "You have to mint at least 1.");
        require(_amount <= MAX_PER_PUBLIC_TRANSACTION, "You cannot mint more then 5 per request.");
        require(PRICE * _amount <= msg.value, "Transaction value is too low");
        require(totalSupply + _amount + RESERVE <= MAXSUPPLY, "You can not mint more than the max supply" );
        
        for (uint256 i;i < _amount;i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        publicAddressMinted[msg.sender] += _amount;
    }



    /**
     * Helper functions.
     */
     
    // checks if the address provided is part of the presale
    function checkPresaleAddress(address _address) public view returns (bool) {
        return presaleAddressAllowed[_address];
    }

    // Checks if the address provided is part of the reserved list
    function checkReservationAddress(address _address) public view returns (uint256) {
        return reservationAddressAllowed[_address];
    }

    // Gets the tokens owned by the address provided and returns it
    function getTokensFromAddress(address _address) public view returns (uint256[] memory) {
        uint256 amountOfTokens = balanceOf(_address);

        if (amountOfTokens == 0) {
            return new uint256[](0);
        }

        uint256[] memory tokens = new uint256[](amountOfTokens);

        for (uint256 i; i < amountOfTokens;i++) {
            tokens[i] = tokenOfOwnerByIndex(_address, i);
        }

        return tokens;
    }
    
    /**
     * Getter functions
     */
    function getPresaleDate() public view returns (uint256) { return _presaleDate; }
    function getReserveDate() public view returns (uint256) { return _reserveDate; }
    function getPublicDate()  public view returns (uint256) { return _publicDate;  }

    // Get the max per transaction
    function getMaxPerPresale() public pure returns (uint256) { return MAX_PER_PRESALE_TRANSACTION; }
    function getMaxPerReserve() public pure returns (uint256) { return MAX_PER_RESERVE_TRANSACTION; }
    function getMaxPerPublic()  public pure returns (uint256) { return MAX_PER_PUBLIC_TRANSACTION;  }

    // get the price for each token
    function getPrice() public pure returns (uint256) { return PRICE; }

    // returns the amount of addresses in the presale
    function getPresaleAddressCount() public view returns (uint256) { return presaleAllowedCount; }

    // returns the amount of address in the reservation
    function getReservationAddressCount() public view returns (uint256) { return reservationAllowedCount; }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAXSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_PRESALE_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_PUBLIC_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_RESERVE_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list","type":"address[]"}],"name":"addListToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"addListToReservation","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkPresaleAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkReservationAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxPerPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMaxPerPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMaxPerReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getPresaleAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPresaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getPublicDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservationAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getTokensFromAddress","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintReservation","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleAllowedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservationAllowedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserveDragons","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"}],"name":"setAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"group","type":"uint256"}],"name":"setLaunchDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawToTeam","outputs":[],"stateMutability":"payable","type":"function"}]

6000600b819055600c819055600d81905560a0604081905260808290526200002b91600e9190620001dd565b506000600f5560006012553480156200004357600080fd5b506040516200368038038062003680833981016040819052620000669162000283565b604080518082018252600a815269445241474f4e5341474160b01b6020808301918252835180850190945260048452635341474160e01b908401528151919291620000b491600091620001dd565b508051620000ca906001906020840190620001dd565b505050620000e7620000e16200010f60201b60201c565b62000113565b620000f28162000165565b80516200010790600e906020840190620001dd565b5050620003b2565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d990600e906020840190620001dd565b5050565b828054620001eb906200035f565b90600052602060002090601f0160209004810192826200020f57600085556200025a565b82601f106200022a57805160ff19168380011785556200025a565b828001600101855582156200025a579182015b828111156200025a5782518255916020019190600101906200023d565b50620002689291506200026c565b5090565b5b808211156200026857600081556001016200026d565b600060208083850312156200029757600080fd5b82516001600160401b0380821115620002af57600080fd5b818501915085601f830112620002c457600080fd5b815181811115620002d957620002d96200039c565b604051601f8201601f19908116603f011681019083821181831017156200030457620003046200039c565b8160405282815288868487010111156200031d57600080fd5b600093505b8284101562000341578484018601518185018701529285019262000322565b82841115620003535760008684830101525b98975050505050505050565b600181811c908216806200037457607f821691505b602082108114156200039657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6132be80620003c26000396000f3fe6080604052600436106103355760003560e01c806388060db7116101ab578063c3502dd7116100f7578063e985e9c511610095578063f74ea4181161006f578063f74ea418146108f2578063f759867a14610912578063f9fa9af114610925578063fcb2e86e1461093b57600080fd5b8063e985e9c514610876578063efd0cbf9146108bf578063f2fde38b146108d257600080fd5b8063cdea3b11116100d1578063cdea3b11146107cc578063d77da4f414610839578063da66e4a41461084c578063db2e21bc1461086157600080fd5b8063c3502dd7146107cc578063c87b56dd146107e0578063ca9640b81461080057600080fd5b806398d5fdca11610164578063b152a8b21161013e578063b152a8b21461074c578063b58ed5611461076c578063b88d4fde1461078c578063b9571721146107ac57600080fd5b806398d5fdca146106fc5780639d2cc43614610717578063a22cb4651461072c57600080fd5b806388060db7146106545780638da5cb5b1461066957806390e44774146106875780639426eef8146106a757806395d89b41146106c7578063969e9d0c146106dc57600080fd5b8063275afeb9116102855780634f6ccce7116102235780636352211e116101fd5780636352211e146105e957806370a0823114610609578063715018a614610629578063758b4e861461063e57600080fd5b80634f6ccce7146105735780635561e9071461059357806355f804b3146105c957600080fd5b80633c2fd7901161025f5780633c2fd79014610514578063420b15301461052857806342842e0e1461053d5780634d4c4e991461055d57600080fd5b8063275afeb91461041f5780632f745c59146104c7578063360d506f146104e757600080fd5b806309bf600e116102f257806318160ddd116102cc57806318160ddd1461046a5780631b49a3c91461047f5780631c72a1841461049257806323b872dd146104a757600080fd5b806309bf600e1461041f578063101f957114610434578063119552a11461044a57600080fd5b806301ffc9a71461033a578063066796d51461036f57806306fdde031461038e578063070cdbc9146103b0578063081812fc146103c5578063095ea7b3146103fd575b600080fd5b34801561034657600080fd5b5061035a610355366004612d24565b61095b565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b506012545b604051908152602001610366565b34801561039a57600080fd5b506103a361096c565b6040516103669190612ebe565b3480156103bc57600080fd5b50600d54610380565b3480156103d157600080fd5b506103e56103e0366004612da7565b6109fe565b6040516001600160a01b039091168152602001610366565b34801561040957600080fd5b5061041d610418366004612c03565b610a98565b005b34801561042b57600080fd5b50610380600581565b34801561044057600080fd5b50610380600f5481565b34801561045657600080fd5b506016546103e5906001600160a01b031681565b34801561047657600080fd5b50600854610380565b61041d61048d366004612da7565b610bae565b34801561049e57600080fd5b50600c54610380565b3480156104b357600080fd5b5061041d6104c2366004612b0f565b610e6e565b3480156104d357600080fd5b506103806104e2366004612c03565b610e9f565b3480156104f357600080fd5b50610507610502366004612ac1565b610f35565b6040516103669190612e7a565b34801561052057600080fd5b506003610380565b34801561053457600080fd5b50600f54610380565b34801561054957600080fd5b5061041d610558366004612b0f565b610fee565b34801561056957600080fd5b506103806105dc81565b34801561057f57600080fd5b5061038061058e366004612da7565b611009565b34801561059f57600080fd5b506103806105ae366004612ac1565b6001600160a01b031660009081526013602052604090205490565b3480156105d557600080fd5b5061041d6105e4366004612d5e565b61109c565b3480156105f557600080fd5b506103e5610604366004612da7565b6110dd565b34801561061557600080fd5b50610380610624366004612ac1565b611154565b34801561063557600080fd5b5061041d6111db565b34801561064a57600080fd5b5061038061271081565b34801561066057600080fd5b50610380600381565b34801561067557600080fd5b50600a546001600160a01b03166103e5565b34801561069357600080fd5b5061041d6106a2366004612c2d565b611211565b3480156106b357600080fd5b506018546103e5906001600160a01b031681565b3480156106d357600080fd5b506103a361133f565b3480156106e857600080fd5b506017546103e5906001600160a01b031681565b34801561070857600080fd5b5067011c37937e080000610380565b34801561072357600080fd5b50610380606481565b34801561073857600080fd5b5061041d610747366004612bc7565b61134e565b34801561075857600080fd5b5061041d610767366004612da7565b611413565b34801561077857600080fd5b5061041d610787366004612c62565b611569565b34801561079857600080fd5b5061041d6107a7366004612b4b565b611626565b3480156107b857600080fd5b5061041d6107c7366004612c2d565b611658565b3480156107d857600080fd5b506005610380565b3480156107ec57600080fd5b506103a36107fb366004612da7565b611789565b34801561080c57600080fd5b5061035a61081b366004612ac1565b6001600160a01b031660009081526010602052604090205460ff1690565b61041d610847366004612da7565b611864565b34801561085857600080fd5b50600b54610380565b34801561086d57600080fd5b506103a3611989565b34801561088257600080fd5b5061035a610891366004612adc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61041d6108cd366004612da7565b6119a9565b3480156108de57600080fd5b5061041d6108ed366004612ac1565b611b84565b3480156108fe57600080fd5b506019546103e5906001600160a01b031681565b61041d610920366004612da7565b611c1f565b34801561093157600080fd5b5061038060125481565b34801561094757600080fd5b5061041d610956366004612dc0565b611ed6565b600061096682611f29565b92915050565b60606000805461097b90613151565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790613151565b80156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a7c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610aa3826110dd565b9050806001600160a01b0316836001600160a01b03161415610b115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a73565b336001600160a01b0382161480610b2d5750610b2d8133610891565b610b9f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a73565b610ba98383611f4e565b505050565b600c544210158015610bc257506000600c54115b610c0e5760405162461bcd60e51b815260206004820181905260248201527f526573657276652073616c65206861736e2774207374617274656420796574216044820152606401610a73565b600d5442108015610c2157506000600d54115b610c6d5760405162461bcd60e51b815260206004820152601760248201527f526573657276652073616c652068617320656e646564210000000000000000006044820152606401610a73565b6000610c7860085490565b3360009081526013602090815260408083205460149092529091205491925090600111610cf85760405162461bcd60e51b815260206004820152602860248201527f596f7520616c7265616479206d696e74656420796f757220726573657276656460448201526720616d6f756e742160c01b6064820152608401610a73565b60008111610d485760405162461bcd60e51b815260206004820152601f60248201527f596f752772652061646472657373206973206e6f7420726573657276656421006044820152606401610a73565b808314610dac5760405162461bcd60e51b815260206004820152602c60248201527f596f75206861766520746f206d696e7420746865206e756d626572207265736560448201526b393b32b2103a37903cb7ba9760a11b6064820152608401610a73565b34610dbf8467011c37937e0800006130ef565b1115610ddd5760405162461bcd60e51b8152600401610a7390612f23565b6127106064610dec85856130c3565b610df691906130c3565b1115610e145760405162461bcd60e51b8152600401610a7390612fd4565b60005b83811015610e4457610e3233610e2d83866130c3565b611fbc565b80610e3c8161318c565b915050610e17565b503360009081526014602052604081208054859290610e649084906130c3565b9091555050505050565b610e783382611fd6565b610e945760405162461bcd60e51b8152600401610a739061301d565b610ba98383836120cd565b6000610eaa83611154565b8210610f0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a73565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60606000610f4283611154565b905080610f635760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610f7e57610f7e613213565b604051908082528060200260200182016040528015610fa7578160200160208202803683370190505b50905060005b82811015610f5b57610fbf8582610e9f565b828281518110610fd157610fd16131fd565b602090810291909101015280610fe68161318c565b915050610fad565b610ba983838360405180602001604052806000815250611626565b600061101460085490565b82106110775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a73565b6008828154811061108a5761108a6131fd565b90600052602060002001549050919050565b600a546001600160a01b031633146110c65760405162461bcd60e51b8152600401610a7390612f9f565b80516110d990600e90602084019061293b565b5050565b6000818152600260205260408120546001600160a01b0316806109665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a73565b60006001600160a01b0382166111bf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a73565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112055760405162461bcd60e51b8152600401610a7390612f9f565b61120f6000612278565b565b600a546001600160a01b0316331461123b5760405162461bcd60e51b8152600401610a7390612f9f565b80516105dc81600f5461124e91906130c3565b11156112b15760405162461bcd60e51b815260206004820152602c60248201527f416464696e67206d6f72652077696c6c206578636565642070726573616c652060448201526b746f74616c20737570706c7960a01b6064820152608401610a73565b60005b8251811015610ba9576001601060008584815181106112d5576112d56131fd565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600082825461132791906130c3565b909155508190506113378161318c565b9150506112b4565b60606001805461097b90613151565b6001600160a01b0382163314156113a75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a73565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461143d5760405162461bcd60e51b8152600401610a7390612f9f565b600061144833611154565b9050600061145560085490565b905060648311156114b85760405162461bcd60e51b815260206004820152602760248201527f596f757220616d6f756e74206578636565647320746865207265736572766520604482015266737570706c792160c81b6064820152608401610a73565b60646114c483856130c3565b11156115385760405162461bcd60e51b815260206004820152603960248201527f596f757220616d6f756e7420706c757320796f75722062616c616e636520657860448201527f636565647320746865207265736572766520737570706c7921000000000000006064820152608401610a73565b60005b838110156115635761155133610e2d83856130c3565b8061155b8161318c565b91505061153b565b50505050565b600a546001600160a01b031633146115935760405162461bcd60e51b8152600401610a7390612f9f565b60005b8251811015610ba9578181815181106115b1576115b16131fd565b6020026020010151601360008584815181106115cf576115cf6131fd565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555060016012600082825461160e91906130c3565b9091555081905061161e8161318c565b915050611596565b6116303383611fd6565b61164c5760405162461bcd60e51b8152600401610a739061301d565b611563848484846122ca565b600a546001600160a01b031633146116825760405162461bcd60e51b8152600401610a7390612f9f565b80600081518110611695576116956131fd565b6020026020010151601660006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001815181106116d6576116d66131fd565b6020026020010151601760006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600281518110611717576117176131fd565b6020026020010151601860006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600381518110611758576117586131fd565b6020026020010151601960006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6000818152600260205260409020546060906001600160a01b03166118085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a73565b60006118126122fd565b90506000815111611832576040518060200160405280600081525061185d565b8061183c8461230c565b60405160200161184d929190612e0e565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461188e5760405162461bcd60e51b8152600401610a7390612f9f565b600061189b6064836130db565b6016549091506001600160a01b03166108fc6118b88360196130ef565b6040518115909202916000818181858888f193505050506118d857600080fd5b6017546001600160a01b03166108fc6118f28360196130ef565b6040518115909202916000818181858888f1935050505061191257600080fd5b6018546001600160a01b03166108fc61192c8360196130ef565b6040518115909202916000818181858888f1935050505061194c57600080fd5b601980546001600160a01b0316906108fc906119699084906130ef565b6040518115909202916000818181858888f193505050506110d957600080fd5b606060405180608001604052806049815260200161324060499139905090565b600d5442101580156119bd57506000600d54115b611a095760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632073616c65206861736e277420737461727465642079657421006044820152606401610a73565b6000611a1460085490565b905060008211611a665760405162461bcd60e51b815260206004820152601c60248201527f596f75206861766520746f206d696e74206174206c6561737420312e000000006044820152606401610a73565b6005821115611ac85760405162461bcd60e51b815260206004820152602860248201527f596f752063616e6e6f74206d696e74206d6f7265207468656e203520706572206044820152673932b8bab2b9ba1760c11b6064820152608401610a73565b34611adb8367011c37937e0800006130ef565b1115611af95760405162461bcd60e51b8152600401610a7390612f23565b6127106064611b0884846130c3565b611b1291906130c3565b1115611b305760405162461bcd60e51b8152600401610a7390612fd4565b60005b82811015611b5b57611b4933610e2d83856130c3565b80611b538161318c565b915050611b33565b503360009081526015602052604081208054849290611b7b9084906130c3565b90915550505050565b600a546001600160a01b03163314611bae5760405162461bcd60e51b8152600401610a7390612f9f565b6001600160a01b038116611c135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a73565b611c1c81612278565b50565b600b544210158015611c3357506000600b54115b611c7f5760405162461bcd60e51b815260206004820181905260248201527f50726573616c652053616c65206861736e2774207374617274656420796574216044820152606401610a73565b600c5442108015611c9257506000600c54115b611cd35760405162461bcd60e51b815260206004820152601260248201527150726573616c652068617320656e6465642160701b6044820152606401610a73565b6000611cde60085490565b90506003821115611d485760405162461bcd60e51b815260206004820152602e60248201527f596f757220616d6f756e7420657863656564732070726573616c65207472616e60448201526d73616374696f6e206c696d69742160901b6064820152608401610a73565b3360009081526010602052604090205460ff161515600114611db85760405162461bcd60e51b815260206004820152602360248201527f596f75277265206e6f742077686974656c697374656420666f722070726573616044820152626c652160e81b6064820152608401610a73565b33600090815260116020526040902054600111611de75760405162461bcd60e51b8152600401610a7390612f5a565b33600090815260116020526040902054600390611e059084906130c3565b1115611e235760405162461bcd60e51b8152600401610a7390612f5a565b34611e368367011c37937e0800006130ef565b1115611e545760405162461bcd60e51b8152600401610a7390612f23565b6127106064611e6384846130c3565b611e6d91906130c3565b1115611e8b5760405162461bcd60e51b8152600401610a7390612fd4565b60005b82811015611eb657611ea433610e2d83856130c3565b80611eae8161318c565b915050611e8e565b503360009081526011602052604081208054849290611b7b9084906130c3565b600a546001600160a01b03163314611f005760405162461bcd60e51b8152600401610a7390612f9f565b80611f0b57600b8290555b8060011415611f1a57600c8290555b80600214156110d95750600d55565b60006001600160e01b0319821663780e9d6360e01b148061096657506109668261240a565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f83826110dd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6110d982826040518060200160405280600081525061245a565b6000818152600260205260408120546001600160a01b031661204f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a73565b600061205a836110dd565b9050806001600160a01b0316846001600160a01b031614806120955750836001600160a01b031661208a846109fe565b6001600160a01b0316145b806120c557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120e0826110dd565b6001600160a01b0316146121485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a73565b6001600160a01b0382166121aa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a73565b6121b583838361248d565b6121c0600082611f4e565b6001600160a01b03831660009081526003602052604081208054600192906121e990849061310e565b90915550506001600160a01b03821660009081526003602052604081208054600192906122179084906130c3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122d58484846120cd565b6122e184848484612498565b6115635760405162461bcd60e51b8152600401610a7390612ed1565b6060600e805461097b90613151565b6060816123305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561235a57806123448161318c565b91506123539050600a836130db565b9150612334565b60008167ffffffffffffffff81111561237557612375613213565b6040519080825280601f01601f19166020018201604052801561239f576020820181803683370190505b5090505b84156120c5576123b460018361310e565b91506123c1600a866131a7565b6123cc9060306130c3565b60f81b8183815181106123e1576123e16131fd565b60200101906001600160f81b031916908160001a905350612403600a866130db565b94506123a3565b60006001600160e01b031982166380ac58cd60e01b148061243b57506001600160e01b03198216635b5e139f60e01b145b8061096657506301ffc9a760e01b6001600160e01b0319831614610966565b61246483836125a5565b6124716000848484612498565b610ba95760405162461bcd60e51b8152600401610a7390612ed1565b610ba98383836126f3565b60006001600160a01b0384163b1561259a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124dc903390899088908890600401612e3d565b602060405180830381600087803b1580156124f657600080fd5b505af1925050508015612526575060408051601f3d908101601f1916820190925261252391810190612d41565b60015b612580573d808015612554576040519150601f19603f3d011682016040523d82523d6000602084013e612559565b606091505b5080516125785760405162461bcd60e51b8152600401610a7390612ed1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c5565b506001949350505050565b6001600160a01b0382166125fb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a73565b6000818152600260205260409020546001600160a01b0316156126605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a73565b61266c6000838361248d565b6001600160a01b03821660009081526003602052604081208054600192906126959084906130c3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b03831661274e5761274981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612771565b816001600160a01b0316836001600160a01b0316146127715761277183826127ab565b6001600160a01b03821661278857610ba981612848565b826001600160a01b0316826001600160a01b031614610ba957610ba982826128f7565b600060016127b884611154565b6127c2919061310e565b600083815260076020526040902054909150808214612815576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061285a9060019061310e565b60008381526009602052604081205460088054939450909284908110612882576128826131fd565b9060005260206000200154905080600883815481106128a3576128a36131fd565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128db576128db6131e7565b6001900381819060005260206000200160009055905550505050565b600061290283611154565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461294790613151565b90600052602060002090601f01602090048101928261296957600085556129af565b82601f1061298257805160ff19168380011785556129af565b828001600101855582156129af579182015b828111156129af578251825591602001919060010190612994565b506129bb9291506129bf565b5090565b5b808211156129bb57600081556001016129c0565b600067ffffffffffffffff8311156129ee576129ee613213565b612a01601f8401601f191660200161306e565b9050828152838383011115612a1557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612a4357600080fd5b919050565b600082601f830112612a5957600080fd5b81356020612a6e612a698361309f565b61306e565b80838252828201915082860187848660051b8901011115612a8e57600080fd5b60005b85811015612ab457612aa282612a2c565b84529284019290840190600101612a91565b5090979650505050505050565b600060208284031215612ad357600080fd5b61185d82612a2c565b60008060408385031215612aef57600080fd5b612af883612a2c565b9150612b0660208401612a2c565b90509250929050565b600080600060608486031215612b2457600080fd5b612b2d84612a2c565b9250612b3b60208501612a2c565b9150604084013590509250925092565b60008060008060808587031215612b6157600080fd5b612b6a85612a2c565b9350612b7860208601612a2c565b925060408501359150606085013567ffffffffffffffff811115612b9b57600080fd5b8501601f81018713612bac57600080fd5b612bbb878235602084016129d4565b91505092959194509250565b60008060408385031215612bda57600080fd5b612be383612a2c565b915060208301358015158114612bf857600080fd5b809150509250929050565b60008060408385031215612c1657600080fd5b612c1f83612a2c565b946020939093013593505050565b600060208284031215612c3f57600080fd5b813567ffffffffffffffff811115612c5657600080fd5b6120c584828501612a48565b60008060408385031215612c7557600080fd5b823567ffffffffffffffff80821115612c8d57600080fd5b612c9986838701612a48565b9350602091508185013581811115612cb057600080fd5b85019050601f81018613612cc357600080fd5b8035612cd1612a698261309f565b80828252848201915084840189868560051b8701011115612cf157600080fd5b600094505b83851015612d14578035835260019490940193918501918501612cf6565b5080955050505050509250929050565b600060208284031215612d3657600080fd5b813561185d81613229565b600060208284031215612d5357600080fd5b815161185d81613229565b600060208284031215612d7057600080fd5b813567ffffffffffffffff811115612d8757600080fd5b8201601f81018413612d9857600080fd5b6120c5848235602084016129d4565b600060208284031215612db957600080fd5b5035919050565b60008060408385031215612dd357600080fd5b50508035926020909101359150565b60008151808452612dfa816020860160208601613125565b601f01601f19169290920160200192915050565b60008351612e20818460208801613125565b835190830190612e34818360208801613125565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e7090830184612de2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612eb257835183529284019291840191600101612e96565b50909695505050505050565b60208152600061185d6020830184612de2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f5472616e73616374696f6e2076616c756520697320746f6f206c6f7700000000604082015260600190565b60208082526025908201527f596f7520616c72656164792070757263686173656420647572696e672070726560408201526473616c652160d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f596f752063616e206e6f74206d696e74206d6f7265207468616e20746865206d604082015268617820737570706c7960b81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561309757613097613213565b604052919050565b600067ffffffffffffffff8211156130b9576130b9613213565b5060051b60200190565b600082198211156130d6576130d66131bb565b500190565b6000826130ea576130ea6131d1565b500490565b6000816000190483118215151615613109576131096131bb565b500290565b600082821015613120576131206131bb565b500390565b60005b83811015613140578181015183820152602001613128565b838111156115635750506000910152565b600181811c9082168061316557607f821691505b6020821081141561318657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131a0576131a06131bb565b5060010190565b6000826131b6576131b66131d1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c1c57600080fdfe68747470733a2f2f74656e6f722e636f6d2f766965772f6a616b652d6a616b652d7468652d646f672d66756e6e792d6c617567682d6c61756768696e672d6769662d35333732363838a2646970667358221220b3157322a239f65770b376d548babb15b5dda1e2806888841310b1e171f793a064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f63646e2e647261676f6e736167612e696f2f6d6574612f00

Deployed Bytecode

0x6080604052600436106103355760003560e01c806388060db7116101ab578063c3502dd7116100f7578063e985e9c511610095578063f74ea4181161006f578063f74ea418146108f2578063f759867a14610912578063f9fa9af114610925578063fcb2e86e1461093b57600080fd5b8063e985e9c514610876578063efd0cbf9146108bf578063f2fde38b146108d257600080fd5b8063cdea3b11116100d1578063cdea3b11146107cc578063d77da4f414610839578063da66e4a41461084c578063db2e21bc1461086157600080fd5b8063c3502dd7146107cc578063c87b56dd146107e0578063ca9640b81461080057600080fd5b806398d5fdca11610164578063b152a8b21161013e578063b152a8b21461074c578063b58ed5611461076c578063b88d4fde1461078c578063b9571721146107ac57600080fd5b806398d5fdca146106fc5780639d2cc43614610717578063a22cb4651461072c57600080fd5b806388060db7146106545780638da5cb5b1461066957806390e44774146106875780639426eef8146106a757806395d89b41146106c7578063969e9d0c146106dc57600080fd5b8063275afeb9116102855780634f6ccce7116102235780636352211e116101fd5780636352211e146105e957806370a0823114610609578063715018a614610629578063758b4e861461063e57600080fd5b80634f6ccce7146105735780635561e9071461059357806355f804b3146105c957600080fd5b80633c2fd7901161025f5780633c2fd79014610514578063420b15301461052857806342842e0e1461053d5780634d4c4e991461055d57600080fd5b8063275afeb91461041f5780632f745c59146104c7578063360d506f146104e757600080fd5b806309bf600e116102f257806318160ddd116102cc57806318160ddd1461046a5780631b49a3c91461047f5780631c72a1841461049257806323b872dd146104a757600080fd5b806309bf600e1461041f578063101f957114610434578063119552a11461044a57600080fd5b806301ffc9a71461033a578063066796d51461036f57806306fdde031461038e578063070cdbc9146103b0578063081812fc146103c5578063095ea7b3146103fd575b600080fd5b34801561034657600080fd5b5061035a610355366004612d24565b61095b565b60405190151581526020015b60405180910390f35b34801561037b57600080fd5b506012545b604051908152602001610366565b34801561039a57600080fd5b506103a361096c565b6040516103669190612ebe565b3480156103bc57600080fd5b50600d54610380565b3480156103d157600080fd5b506103e56103e0366004612da7565b6109fe565b6040516001600160a01b039091168152602001610366565b34801561040957600080fd5b5061041d610418366004612c03565b610a98565b005b34801561042b57600080fd5b50610380600581565b34801561044057600080fd5b50610380600f5481565b34801561045657600080fd5b506016546103e5906001600160a01b031681565b34801561047657600080fd5b50600854610380565b61041d61048d366004612da7565b610bae565b34801561049e57600080fd5b50600c54610380565b3480156104b357600080fd5b5061041d6104c2366004612b0f565b610e6e565b3480156104d357600080fd5b506103806104e2366004612c03565b610e9f565b3480156104f357600080fd5b50610507610502366004612ac1565b610f35565b6040516103669190612e7a565b34801561052057600080fd5b506003610380565b34801561053457600080fd5b50600f54610380565b34801561054957600080fd5b5061041d610558366004612b0f565b610fee565b34801561056957600080fd5b506103806105dc81565b34801561057f57600080fd5b5061038061058e366004612da7565b611009565b34801561059f57600080fd5b506103806105ae366004612ac1565b6001600160a01b031660009081526013602052604090205490565b3480156105d557600080fd5b5061041d6105e4366004612d5e565b61109c565b3480156105f557600080fd5b506103e5610604366004612da7565b6110dd565b34801561061557600080fd5b50610380610624366004612ac1565b611154565b34801561063557600080fd5b5061041d6111db565b34801561064a57600080fd5b5061038061271081565b34801561066057600080fd5b50610380600381565b34801561067557600080fd5b50600a546001600160a01b03166103e5565b34801561069357600080fd5b5061041d6106a2366004612c2d565b611211565b3480156106b357600080fd5b506018546103e5906001600160a01b031681565b3480156106d357600080fd5b506103a361133f565b3480156106e857600080fd5b506017546103e5906001600160a01b031681565b34801561070857600080fd5b5067011c37937e080000610380565b34801561072357600080fd5b50610380606481565b34801561073857600080fd5b5061041d610747366004612bc7565b61134e565b34801561075857600080fd5b5061041d610767366004612da7565b611413565b34801561077857600080fd5b5061041d610787366004612c62565b611569565b34801561079857600080fd5b5061041d6107a7366004612b4b565b611626565b3480156107b857600080fd5b5061041d6107c7366004612c2d565b611658565b3480156107d857600080fd5b506005610380565b3480156107ec57600080fd5b506103a36107fb366004612da7565b611789565b34801561080c57600080fd5b5061035a61081b366004612ac1565b6001600160a01b031660009081526010602052604090205460ff1690565b61041d610847366004612da7565b611864565b34801561085857600080fd5b50600b54610380565b34801561086d57600080fd5b506103a3611989565b34801561088257600080fd5b5061035a610891366004612adc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61041d6108cd366004612da7565b6119a9565b3480156108de57600080fd5b5061041d6108ed366004612ac1565b611b84565b3480156108fe57600080fd5b506019546103e5906001600160a01b031681565b61041d610920366004612da7565b611c1f565b34801561093157600080fd5b5061038060125481565b34801561094757600080fd5b5061041d610956366004612dc0565b611ed6565b600061096682611f29565b92915050565b60606000805461097b90613151565b80601f01602080910402602001604051908101604052809291908181526020018280546109a790613151565b80156109f45780601f106109c9576101008083540402835291602001916109f4565b820191906000526020600020905b8154815290600101906020018083116109d757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a7c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610aa3826110dd565b9050806001600160a01b0316836001600160a01b03161415610b115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a73565b336001600160a01b0382161480610b2d5750610b2d8133610891565b610b9f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a73565b610ba98383611f4e565b505050565b600c544210158015610bc257506000600c54115b610c0e5760405162461bcd60e51b815260206004820181905260248201527f526573657276652073616c65206861736e2774207374617274656420796574216044820152606401610a73565b600d5442108015610c2157506000600d54115b610c6d5760405162461bcd60e51b815260206004820152601760248201527f526573657276652073616c652068617320656e646564210000000000000000006044820152606401610a73565b6000610c7860085490565b3360009081526013602090815260408083205460149092529091205491925090600111610cf85760405162461bcd60e51b815260206004820152602860248201527f596f7520616c7265616479206d696e74656420796f757220726573657276656460448201526720616d6f756e742160c01b6064820152608401610a73565b60008111610d485760405162461bcd60e51b815260206004820152601f60248201527f596f752772652061646472657373206973206e6f7420726573657276656421006044820152606401610a73565b808314610dac5760405162461bcd60e51b815260206004820152602c60248201527f596f75206861766520746f206d696e7420746865206e756d626572207265736560448201526b393b32b2103a37903cb7ba9760a11b6064820152608401610a73565b34610dbf8467011c37937e0800006130ef565b1115610ddd5760405162461bcd60e51b8152600401610a7390612f23565b6127106064610dec85856130c3565b610df691906130c3565b1115610e145760405162461bcd60e51b8152600401610a7390612fd4565b60005b83811015610e4457610e3233610e2d83866130c3565b611fbc565b80610e3c8161318c565b915050610e17565b503360009081526014602052604081208054859290610e649084906130c3565b9091555050505050565b610e783382611fd6565b610e945760405162461bcd60e51b8152600401610a739061301d565b610ba98383836120cd565b6000610eaa83611154565b8210610f0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a73565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60606000610f4283611154565b905080610f635760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610f7e57610f7e613213565b604051908082528060200260200182016040528015610fa7578160200160208202803683370190505b50905060005b82811015610f5b57610fbf8582610e9f565b828281518110610fd157610fd16131fd565b602090810291909101015280610fe68161318c565b915050610fad565b610ba983838360405180602001604052806000815250611626565b600061101460085490565b82106110775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a73565b6008828154811061108a5761108a6131fd565b90600052602060002001549050919050565b600a546001600160a01b031633146110c65760405162461bcd60e51b8152600401610a7390612f9f565b80516110d990600e90602084019061293b565b5050565b6000818152600260205260408120546001600160a01b0316806109665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a73565b60006001600160a01b0382166111bf5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a73565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112055760405162461bcd60e51b8152600401610a7390612f9f565b61120f6000612278565b565b600a546001600160a01b0316331461123b5760405162461bcd60e51b8152600401610a7390612f9f565b80516105dc81600f5461124e91906130c3565b11156112b15760405162461bcd60e51b815260206004820152602c60248201527f416464696e67206d6f72652077696c6c206578636565642070726573616c652060448201526b746f74616c20737570706c7960a01b6064820152608401610a73565b60005b8251811015610ba9576001601060008584815181106112d5576112d56131fd565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600082825461132791906130c3565b909155508190506113378161318c565b9150506112b4565b60606001805461097b90613151565b6001600160a01b0382163314156113a75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a73565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461143d5760405162461bcd60e51b8152600401610a7390612f9f565b600061144833611154565b9050600061145560085490565b905060648311156114b85760405162461bcd60e51b815260206004820152602760248201527f596f757220616d6f756e74206578636565647320746865207265736572766520604482015266737570706c792160c81b6064820152608401610a73565b60646114c483856130c3565b11156115385760405162461bcd60e51b815260206004820152603960248201527f596f757220616d6f756e7420706c757320796f75722062616c616e636520657860448201527f636565647320746865207265736572766520737570706c7921000000000000006064820152608401610a73565b60005b838110156115635761155133610e2d83856130c3565b8061155b8161318c565b91505061153b565b50505050565b600a546001600160a01b031633146115935760405162461bcd60e51b8152600401610a7390612f9f565b60005b8251811015610ba9578181815181106115b1576115b16131fd565b6020026020010151601360008584815181106115cf576115cf6131fd565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555060016012600082825461160e91906130c3565b9091555081905061161e8161318c565b915050611596565b6116303383611fd6565b61164c5760405162461bcd60e51b8152600401610a739061301d565b611563848484846122ca565b600a546001600160a01b031633146116825760405162461bcd60e51b8152600401610a7390612f9f565b80600081518110611695576116956131fd565b6020026020010151601660006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001815181106116d6576116d66131fd565b6020026020010151601760006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600281518110611717576117176131fd565b6020026020010151601860006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600381518110611758576117586131fd565b6020026020010151601960006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6000818152600260205260409020546060906001600160a01b03166118085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a73565b60006118126122fd565b90506000815111611832576040518060200160405280600081525061185d565b8061183c8461230c565b60405160200161184d929190612e0e565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461188e5760405162461bcd60e51b8152600401610a7390612f9f565b600061189b6064836130db565b6016549091506001600160a01b03166108fc6118b88360196130ef565b6040518115909202916000818181858888f193505050506118d857600080fd5b6017546001600160a01b03166108fc6118f28360196130ef565b6040518115909202916000818181858888f1935050505061191257600080fd5b6018546001600160a01b03166108fc61192c8360196130ef565b6040518115909202916000818181858888f1935050505061194c57600080fd5b601980546001600160a01b0316906108fc906119699084906130ef565b6040518115909202916000818181858888f193505050506110d957600080fd5b606060405180608001604052806049815260200161324060499139905090565b600d5442101580156119bd57506000600d54115b611a095760405162461bcd60e51b815260206004820152601f60248201527f5075626c69632073616c65206861736e277420737461727465642079657421006044820152606401610a73565b6000611a1460085490565b905060008211611a665760405162461bcd60e51b815260206004820152601c60248201527f596f75206861766520746f206d696e74206174206c6561737420312e000000006044820152606401610a73565b6005821115611ac85760405162461bcd60e51b815260206004820152602860248201527f596f752063616e6e6f74206d696e74206d6f7265207468656e203520706572206044820152673932b8bab2b9ba1760c11b6064820152608401610a73565b34611adb8367011c37937e0800006130ef565b1115611af95760405162461bcd60e51b8152600401610a7390612f23565b6127106064611b0884846130c3565b611b1291906130c3565b1115611b305760405162461bcd60e51b8152600401610a7390612fd4565b60005b82811015611b5b57611b4933610e2d83856130c3565b80611b538161318c565b915050611b33565b503360009081526015602052604081208054849290611b7b9084906130c3565b90915550505050565b600a546001600160a01b03163314611bae5760405162461bcd60e51b8152600401610a7390612f9f565b6001600160a01b038116611c135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a73565b611c1c81612278565b50565b600b544210158015611c3357506000600b54115b611c7f5760405162461bcd60e51b815260206004820181905260248201527f50726573616c652053616c65206861736e2774207374617274656420796574216044820152606401610a73565b600c5442108015611c9257506000600c54115b611cd35760405162461bcd60e51b815260206004820152601260248201527150726573616c652068617320656e6465642160701b6044820152606401610a73565b6000611cde60085490565b90506003821115611d485760405162461bcd60e51b815260206004820152602e60248201527f596f757220616d6f756e7420657863656564732070726573616c65207472616e60448201526d73616374696f6e206c696d69742160901b6064820152608401610a73565b3360009081526010602052604090205460ff161515600114611db85760405162461bcd60e51b815260206004820152602360248201527f596f75277265206e6f742077686974656c697374656420666f722070726573616044820152626c652160e81b6064820152608401610a73565b33600090815260116020526040902054600111611de75760405162461bcd60e51b8152600401610a7390612f5a565b33600090815260116020526040902054600390611e059084906130c3565b1115611e235760405162461bcd60e51b8152600401610a7390612f5a565b34611e368367011c37937e0800006130ef565b1115611e545760405162461bcd60e51b8152600401610a7390612f23565b6127106064611e6384846130c3565b611e6d91906130c3565b1115611e8b5760405162461bcd60e51b8152600401610a7390612fd4565b60005b82811015611eb657611ea433610e2d83856130c3565b80611eae8161318c565b915050611e8e565b503360009081526011602052604081208054849290611b7b9084906130c3565b600a546001600160a01b03163314611f005760405162461bcd60e51b8152600401610a7390612f9f565b80611f0b57600b8290555b8060011415611f1a57600c8290555b80600214156110d95750600d55565b60006001600160e01b0319821663780e9d6360e01b148061096657506109668261240a565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f83826110dd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6110d982826040518060200160405280600081525061245a565b6000818152600260205260408120546001600160a01b031661204f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a73565b600061205a836110dd565b9050806001600160a01b0316846001600160a01b031614806120955750836001600160a01b031661208a846109fe565b6001600160a01b0316145b806120c557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120e0826110dd565b6001600160a01b0316146121485760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a73565b6001600160a01b0382166121aa5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a73565b6121b583838361248d565b6121c0600082611f4e565b6001600160a01b03831660009081526003602052604081208054600192906121e990849061310e565b90915550506001600160a01b03821660009081526003602052604081208054600192906122179084906130c3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122d58484846120cd565b6122e184848484612498565b6115635760405162461bcd60e51b8152600401610a7390612ed1565b6060600e805461097b90613151565b6060816123305750506040805180820190915260018152600360fc1b602082015290565b8160005b811561235a57806123448161318c565b91506123539050600a836130db565b9150612334565b60008167ffffffffffffffff81111561237557612375613213565b6040519080825280601f01601f19166020018201604052801561239f576020820181803683370190505b5090505b84156120c5576123b460018361310e565b91506123c1600a866131a7565b6123cc9060306130c3565b60f81b8183815181106123e1576123e16131fd565b60200101906001600160f81b031916908160001a905350612403600a866130db565b94506123a3565b60006001600160e01b031982166380ac58cd60e01b148061243b57506001600160e01b03198216635b5e139f60e01b145b8061096657506301ffc9a760e01b6001600160e01b0319831614610966565b61246483836125a5565b6124716000848484612498565b610ba95760405162461bcd60e51b8152600401610a7390612ed1565b610ba98383836126f3565b60006001600160a01b0384163b1561259a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124dc903390899088908890600401612e3d565b602060405180830381600087803b1580156124f657600080fd5b505af1925050508015612526575060408051601f3d908101601f1916820190925261252391810190612d41565b60015b612580573d808015612554576040519150601f19603f3d011682016040523d82523d6000602084013e612559565b606091505b5080516125785760405162461bcd60e51b8152600401610a7390612ed1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120c5565b506001949350505050565b6001600160a01b0382166125fb5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a73565b6000818152600260205260409020546001600160a01b0316156126605760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a73565b61266c6000838361248d565b6001600160a01b03821660009081526003602052604081208054600192906126959084906130c3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b03831661274e5761274981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612771565b816001600160a01b0316836001600160a01b0316146127715761277183826127ab565b6001600160a01b03821661278857610ba981612848565b826001600160a01b0316826001600160a01b031614610ba957610ba982826128f7565b600060016127b884611154565b6127c2919061310e565b600083815260076020526040902054909150808214612815576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061285a9060019061310e565b60008381526009602052604081205460088054939450909284908110612882576128826131fd565b9060005260206000200154905080600883815481106128a3576128a36131fd565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806128db576128db6131e7565b6001900381819060005260206000200160009055905550505050565b600061290283611154565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461294790613151565b90600052602060002090601f01602090048101928261296957600085556129af565b82601f1061298257805160ff19168380011785556129af565b828001600101855582156129af579182015b828111156129af578251825591602001919060010190612994565b506129bb9291506129bf565b5090565b5b808211156129bb57600081556001016129c0565b600067ffffffffffffffff8311156129ee576129ee613213565b612a01601f8401601f191660200161306e565b9050828152838383011115612a1557600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114612a4357600080fd5b919050565b600082601f830112612a5957600080fd5b81356020612a6e612a698361309f565b61306e565b80838252828201915082860187848660051b8901011115612a8e57600080fd5b60005b85811015612ab457612aa282612a2c565b84529284019290840190600101612a91565b5090979650505050505050565b600060208284031215612ad357600080fd5b61185d82612a2c565b60008060408385031215612aef57600080fd5b612af883612a2c565b9150612b0660208401612a2c565b90509250929050565b600080600060608486031215612b2457600080fd5b612b2d84612a2c565b9250612b3b60208501612a2c565b9150604084013590509250925092565b60008060008060808587031215612b6157600080fd5b612b6a85612a2c565b9350612b7860208601612a2c565b925060408501359150606085013567ffffffffffffffff811115612b9b57600080fd5b8501601f81018713612bac57600080fd5b612bbb878235602084016129d4565b91505092959194509250565b60008060408385031215612bda57600080fd5b612be383612a2c565b915060208301358015158114612bf857600080fd5b809150509250929050565b60008060408385031215612c1657600080fd5b612c1f83612a2c565b946020939093013593505050565b600060208284031215612c3f57600080fd5b813567ffffffffffffffff811115612c5657600080fd5b6120c584828501612a48565b60008060408385031215612c7557600080fd5b823567ffffffffffffffff80821115612c8d57600080fd5b612c9986838701612a48565b9350602091508185013581811115612cb057600080fd5b85019050601f81018613612cc357600080fd5b8035612cd1612a698261309f565b80828252848201915084840189868560051b8701011115612cf157600080fd5b600094505b83851015612d14578035835260019490940193918501918501612cf6565b5080955050505050509250929050565b600060208284031215612d3657600080fd5b813561185d81613229565b600060208284031215612d5357600080fd5b815161185d81613229565b600060208284031215612d7057600080fd5b813567ffffffffffffffff811115612d8757600080fd5b8201601f81018413612d9857600080fd5b6120c5848235602084016129d4565b600060208284031215612db957600080fd5b5035919050565b60008060408385031215612dd357600080fd5b50508035926020909101359150565b60008151808452612dfa816020860160208601613125565b601f01601f19169290920160200192915050565b60008351612e20818460208801613125565b835190830190612e34818360208801613125565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e7090830184612de2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612eb257835183529284019291840191600101612e96565b50909695505050505050565b60208152600061185d6020830184612de2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601c908201527f5472616e73616374696f6e2076616c756520697320746f6f206c6f7700000000604082015260600190565b60208082526025908201527f596f7520616c72656164792070757263686173656420647572696e672070726560408201526473616c652160d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f596f752063616e206e6f74206d696e74206d6f7265207468616e20746865206d604082015268617820737570706c7960b81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561309757613097613213565b604052919050565b600067ffffffffffffffff8211156130b9576130b9613213565b5060051b60200190565b600082198211156130d6576130d66131bb565b500190565b6000826130ea576130ea6131d1565b500490565b6000816000190483118215151615613109576131096131bb565b500290565b600082821015613120576131206131bb565b500390565b60005b83811015613140578181015183820152602001613128565b838111156115635750506000910152565b600181811c9082168061316557607f821691505b6020821081141561318657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131a0576131a06131bb565b5060010190565b6000826131b6576131b66131d1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c1c57600080fdfe68747470733a2f2f74656e6f722e636f6d2f766965772f6a616b652d6a616b652d7468652d646f672d66756e6e792d6c617567682d6c61756768696e672d6769662d35333732363838a2646970667358221220b3157322a239f65770b376d548babb15b5dda1e2806888841310b1e171f793a064736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f63646e2e647261676f6e736167612e696f2f6d6574612f00

-----Decoded View---------------
Arg [0] : tokenURI (string): https://cdn.dragonsaga.io/meta/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [2] : 68747470733a2f2f63646e2e647261676f6e736167612e696f2f6d6574612f00


Deployed Bytecode Sourcemap

46781:11181:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48253:179;;;;;;;;;;-1:-1:-1;48253:179:0;;;;;:::i;:::-;;:::i;:::-;;;8502:14:1;;8495:22;8477:41;;8465:2;8450:18;48253:179:0;;;;;;;;57856:103;;;;;;;;;;-1:-1:-1;57933:23:0;;57856:103;;;23074:25:1;;;23062:2;23047:18;57856:103:0;22928:177:1;27551:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57094:80::-;;;;;;;;;;-1:-1:-1;57159:11:0;;57094:80;;29110:221;;;;;;;;;;-1:-1:-1;29110:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7163:32:1;;;7145:51;;7133:2;7118:18;29110:221:0;6999:203:1;28633:411:0;;;;;;;;;;-1:-1:-1;28633:411:0;;;;;:::i;:::-;;:::i;:::-;;46999:55;;;;;;;;;;;;47053:1;46999:55;;47483:38;;;;;;;;;;;;;;;;47962:17;;;;;;;;;;-1:-1:-1;47962:17:0;;;;-1:-1:-1;;;;;47962:17:0;;;40299:113;;;;;;;;;;-1:-1:-1;40387:10:0;:17;40299:113;;54220:850;;;;;;:::i;:::-;;:::i;57008:80::-;;;;;;;;;;-1:-1:-1;57073:12:0;;57008:80;;30000:339;;;;;;;;;;-1:-1:-1;30000:339:0;;;;;:::i;:::-;;:::i;39967:256::-;;;;;;;;;;-1:-1:-1;39967:256:0;;;;;:::i;:::-;;:::i;56413:454::-;;;;;;;;;;-1:-1:-1;56413:454:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57218:97::-;;;;;;;;;;-1:-1:-1;46991:1:0;57218:97;;57696:95;;;;;;;;;;-1:-1:-1;57769:19:0;;57696:95;;30410:185;;;;;;;;;;-1:-1:-1;30410:185:0;;;;;:::i;:::-;;:::i;47123:42::-;;;;;;;;;;;;47161:4;47123:42;;40489:233;;;;;;;;;;-1:-1:-1;40489:233:0;;;;;:::i;:::-;;:::i;56194:142::-;;;;;;;;;;-1:-1:-1;56194:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;56293:35:0;56266:7;56293:35;;;:25;:35;;;;;;;56194:142;50056:98;;;;;;;;;;-1:-1:-1;50056:98:0;;;;;:::i;:::-;;:::i;27245:239::-;;;;;;;;;;-1:-1:-1;27245:239:0;;;;;:::i;:::-;;:::i;26975:208::-;;;;;;;;;;-1:-1:-1;26975:208:0;;;;;:::i;:::-;;:::i;7250:94::-;;;;;;;;;;;;;:::i;46845:41::-;;;;;;;;;;;;46881:5;46845:41;;46937:55;;;;;;;;;;;;46991:1;46937:55;;6599:87;;;;;;;;;;-1:-1:-1;6672:6:0;;-1:-1:-1;;;;;6672:6:0;6599:87;;51663:263;;;;;;;;;;-1:-1:-1;51663:263:0;;;;;:::i;:::-;;:::i;48010:17::-;;;;;;;;;;-1:-1:-1;48010:17:0;;;;-1:-1:-1;;;;;48010:17:0;;;27720:104;;;;;;;;;;;;;:::i;47986:17::-;;;;;;;;;;-1:-1:-1;47986:17:0;;;;-1:-1:-1;;;;;47986:17:0;;;57566:67;;;;;;;;;;-1:-1:-1;47205:10:0;57566:67;;46893:37;;;;;;;;;;;;46927:3;46893:37;;29403:295;;;;;;;;;;-1:-1:-1;29403:295:0;;;;;:::i;:::-;;:::i;52533:479::-;;;;;;;;;;-1:-1:-1;52533:479:0;;;;;:::i;:::-;;:::i;52061:272::-;;;;;;;;;;-1:-1:-1;52061:272:0;;;;;:::i;:::-;;:::i;30666:328::-;;;;;;;;;;-1:-1:-1;30666:328:0;;;;;:::i;:::-;;:::i;50215:152::-;;;;;;;;;;-1:-1:-1;50215:152:0;;;;;:::i;:::-;;:::i;57321:97::-;;;;;;;;;;-1:-1:-1;47053:1:0;57321:97;;27895:334;;;;;;;;;;-1:-1:-1;27895:334:0;;;;;:::i;:::-;;:::i;55987:131::-;;;;;;;;;;-1:-1:-1;55987:131:0;;;;;:::i;:::-;-1:-1:-1;;;;;56079:31:0;56055:4;56079:31;;;:21;:31;;;;;;;;;55987:131;50450:368;;;;;;:::i;:::-;;:::i;56922:80::-;;;;;;;;;;-1:-1:-1;56987:12:0;;56922:80;;50862:187;;;;;;;;;;;;;:::i;29769:164::-;;;;;;;;;;-1:-1:-1;29769:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29890:25:0;;;29866:4;29890:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29769:164;55194:668;;;;;;:::i;:::-;;:::i;7499:192::-;;;;;;;;;;-1:-1:-1;7499:192:0;;;;;:::i;:::-;;:::i;48034:17::-;;;;;;;;;;-1:-1:-1;48034:17:0;;;;-1:-1:-1;;;;;48034:17:0;;;53148:938;;;;;;:::i;:::-;;:::i;47664:42::-;;;;;;;;;;;;;;;;51221:310;;;;;;;;;;-1:-1:-1;51221:310:0;;;;;:::i;:::-;;:::i;48253:179::-;48364:4;48388:36;48412:11;48388:23;:36::i;:::-;48381:43;48253:179;-1:-1:-1;;48253:179:0:o;27551:100::-;27605:13;27638:5;27631:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27551:100;:::o;29110:221::-;29186:7;32593:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32593:16:0;29206:73;;;;-1:-1:-1;;;29206:73:0;;17109:2:1;29206:73:0;;;17091:21:1;17148:2;17128:18;;;17121:30;17187:34;17167:18;;;17160:62;-1:-1:-1;;;17238:18:1;;;17231:42;17290:19;;29206:73:0;;;;;;;;;-1:-1:-1;29299:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29299:24:0;;29110:221::o;28633:411::-;28714:13;28730:23;28745:7;28730:14;:23::i;:::-;28714:39;;28778:5;-1:-1:-1;;;;;28772:11:0;:2;-1:-1:-1;;;;;28772:11:0;;;28764:57;;;;-1:-1:-1;;;28764:57:0;;19119:2:1;28764:57:0;;;19101:21:1;19158:2;19138:18;;;19131:30;19197:34;19177:18;;;19170:62;-1:-1:-1;;;19248:18:1;;;19241:31;19289:19;;28764:57:0;18917:397:1;28764:57:0;5467:10;-1:-1:-1;;;;;28856:21:0;;;;:62;;-1:-1:-1;28881:37:0;28898:5;5467:10;29769:164;:::i;28881:37::-;28834:168;;;;-1:-1:-1;;;28834:168:0;;14726:2:1;28834:168:0;;;14708:21:1;14765:2;14745:18;;;14738:30;14804:34;14784:18;;;14777:62;14875:26;14855:18;;;14848:54;14919:19;;28834:168:0;14524:420:1;28834:168:0;29015:21;29024:2;29028:7;29015:8;:21::i;:::-;28703:341;28633:411;;:::o;54220:850::-;49155:12;;49136:15;:31;;:51;;;;;49186:1;49171:12;;:16;49136:51;49128:96;;;;-1:-1:-1;;;49128:96:0;;15151:2:1;49128:96:0;;;15133:21:1;;;15170:18;;;15163:30;15229:34;15209:18;;;15202:62;15281:18;;49128:96:0;14949:356:1;49128:96:0;49261:11;;49243:15;:29;:48;;;;;49290:1;49276:11;;:15;49243:48;49235:84;;;;-1:-1:-1;;;49235:84:0;;11271:2:1;49235:84:0;;;11253:21:1;11310:2;11290:18;;;11283:30;11349:25;11329:18;;;11322:53;11392:18;;49235:84:0;11069:347:1;49235:84:0;54323:19:::1;54345:13;40387:10:::0;:17;;40299:113;54345:13:::1;54420:10;54369:22;54394:37:::0;;;:25:::1;:37;::::0;;;;;;;;54452:24:::1;:36:::0;;;;;;;54323:35;;-1:-1:-1;54394:37:0;54491:1:::1;-1:-1:-1::0;54444:93:0::1;;;::::0;-1:-1:-1;;;54444:93:0;;22721:2:1;54444:93:0::1;::::0;::::1;22703:21:1::0;22760:2;22740:18;;;22733:30;22799:34;22779:18;;;22772:62;-1:-1:-1;;;22850:18:1;;;22843:38;22898:19;;54444:93:0::1;22519:404:1::0;54444:93:0::1;54573:1;54556:14;:18;54548:62;;;::::0;-1:-1:-1;;;54548:62:0;;21595:2:1;54548:62:0::1;::::0;::::1;21577:21:1::0;21634:2;21614:18;;;21607:30;21673:33;21653:18;;;21646:61;21724:18;;54548:62:0::1;21393:355:1::0;54548:62:0::1;54640:14;54629:7;:25;54621:82;;;::::0;-1:-1:-1;;;54621:82:0;;11980:2:1;54621:82:0::1;::::0;::::1;11962:21:1::0;12019:2;11999:18;;;11992:30;12058:34;12038:18;;;12031:62;-1:-1:-1;;;12109:18:1;;;12102:42;12161:19;;54621:82:0::1;11778:408:1::0;54621:82:0::1;54741:9;54722:15;54730:7:::0;47205:10:::1;54722:15;:::i;:::-;:28;;54714:69;;;;-1:-1:-1::0;;;54714:69:0::1;;;;;;;:::i;:::-;46881:5;46927:3;54802:21;54816:7:::0;54802:11;:21:::1;:::i;:::-;:31;;;;:::i;:::-;:44;;54794:99;;;;-1:-1:-1::0;;;54794:99:0::1;;;;;;;:::i;:::-;54911:9;54906:97;54925:7;54921:1;:11;54906:97;;;54953:38;54963:10;54975:15;54989:1:::0;54975:11;:15:::1;:::i;:::-;54953:9;:38::i;:::-;54933:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54906:97;;;-1:-1:-1::0;55040:10:0::1;55015:36;::::0;;;:24:::1;:36;::::0;;;;:47;;55055:7;;55015:36;:47:::1;::::0;55055:7;;55015:47:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;54220:850:0:o;30000:339::-;30195:41;5467:10;30228:7;30195:18;:41::i;:::-;30187:103;;;;-1:-1:-1;;;30187:103:0;;;;;;;:::i;:::-;30303:28;30313:4;30319:2;30323:7;30303:9;:28::i;39967:256::-;40064:7;40100:23;40117:5;40100:16;:23::i;:::-;40092:5;:31;40084:87;;;;-1:-1:-1;;;40084:87:0;;9316:2:1;40084:87:0;;;9298:21:1;9355:2;9335:18;;;9328:30;9394:34;9374:18;;;9367:62;-1:-1:-1;;;9445:18:1;;;9438:41;9496:19;;40084:87:0;9114:407:1;40084:87:0;-1:-1:-1;;;;;;40189:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39967:256::o;56413:454::-;56482:16;56511:22;56536:19;56546:8;56536:9;:19::i;:::-;56511:44;-1:-1:-1;56572:19:0;56568:75;;56615:16;;;56629:1;56615:16;;;;;;;;;;;-1:-1:-1;56608:23:0;56413:454;-1:-1:-1;;;56413:454:0:o;56568:75::-;56655:23;56695:14;56681:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56681:29:0;;56655:55;;56728:9;56723:111;56743:14;56739:1;:18;56723:111;;;56790:32;56810:8;56820:1;56790:19;:32::i;:::-;56778:6;56785:1;56778:9;;;;;;;;:::i;:::-;;;;;;;;;;:44;56758:3;;;;:::i;:::-;;;;56723:111;;30410:185;30548:39;30565:4;30571:2;30575:7;30548:39;;;;;;;;;;;;:16;:39::i;40489:233::-;40564:7;40600:30;40387:10;:17;;40299:113;40600:30;40592:5;:38;40584:95;;;;-1:-1:-1;;;40584:95:0;;20352:2:1;40584:95:0;;;20334:21:1;20391:2;20371:18;;;20364:30;20430:34;20410:18;;;20403:62;-1:-1:-1;;;20481:18:1;;;20474:42;20533:19;;40584:95:0;20150:408:1;40584:95:0;40697:10;40708:5;40697:17;;;;;;;;:::i;:::-;;;;;;;;;40690:24;;40489:233;;;:::o;50056:98::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;50127:19;;::::1;::::0;:9:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50056:98:::0;:::o;27245:239::-;27317:7;27353:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27353:16:0;27388:19;27380:73;;;;-1:-1:-1;;;27380:73:0;;15923:2:1;27380:73:0;;;15905:21:1;15962:2;15942:18;;;15935:30;16001:34;15981:18;;;15974:62;-1:-1:-1;;;16052:18:1;;;16045:39;16101:19;;27380:73:0;15721:405:1;26975:208:0;27047:7;-1:-1:-1;;;;;27075:19:0;;27067:74;;;;-1:-1:-1;;;27067:74:0;;15512:2:1;27067:74:0;;;15494:21:1;15551:2;15531:18;;;15524:30;15590:34;15570:18;;;15563:62;-1:-1:-1;;;15641:18:1;;;15634:40;15691:19;;27067:74:0;15310:406:1;27067:74:0;-1:-1:-1;;;;;;27159:16:0;;;;;:9;:16;;;;;;;26975:208::o;7250:94::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;7315:21:::1;7333:1;7315:9;:21::i;:::-;7250:94::o:0;51663:263::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;51751:5:::1;:12;47161:4;48633:7;48611:19;;:29;;;;:::i;:::-;:44;;48603:101;;;::::0;-1:-1:-1;;;48603:101:0;;19939:2:1;48603:101:0::1;::::0;::::1;19921:21:1::0;19978:2;19958:18;;;19951:30;20017:34;19997:18;;;19990:62;-1:-1:-1;;;20068:18:1;;;20061:42;20120:19;;48603:101:0::1;19737:408:1::0;48603:101:0::1;51781:9:::2;51776:143;51796:5;:12;51792:1;:16;51776:143;;;51864:4;51830:21;:31;51852:5;51858:1;51852:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;51830:31:0::2;-1:-1:-1::0;;;;;51830:31:0::2;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;51906:1;51883:19;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;51810:3:0;;-1:-1:-1;51810:3:0::2;::::0;::::2;:::i;:::-;;;;51776:143;;27720:104:::0;27776:13;27809:7;27802:14;;;;;:::i;29403:295::-;-1:-1:-1;;;;;29506:24:0;;5467:10;29506:24;;29498:62;;;;-1:-1:-1;;;29498:62:0;;12798:2:1;29498:62:0;;;12780:21:1;12837:2;12817:18;;;12810:30;12876:27;12856:18;;;12849:55;12921:18;;29498:62:0;12596:349:1;29498:62:0;5467:10;29573:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29573:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29573:53:0;;;;;;;;;;29642:48;;8477:41:1;;;29573:42:0;;5467:10;29642:48;;8450:18:1;29642:48:0;;;;;;;29403:295;;:::o;52533:479::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;52602:22:::1;52627:21;52637:10;52627:9;:21::i;:::-;52602:46;;52659:19;52681:13;40387:10:::0;:17;;40299:113;52681:13:::1;52659:35;;46927:3;52715:7;:18;;52707:70;;;::::0;-1:-1:-1;;;52707:70:0;;13565:2:1;52707:70:0::1;::::0;::::1;13547:21:1::0;13604:2;13584:18;;;13577:30;13643:34;13623:18;;;13616:62;-1:-1:-1;;;13694:18:1;;;13687:37;13741:19;;52707:70:0::1;13363:403:1::0;52707:70:0::1;46927:3;52796:24;52806:14:::0;52796:7;:24:::1;:::i;:::-;:35;;52788:105;;;::::0;-1:-1:-1;;;52788:105:0;;21169:2:1;52788:105:0::1;::::0;::::1;21151:21:1::0;21208:2;21188:18;;;21181:30;21247:34;21227:18;;;21220:62;21318:27;21298:18;;;21291:55;21363:19;;52788:105:0::1;20967:421:1::0;52788:105:0::1;52911:9;52906:99;52926:7;52922:1;:11;52906:99;;;52955:38;52965:10;52977:15;52991:1:::0;52977:11;:15:::1;:::i;52955:38::-;52935:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52906:99;;;;52591:421;;52533:479:::0;:::o;52061:272::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;52174:9:::1;52169:157;52189:5;:12;52185:1;:16;52169:157;;;52261:7;52269:1;52261:10;;;;;;;;:::i;:::-;;;;;;;52223:25;:35;52249:5;52255:1;52249:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;52223:35:0::1;-1:-1:-1::0;;;;;52223:35:0::1;;;;;;;;;;;;:48;;;;52313:1;52286:23;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;52203:3:0;;-1:-1:-1;52203:3:0::1;::::0;::::1;:::i;:::-;;;;52169:157;;30666:328:::0;30841:41;5467:10;30874:7;30841:18;:41::i;:::-;30833:103;;;;-1:-1:-1;;;30833:103:0;;;;;;;:::i;:::-;30947:39;30961:4;30967:2;30971:7;30980:5;30947:13;:39::i;50215:152::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;50291:2:::1;50294:1;50291:5;;;;;;;;:::i;:::-;;;;;;;50286:2;;:10;;;;;-1:-1:-1::0;;;;;50286:10:0::1;;;;;-1:-1:-1::0;;;;;50286:10:0::1;;;;;;50312:2;50315:1;50312:5;;;;;;;;:::i;:::-;;;;;;;50307:2;;:10;;;;;-1:-1:-1::0;;;;;50307:10:0::1;;;;;-1:-1:-1::0;;;;;50307:10:0::1;;;;;;50333:2;50336:1;50333:5;;;;;;;;:::i;:::-;;;;;;;50328:2;;:10;;;;;-1:-1:-1::0;;;;;50328:10:0::1;;;;;-1:-1:-1::0;;;;;50328:10:0::1;;;;;;50354:2;50357:1;50354:5;;;;;;;;:::i;:::-;;;;;;;50349:2;;:10;;;;;-1:-1:-1::0;;;;;50349:10:0::1;;;;;-1:-1:-1::0;;;;;50349:10:0::1;;;;;;50215:152:::0;:::o;27895:334::-;32569:4;32593:16;;;:7;:16;;;;;;27968:13;;-1:-1:-1;;;;;32593:16:0;27994:76;;;;-1:-1:-1;;;27994:76:0;;18293:2:1;27994:76:0;;;18275:21:1;18332:2;18312:18;;;18305:30;18371:34;18351:18;;;18344:62;-1:-1:-1;;;18422:18:1;;;18415:45;18477:19;;27994:76:0;18091:411:1;27994:76:0;28083:21;28107:10;:8;:10::i;:::-;28083:34;;28159:1;28141:7;28135:21;:25;:86;;;;;;;;;;;;;;;;;28187:7;28196:18;:7;:16;:18::i;:::-;28170:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28135:86;28128:93;27895:334;-1:-1:-1;;;27895:334:0:o;50450:368::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;50528:15:::1;50546:12;50555:3;50546:6:::0;:12:::1;:::i;:::-;50637:2;::::0;50528:30;;-1:-1:-1;;;;;;50637:2:0::1;50629:30;50646:12;50528:30:::0;50656:2:::1;50646:12;:::i;:::-;50629:30;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;50621:39;;;::::0;::::1;;50687:2;::::0;-1:-1:-1;;;;;50687:2:0::1;50679:30;50696:12;:7:::0;50706:2:::1;50696:12;:::i;:::-;50679:30;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;50671:39;;;::::0;::::1;;50737:2;::::0;-1:-1:-1;;;;;50737:2:0::1;50729:30;50746:12;:7:::0;50756:2:::1;50746:12;:::i;:::-;50729:30;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;50721:39;;;::::0;::::1;;50787:2;::::0;;-1:-1:-1;;;;;50787:2:0::1;::::0;50779:30:::1;::::0;50796:12:::1;::::0;:7;;:12:::1;:::i;:::-;50779:30;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;50771:39;;;::::0;::::1;50862:187:::0;50912:13;50937:82;;;;;;;;;;;;;;;;;;;50862:187;:::o;55194:668::-;49464:11;;49445:15;:30;;:49;;;;;49493:1;49479:11;;:15;49445:49;49437:93;;;;-1:-1:-1;;;49437:93:0;;10554:2:1;49437:93:0;;;10536:21:1;10593:2;10573:18;;;10566:30;10632:33;10612:18;;;10605:61;10683:18;;49437:93:0;10352:355:1;49437:93:0;55291:19:::1;55313:13;40387:10:::0;:17;;40299:113;55313:13:::1;55291:35;;55357:1;55347:7;:11;55339:52;;;::::0;-1:-1:-1;;;55339:52:0;;22364:2:1;55339:52:0::1;::::0;::::1;22346:21:1::0;22403:2;22383:18;;;22376:30;22442;22422:18;;;22415:58;22490:18;;55339:52:0::1;22162:352:1::0;55339:52:0::1;47115:1;55410:7;:37;;55402:90;;;::::0;-1:-1:-1;;;55402:90:0;;21955:2:1;55402:90:0::1;::::0;::::1;21937:21:1::0;21994:2;21974:18;;;21967:30;22033:34;22013:18;;;22006:62;-1:-1:-1;;;22084:18:1;;;22077:38;22132:19;;55402:90:0::1;21753:404:1::0;55402:90:0::1;55530:9;55511:15;55519:7:::0;47205:10:::1;55511:15;:::i;:::-;:28;;55503:69;;;;-1:-1:-1::0;;;55503:69:0::1;;;;;;;:::i;:::-;46881:5;46927:3;55591:21;55605:7:::0;55591:11;:21:::1;:::i;:::-;:31;;;;:::i;:::-;:44;;55583:99;;;;-1:-1:-1::0;;;55583:99:0::1;;;;;;;:::i;:::-;55708:9;55703:97;55722:7;55718:1;:11;55703:97;;;55750:38;55760:10;55772:15;55786:1:::0;55772:11;:15:::1;:::i;55750:38::-;55730:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55703:97;;;-1:-1:-1::0;55832:10:0::1;55812:31;::::0;;;:19:::1;:31;::::0;;;;:42;;55847:7;;55812:31;:42:::1;::::0;55847:7;;55812:42:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;55194:668:0:o;7499:192::-;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7588:22:0;::::1;7580:73;;;::::0;-1:-1:-1;;;7580:73:0;;10147:2:1;7580:73:0::1;::::0;::::1;10129:21:1::0;10186:2;10166:18;;;10159:30;10225:34;10205:18;;;10198:62;-1:-1:-1;;;10276:18:1;;;10269:36;10322:19;;7580:73:0::1;9945:402:1::0;7580:73:0::1;7664:19;7674:8;7664:9;:19::i;:::-;7499:192:::0;:::o;53148:938::-;48846:12;;48827:15;:31;;:51;;;;;48877:1;48862:12;;:16;48827:51;48819:96;;;;-1:-1:-1;;;48819:96:0;;8955:2:1;48819:96:0;;;8937:21:1;;;8974:18;;;8967:30;9033:34;9013:18;;;9006:62;9085:18;;48819:96:0;8753:356:1;48819:96:0;48952:12;;48934:15;:30;:50;;;;;48983:1;48968:12;;:16;48934:50;48926:81;;;;-1:-1:-1;;;48926:81:0;;14379:2:1;48926:81:0;;;14361:21:1;14418:2;14398:18;;;14391:30;-1:-1:-1;;;14437:18:1;;;14430:48;14495:18;;48926:81:0;14177:342:1;48926:81:0;53247:19:::1;53269:13;40387:10:::0;:17;;40299:113;53269:13:::1;53247:35;;46991:1;53303:7;:38;;53295:97;;;::::0;-1:-1:-1;;;53295:97:0;;16333:2:1;53295:97:0::1;::::0;::::1;16315:21:1::0;16372:2;16352:18;;;16345:30;16411:34;16391:18;;;16384:62;-1:-1:-1;;;16462:18:1;;;16455:44;16516:19;;53295:97:0::1;16131:410:1::0;53295:97:0::1;53433:10;53411:33;::::0;;;:21:::1;:33;::::0;;;;;::::1;;:41;;:33:::0;:41:::1;53403:89;;;::::0;-1:-1:-1;;;53403:89:0;;20765:2:1;53403:89:0::1;::::0;::::1;20747:21:1::0;20804:2;20784:18;;;20777:30;20843:34;20823:18;;;20816:62;-1:-1:-1;;;20894:18:1;;;20887:33;20937:19;;53403:89:0::1;20563:399:1::0;53403:89:0::1;53532:10;53511:32;::::0;;;:20:::1;:32;::::0;;;;;53546:1:::1;-1:-1:-1::0;53503:86:0::1;;;;-1:-1:-1::0;;;53503:86:0::1;;;;;;;:::i;:::-;53629:10;53608:32;::::0;;;:20:::1;:32;::::0;;;;;46991:1:::1;::::0;53608:42:::1;::::0;53643:7;;53608:42:::1;:::i;:::-;:73;;53600:123;;;;-1:-1:-1::0;;;53600:123:0::1;;;;;;;:::i;:::-;53761:9;53742:15;53750:7:::0;47205:10:::1;53742:15;:::i;:::-;:28;;53734:69;;;;-1:-1:-1::0;;;53734:69:0::1;;;;;;;:::i;:::-;46881:5;46927:3;53822:21;53836:7:::0;53822:11;:21:::1;:::i;:::-;:31;;;;:::i;:::-;:44;;53814:99;;;;-1:-1:-1::0;;;53814:99:0::1;;;;;;;:::i;:::-;53931:9;53926:97;53945:7;53941:1;:11;53926:97;;;53973:38;53983:10;53995:15;54009:1:::0;53995:11;:15:::1;:::i;53973:38::-;53953:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53926:97;;;-1:-1:-1::0;54056:10:0::1;54035:32;::::0;;;:20:::1;:32;::::0;;;;:43;;54071:7;;54035:32;:43:::1;::::0;54071:7;;54035:43:::1;:::i;51221:310::-:0;6672:6;;-1:-1:-1;;;;;6672:6:0;5467:10;6819:23;6811:68;;;;-1:-1:-1;;;6811:68:0;;;;;;;:::i;:::-;51310:10;51306:67:::1;;51337:12;:24:::0;;;51306:67:::1;51387:5;51396:1;51387:10;51383:66;;;51413:12;:24:::0;;;51383:66:::1;51463:5;51472:1;51463:10;51459:65;;;-1:-1:-1::0;51489:11:0::1;:23:::0;51221:310::o;39659:224::-;39761:4;-1:-1:-1;;;;;;39785:50:0;;-1:-1:-1;;;39785:50:0;;:90;;;39839:36;39863:11;39839:23;:36::i;36486:174::-;36561:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36561:29:0;-1:-1:-1;;;;;36561:29:0;;;;;;;;:24;;36615:23;36561:24;36615:14;:23::i;:::-;-1:-1:-1;;;;;36606:46:0;;;;;;;;;;;36486:174;;:::o;33488:110::-;33564:26;33574:2;33578:7;33564:26;;;;;;;;;;;;:9;:26::i;32798:348::-;32891:4;32593:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32593:16:0;32908:73;;;;-1:-1:-1;;;32908:73:0;;13152:2:1;32908:73:0;;;13134:21:1;13191:2;13171:18;;;13164:30;13230:34;13210:18;;;13203:62;-1:-1:-1;;;13281:18:1;;;13274:42;13333:19;;32908:73:0;12950:408:1;32908:73:0;32992:13;33008:23;33023:7;33008:14;:23::i;:::-;32992:39;;33061:5;-1:-1:-1;;;;;33050:16:0;:7;-1:-1:-1;;;;;33050:16:0;;:51;;;;33094:7;-1:-1:-1;;;;;33070:31:0;:20;33082:7;33070:11;:20::i;:::-;-1:-1:-1;;;;;33070:31:0;;33050:51;:87;;;-1:-1:-1;;;;;;29890:25:0;;;29866:4;29890:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33105:32;33042:96;32798:348;-1:-1:-1;;;;32798:348:0:o;35790:578::-;35949:4;-1:-1:-1;;;;;35922:31:0;:23;35937:7;35922:14;:23::i;:::-;-1:-1:-1;;;;;35922:31:0;;35914:85;;;;-1:-1:-1;;;35914:85:0;;17883:2:1;35914:85:0;;;17865:21:1;17922:2;17902:18;;;17895:30;17961:34;17941:18;;;17934:62;-1:-1:-1;;;18012:18:1;;;18005:39;18061:19;;35914:85:0;17681:405:1;35914:85:0;-1:-1:-1;;;;;36018:16:0;;36010:65;;;;-1:-1:-1;;;36010:65:0;;12393:2:1;36010:65:0;;;12375:21:1;12432:2;12412:18;;;12405:30;12471:34;12451:18;;;12444:62;-1:-1:-1;;;12522:18:1;;;12515:34;12566:19;;36010:65:0;12191:400:1;36010:65:0;36088:39;36109:4;36115:2;36119:7;36088:20;:39::i;:::-;36192:29;36209:1;36213:7;36192:8;:29::i;:::-;-1:-1:-1;;;;;36234:15:0;;;;;;:9;:15;;;;;:20;;36253:1;;36234:15;:20;;36253:1;;36234:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36265:13:0;;;;;;:9;:13;;;;;:18;;36282:1;;36265:13;:18;;36282:1;;36265:18;:::i;:::-;;;;-1:-1:-1;;36294:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36294:21:0;-1:-1:-1;;;;;36294:21:0;;;;;;;;;36333:27;;36294:16;;36333:27;;;;;;;35790:578;;;:::o;7699:173::-;7774:6;;;-1:-1:-1;;;;;7791:17:0;;;-1:-1:-1;;;;;;7791:17:0;;;;;;;7824:40;;7774:6;;;7791:17;7774:6;;7824:40;;7755:16;;7824:40;7744:128;7699:173;:::o;31876:315::-;32033:28;32043:4;32049:2;32053:7;32033:9;:28::i;:::-;32080:48;32103:4;32109:2;32113:7;32122:5;32080:22;:48::i;:::-;32072:111;;;;-1:-1:-1;;;32072:111:0;;;;;;;:::i;49817:110::-;49877:13;49910:9;49903:16;;;;;:::i;3003:723::-;3059:13;3280:10;3276:53;;-1:-1:-1;;3307:10:0;;;;;;;;;;;;-1:-1:-1;;;3307:10:0;;;;;3003:723::o;3276:53::-;3354:5;3339:12;3395:78;3402:9;;3395:78;;3428:8;;;;:::i;:::-;;-1:-1:-1;3451:10:0;;-1:-1:-1;3459:2:0;3451:10;;:::i;:::-;;;3395:78;;;3483:19;3515:6;3505:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3505:17:0;;3483:39;;3533:154;3540:10;;3533:154;;3567:11;3577:1;3567:11;;:::i;:::-;;-1:-1:-1;3636:10:0;3644:2;3636:5;:10;:::i;:::-;3623:24;;:2;:24;:::i;:::-;3610:39;;3593:6;3600;3593:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3593:56:0;;;;;;;;-1:-1:-1;3664:11:0;3673:2;3664:11;;:::i;:::-;;;3533:154;;26606:305;26708:4;-1:-1:-1;;;;;;26745:40:0;;-1:-1:-1;;;26745:40:0;;:105;;-1:-1:-1;;;;;;;26802:48:0;;-1:-1:-1;;;26802:48:0;26745:105;:158;;;-1:-1:-1;;;;;;;;;;18694:40:0;;;26867:36;18585:157;33825:321;33955:18;33961:2;33965:7;33955:5;:18::i;:::-;34006:54;34037:1;34041:2;34045:7;34054:5;34006:22;:54::i;:::-;33984:154;;;;-1:-1:-1;;;33984:154:0;;;;;;;:::i;48060:181::-;48188:45;48215:4;48221:2;48225:7;48188:26;:45::i;37225:799::-;37380:4;-1:-1:-1;;;;;37401:13:0;;8968:20;9016:8;37397:620;;37437:72;;-1:-1:-1;;;37437:72:0;;-1:-1:-1;;;;;37437:36:0;;;;;:72;;5467:10;;37488:4;;37494:7;;37503:5;;37437:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37437:72:0;;;;;;;;-1:-1:-1;;37437:72:0;;;;;;;;;;;;:::i;:::-;;;37433:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37679:13:0;;37675:272;;37722:60;;-1:-1:-1;;;37722:60:0;;;;;;;:::i;37675:272::-;37897:6;37891:13;37882:6;37878:2;37874:15;37867:38;37433:529;-1:-1:-1;;;;;;37560:51:0;-1:-1:-1;;;37560:51:0;;-1:-1:-1;37553:58:0;;37397:620;-1:-1:-1;38001:4:0;37225:799;;;;;;:::o;34482:382::-;-1:-1:-1;;;;;34562:16:0;;34554:61;;;;-1:-1:-1;;;34554:61:0;;16748:2:1;34554:61:0;;;16730:21:1;;;16767:18;;;16760:30;16826:34;16806:18;;;16799:62;16878:18;;34554:61:0;16546:356:1;34554:61:0;32569:4;32593:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32593:16:0;:30;34626:58;;;;-1:-1:-1;;;34626:58:0;;10914:2:1;34626:58:0;;;10896:21:1;10953:2;10933:18;;;10926:30;10992;10972:18;;;10965:58;11040:18;;34626:58:0;10712:352:1;34626:58:0;34697:45;34726:1;34730:2;34734:7;34697:20;:45::i;:::-;-1:-1:-1;;;;;34755:13:0;;;;;;:9;:13;;;;;:18;;34772:1;;34755:13;:18;;34772:1;;34755:18;:::i;:::-;;;;-1:-1:-1;;34784:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34784:21:0;-1:-1:-1;;;;;34784:21:0;;;;;;;;34823:33;;34784:16;;;34823:33;;34784:16;;34823:33;34482:382;;:::o;41335:589::-;-1:-1:-1;;;;;41541:18:0;;41537:187;;41576:40;41608:7;42751:10;:17;;42724:24;;;;:15;:24;;;;;:44;;;42779:24;;;;;;;;;;;;42647:164;41576:40;41537:187;;;41646:2;-1:-1:-1;;;;;41638:10:0;:4;-1:-1:-1;;;;;41638:10:0;;41634:90;;41665:47;41698:4;41704:7;41665:32;:47::i;:::-;-1:-1:-1;;;;;41738:16:0;;41734:183;;41771:45;41808:7;41771:36;:45::i;41734:183::-;41844:4;-1:-1:-1;;;;;41838:10:0;:2;-1:-1:-1;;;;;41838:10:0;;41834:83;;41865:40;41893:2;41897:7;41865:27;:40::i;43438:988::-;43704:22;43754:1;43729:22;43746:4;43729:16;:22::i;:::-;:26;;;;:::i;:::-;43766:18;43787:26;;;:17;:26;;;;;;43704:51;;-1:-1:-1;43920:28:0;;;43916:328;;-1:-1:-1;;;;;43987:18:0;;43965:19;43987:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44038:30;;;;;;:44;;;44155:30;;:17;:30;;;;;:43;;;43916:328;-1:-1:-1;44340:26:0;;;;:17;:26;;;;;;;;44333:33;;;-1:-1:-1;;;;;44384:18:0;;;;;:12;:18;;;;;:34;;;;;;;44377:41;43438:988::o;44721:1079::-;44999:10;:17;44974:22;;44999:21;;45019:1;;44999:21;:::i;:::-;45031:18;45052:24;;;:15;:24;;;;;;45425:10;:26;;44974:46;;-1:-1:-1;45052:24:0;;44974:46;;45425:26;;;;;;:::i;:::-;;;;;;;;;45403:48;;45489:11;45464:10;45475;45464:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45569:28;;;:15;:28;;;;;;;:41;;;45741:24;;;;;45734:31;45776:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44792:1008;;;44721:1079;:::o;42225:221::-;42310:14;42327:20;42344:2;42327:16;:20::i;:::-;-1:-1:-1;;;;;42358:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42403:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42225:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:679::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:186::-;1346:6;1399:2;1387:9;1378:7;1374:23;1370:32;1367:52;;;1415:1;1412;1405:12;1367:52;1438:29;1457:9;1438:29;:::i;1478:260::-;1546:6;1554;1607:2;1595:9;1586:7;1582:23;1578:32;1575:52;;;1623:1;1620;1613:12;1575:52;1646:29;1665:9;1646:29;:::i;:::-;1636:39;;1694:38;1728:2;1717:9;1713:18;1694:38;:::i;:::-;1684:48;;1478:260;;;;;:::o;1743:328::-;1820:6;1828;1836;1889:2;1877:9;1868:7;1864:23;1860:32;1857:52;;;1905:1;1902;1895:12;1857:52;1928:29;1947:9;1928:29;:::i;:::-;1918:39;;1976:38;2010:2;1999:9;1995:18;1976:38;:::i;:::-;1966:48;;2061:2;2050:9;2046:18;2033:32;2023:42;;1743:328;;;;;:::o;2076:666::-;2171:6;2179;2187;2195;2248:3;2236:9;2227:7;2223:23;2219:33;2216:53;;;2265:1;2262;2255:12;2216:53;2288:29;2307:9;2288:29;:::i;:::-;2278:39;;2336:38;2370:2;2359:9;2355:18;2336:38;:::i;:::-;2326:48;;2421:2;2410:9;2406:18;2393:32;2383:42;;2476:2;2465:9;2461:18;2448:32;2503:18;2495:6;2492:30;2489:50;;;2535:1;2532;2525:12;2489:50;2558:22;;2611:4;2603:13;;2599:27;-1:-1:-1;2589:55:1;;2640:1;2637;2630:12;2589:55;2663:73;2728:7;2723:2;2710:16;2705:2;2701;2697:11;2663:73;:::i;:::-;2653:83;;;2076:666;;;;;;;:::o;2747:347::-;2812:6;2820;2873:2;2861:9;2852:7;2848:23;2844:32;2841:52;;;2889:1;2886;2879:12;2841:52;2912:29;2931:9;2912:29;:::i;:::-;2902:39;;2991:2;2980:9;2976:18;2963:32;3038:5;3031:13;3024:21;3017:5;3014:32;3004:60;;3060:1;3057;3050:12;3004:60;3083:5;3073:15;;;2747:347;;;;;:::o;3099:254::-;3167:6;3175;3228:2;3216:9;3207:7;3203:23;3199:32;3196:52;;;3244:1;3241;3234:12;3196:52;3267:29;3286:9;3267:29;:::i;:::-;3257:39;3343:2;3328:18;;;;3315:32;;-1:-1:-1;;;3099:254:1:o;3358:348::-;3442:6;3495:2;3483:9;3474:7;3470:23;3466:32;3463:52;;;3511:1;3508;3501:12;3463:52;3551:9;3538:23;3584:18;3576:6;3573:30;3570:50;;;3616:1;3613;3606:12;3570:50;3639:61;3692:7;3683:6;3672:9;3668:22;3639:61;:::i;3711:1149::-;3829:6;3837;3890:2;3878:9;3869:7;3865:23;3861:32;3858:52;;;3906:1;3903;3896:12;3858:52;3946:9;3933:23;3975:18;4016:2;4008:6;4005:14;4002:34;;;4032:1;4029;4022:12;4002:34;4055:61;4108:7;4099:6;4088:9;4084:22;4055:61;:::i;:::-;4045:71;;4135:2;4125:12;;4190:2;4179:9;4175:18;4162:32;4219:2;4209:8;4206:16;4203:36;;;4235:1;4232;4225:12;4203:36;4258:24;;;-1:-1:-1;4313:4:1;4305:13;;4301:27;-1:-1:-1;4291:55:1;;4342:1;4339;4332:12;4291:55;4378:2;4365:16;4401:60;4417:43;4457:2;4417:43;:::i;4401:60::-;4483:3;4507:2;4502:3;4495:15;4535:2;4530:3;4526:12;4519:19;;4566:2;4562;4558:11;4614:7;4609:2;4603;4600:1;4596:10;4592:2;4588:19;4584:28;4581:41;4578:61;;;4635:1;4632;4625:12;4578:61;4657:1;4648:10;;4667:163;4681:2;4678:1;4675:9;4667:163;;;4738:17;;4726:30;;4699:1;4692:9;;;;;4776:12;;;;4808;;4667:163;;;4671:3;4849:5;4839:15;;;;;;;3711:1149;;;;;:::o;4865:245::-;4923:6;4976:2;4964:9;4955:7;4951:23;4947:32;4944:52;;;4992:1;4989;4982:12;4944:52;5031:9;5018:23;5050:30;5074:5;5050:30;:::i;5115:249::-;5184:6;5237:2;5225:9;5216:7;5212:23;5208:32;5205:52;;;5253:1;5250;5243:12;5205:52;5285:9;5279:16;5304:30;5328:5;5304:30;:::i;5369:450::-;5438:6;5491:2;5479:9;5470:7;5466:23;5462:32;5459:52;;;5507:1;5504;5497:12;5459:52;5547:9;5534:23;5580:18;5572:6;5569:30;5566:50;;;5612:1;5609;5602:12;5566:50;5635:22;;5688:4;5680:13;;5676:27;-1:-1:-1;5666:55:1;;5717:1;5714;5707:12;5666:55;5740:73;5805:7;5800:2;5787:16;5782:2;5778;5774:11;5740:73;:::i;5824:180::-;5883:6;5936:2;5924:9;5915:7;5911:23;5907:32;5904:52;;;5952:1;5949;5942:12;5904:52;-1:-1:-1;5975:23:1;;5824:180;-1:-1:-1;5824:180:1:o;6009:248::-;6077:6;6085;6138:2;6126:9;6117:7;6113:23;6109:32;6106:52;;;6154:1;6151;6144:12;6106:52;-1:-1:-1;;6177:23:1;;;6247:2;6232:18;;;6219:32;;-1:-1:-1;6009:248:1:o;6262:257::-;6303:3;6341:5;6335:12;6368:6;6363:3;6356:19;6384:63;6440:6;6433:4;6428:3;6424:14;6417:4;6410:5;6406:16;6384:63;:::i;:::-;6501:2;6480:15;-1:-1:-1;;6476:29:1;6467:39;;;;6508:4;6463:50;;6262:257;-1:-1:-1;;6262:257:1:o;6524:470::-;6703:3;6741:6;6735:13;6757:53;6803:6;6798:3;6791:4;6783:6;6779:17;6757:53;:::i;:::-;6873:13;;6832:16;;;;6895:57;6873:13;6832:16;6929:4;6917:17;;6895:57;:::i;:::-;6968:20;;6524:470;-1:-1:-1;;;;6524:470:1:o;7207:488::-;-1:-1:-1;;;;;7476:15:1;;;7458:34;;7528:15;;7523:2;7508:18;;7501:43;7575:2;7560:18;;7553:34;;;7623:3;7618:2;7603:18;;7596:31;;;7401:4;;7644:45;;7669:19;;7661:6;7644:45;:::i;:::-;7636:53;7207:488;-1:-1:-1;;;;;;7207:488:1:o;7700:632::-;7871:2;7923:21;;;7993:13;;7896:18;;;8015:22;;;7842:4;;7871:2;8094:15;;;;8068:2;8053:18;;;7842:4;8137:169;8151:6;8148:1;8145:13;8137:169;;;8212:13;;8200:26;;8281:15;;;;8246:12;;;;8173:1;8166:9;8137:169;;;-1:-1:-1;8323:3:1;;7700:632;-1:-1:-1;;;;;;7700:632:1:o;8529:219::-;8678:2;8667:9;8660:21;8641:4;8698:44;8738:2;8727:9;8723:18;8715:6;8698:44;:::i;9526:414::-;9728:2;9710:21;;;9767:2;9747:18;;;9740:30;9806:34;9801:2;9786:18;;9779:62;-1:-1:-1;;;9872:2:1;9857:18;;9850:48;9930:3;9915:19;;9526:414::o;11421:352::-;11623:2;11605:21;;;11662:2;11642:18;;;11635:30;11701;11696:2;11681:18;;11674:58;11764:2;11749:18;;11421:352::o;13771:401::-;13973:2;13955:21;;;14012:2;13992:18;;;13985:30;14051:34;14046:2;14031:18;;14024:62;-1:-1:-1;;;14117:2:1;14102:18;;14095:35;14162:3;14147:19;;13771:401::o;17320:356::-;17522:2;17504:21;;;17541:18;;;17534:30;17600:34;17595:2;17580:18;;17573:62;17667:2;17652:18;;17320:356::o;18507:405::-;18709:2;18691:21;;;18748:2;18728:18;;;18721:30;18787:34;18782:2;18767:18;;18760:62;-1:-1:-1;;;18853:2:1;18838:18;;18831:39;18902:3;18887:19;;18507:405::o;19319:413::-;19521:2;19503:21;;;19560:2;19540:18;;;19533:30;19599:34;19594:2;19579:18;;19572:62;-1:-1:-1;;;19665:2:1;19650:18;;19643:47;19722:3;19707:19;;19319:413::o;23110:275::-;23181:2;23175:9;23246:2;23227:13;;-1:-1:-1;;23223:27:1;23211:40;;23281:18;23266:34;;23302:22;;;23263:62;23260:88;;;23328:18;;:::i;:::-;23364:2;23357:22;23110:275;;-1:-1:-1;23110:275:1:o;23390:183::-;23450:4;23483:18;23475:6;23472:30;23469:56;;;23505:18;;:::i;:::-;-1:-1:-1;23550:1:1;23546:14;23562:4;23542:25;;23390:183::o;23578:128::-;23618:3;23649:1;23645:6;23642:1;23639:13;23636:39;;;23655:18;;:::i;:::-;-1:-1:-1;23691:9:1;;23578:128::o;23711:120::-;23751:1;23777;23767:35;;23782:18;;:::i;:::-;-1:-1:-1;23816:9:1;;23711:120::o;23836:168::-;23876:7;23942:1;23938;23934:6;23930:14;23927:1;23924:21;23919:1;23912:9;23905:17;23901:45;23898:71;;;23949:18;;:::i;:::-;-1:-1:-1;23989:9:1;;23836:168::o;24009:125::-;24049:4;24077:1;24074;24071:8;24068:34;;;24082:18;;:::i;:::-;-1:-1:-1;24119:9:1;;24009:125::o;24139:258::-;24211:1;24221:113;24235:6;24232:1;24229:13;24221:113;;;24311:11;;;24305:18;24292:11;;;24285:39;24257:2;24250:10;24221:113;;;24352:6;24349:1;24346:13;24343:48;;;-1:-1:-1;;24387:1:1;24369:16;;24362:27;24139:258::o;24402:380::-;24481:1;24477:12;;;;24524;;;24545:61;;24599:4;24591:6;24587:17;24577:27;;24545:61;24652:2;24644:6;24641:14;24621:18;24618:38;24615:161;;;24698:10;24693:3;24689:20;24686:1;24679:31;24733:4;24730:1;24723:15;24761:4;24758:1;24751:15;24615:161;;24402:380;;;:::o;24787:135::-;24826:3;-1:-1:-1;;24847:17:1;;24844:43;;;24867:18;;:::i;:::-;-1:-1:-1;24914:1:1;24903:13;;24787:135::o;24927:112::-;24959:1;24985;24975:35;;24990:18;;:::i;:::-;-1:-1:-1;25024:9:1;;24927:112::o;25044:127::-;25105:10;25100:3;25096:20;25093:1;25086:31;25136:4;25133:1;25126:15;25160:4;25157:1;25150:15;25176:127;25237:10;25232:3;25228:20;25225:1;25218:31;25268:4;25265:1;25258:15;25292:4;25289:1;25282:15;25308:127;25369:10;25364:3;25360:20;25357:1;25350:31;25400:4;25397:1;25390:15;25424:4;25421:1;25414:15;25440:127;25501:10;25496:3;25492:20;25489:1;25482:31;25532:4;25529:1;25522:15;25556:4;25553:1;25546:15;25572:127;25633:10;25628:3;25624:20;25621:1;25614:31;25664:4;25661:1;25654:15;25688:4;25685:1;25678:15;25704:131;-1:-1:-1;;;;;;25778:32:1;;25768:43;;25758:71;;25825:1;25822;25815:12

Swarm Source

ipfs://b3157322a239f65770b376d548babb15b5dda1e2806888841310b1e171f793a0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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