ETH Price: $3,080.35 (-6.76%)
Gas: 8 Gwei

Token

Emoji Garden (EMJG)
 

Overview

Max Total Supply

430 EMJG

Holders

126

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
1688888.eth
Balance
9 EMJG
0x7b41f235e12ae2d3696caae3f921412d7c2fca2b
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:
EmojiGarden

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/*

    .-''-.  ,---.    ,---.    ,-----.         .-./`)  .-./`)           .-_'''-.      ____    .-------.     ______         .-''-.  ,---.   .--. 
  .'_ _   \ |    \  /    |  .'  .-,  '.       \ '_ .')\ .-.')         '_( )_   \   .'  __ `. |  _ _   \   |    _ `''.   .'_ _   \ |    \  |  | 
 / ( ` )   '|  ,  \/  ,  | / ,-.|  \ _ \     (_ (_) _)/ `-' \        |(_ o _)|  ' /   '  \  \| ( ' )  |   | _ | ) _  \ / ( ` )   '|  ,  \ |  | 
. (_ o _)  ||  |\_   /|  |;  \  '_ /  | :      / .  \  `-'`"`        . (_,_)/___| |___|  /  ||(_ o _) /   |( ''_'  ) |. (_ o _)  ||  |\_ \|  | 
|  (_,_)___||  _( )_/ |  ||  _`,/ \ _/  | ___  |-'`|   .---.         |  |  .-----.   _.-`   || (_,_).' __ | . (_) `. ||  (_,_)___||  _( )_\  | 
'  \   .---.| (_ o _) |  |: (  '\_/ \   ;|   | |   '   |   |         '  \  '-   .'.'   _    ||  |\ \  |  ||(_    ._) ''  \   .---.| (_ o _)  | 
 \  `-'    /|  (_,_)  |  | \ `"/  \  ) / |   `-'  /    |   |          \  `-'`   | |  _( )_  ||  | \ `'   /|  (_.\.' /  \  `-'    /|  (_,_)\  | 
  \       / |  |      |  |  '. \_/``".'   \      /     |   |           \        / \ (_ o _) /|  |  \    / |       .'    \       / |  |    |  | 
   `'-..-'  '--'      '--'    '-----'      `-..-'      '---'            `'-...-'   '.(_,_).' ''-'   `'-'  '-----'`       `'-..-'  '--'    '--' 
                                                                                                                                               
*/

pragma solidity ^0.8.4;

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

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


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



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



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





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




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





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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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



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




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

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

        return string(abi.encodePacked("Emoji Garden Token"));
    }

    /**
     * @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 owned");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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







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


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


contract EmojiGarden is ERC721Enumerable, ReentrancyGuard, Ownable {
    
    uint256 basePrice = 10000000; // 0.01 ether
    
    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function pluck(uint256 rand) internal pure returns (string memory) { 
        string memory emoji; 
        if(rand < 42) { 
            emoji = unicode"🌼";
        }
        else if(rand < 75) { 
            emoji = unicode"🌻"; 
        }
        else if(rand < 78) { 
            emoji = unicode"🌺"; 
        }
        else if(rand < 81) { 
            emoji = unicode"🌷";    
        }
        else if(rand < 83) { 
            emoji = unicode"🌹";    
        }
        else if(rand < 85) { 
            emoji = unicode"🌸"; 
        }
        else if(rand < 86) { 
            emoji = unicode"🥀"; 
        }
        else if(rand < 88) { 
            emoji = unicode"🌱"; 
        }
        else if(rand < 89) { 
            emoji = unicode"🌾"; 
        }
        else if(rand < 90) { 
            emoji = unicode"🍄"; 
        }
        else if(rand < 92) { 
            emoji = unicode"🌰"; 
        }
        else if(rand < 93) { 
            emoji = unicode"🍀";    
        }
        else if(rand < 94) { 
            emoji = unicode"🐌"; 
        }
        else if(rand < 96) { 
            emoji = unicode"🦋";    
        }
        else if(rand < 97) { 
            emoji = unicode"🐇";    
        }
        else if(rand < 98) { 
            emoji = unicode"🦆";    
        }
        else { 
            emoji = unicode"🐝"; 
        }

        return string(abi.encodePacked(emoji)); 
        
    }
    
    function emoji1(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        uint256 row = 1; 
        uint256 rand = uint256(keccak256(abi.encodePacked(tokenId, address(this), row))) % 100; // pseudo-random, slot 1 
        return string(abi.encodePacked(pluck(rand))); 
    }
    
    function emoji2(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        uint256 row = 1; 
        uint256 rand = uint256(keccak256(abi.encodePacked(address(this), row, tokenId))) % 100;  // pseudo-random, slot 2
        return string(abi.encodePacked(pluck(rand))); 
    }
    
    function emoji3(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        uint256 row = 1; 
        uint256 rand = uint256(keccak256(abi.encodePacked(row, tokenId, address(this)))) % 100;  // pseudo-random, slot 2
        return string(abi.encodePacked(pluck(rand))); 
    }
    
    function emoji4(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        uint256 row = 2; 
        uint256 rand = uint256(keccak256(abi.encodePacked(tokenId, address(this), row))) % 100; // pseudo-random, slot 1 
        return string(abi.encodePacked(pluck(rand))); 
    }
    
    function emoji5(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { 
            string[24] memory hons = [ 
                unicode"🏘️",
                unicode"🍉", 
                unicode"🍸", 
                unicode"🎙️",
                unicode"🐈", 
                unicode"😺", 
                unicode"🎢", 
                unicode"🎃", 
                unicode"🤝", 
                unicode"📈", 
                unicode"🎛️", 
                unicode"🍨", 
                unicode"🦄", 
                unicode"⛓️",
                unicode"🐛", 
                unicode"⚔️", //16
                unicode"🐶️", 
                unicode"⛺",
                unicode"🤡", 
                unicode"🍵", //20
                unicode"💎", 
                unicode"🧊", 
                unicode"🐼", 
                unicode"🌭"
            ];
            return hons[tokenId-4421]; 
        }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        uint256 row = 2; 
        uint256 rand = uint256(keccak256(abi.encodePacked(address(this), row, tokenId))) % 100;  // pseudo-random, slot 2
        return string(abi.encodePacked(pluck(rand))); 
    }
    
    function emoji6(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { 
            if(tokenId == 4425) { 
                return unicode"🦆";
            }
        }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        uint256 row = 2; 
        uint256 rand = uint256(keccak256(abi.encodePacked(row, tokenId, address(this)))) % 100;  // pseudo-random, slot 2
        return string(abi.encodePacked(pluck(rand))); 
    }
    
    function emoji7(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        uint256 row = 3; 
        uint256 rand = uint256(keccak256(abi.encodePacked(tokenId, address(this), row))) % 100; // pseudo-random, slot 1 
        return string(abi.encodePacked(pluck(rand))); 
    }
    
    function emoji8(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        uint256 row = 3; 
        uint256 rand = uint256(keccak256(abi.encodePacked(address(this), row, tokenId))) % 100;  // pseudo-random, slot 2
        return string(abi.encodePacked(pluck(rand))); 
    }
    
    function emoji9(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        uint256 row = 3; 
        uint256 rand = uint256(keccak256(abi.encodePacked(row, tokenId, address(this)))) % 100;  // pseudo-random, slot 2
        return string(abi.encodePacked(pluck(rand))); 
    }
    
    function emojiString(uint256 tokenId) public view returns (string memory) { 
        if(tokenId > 4420 && tokenId < 4445) { }
        else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        
        string[9] memory parts; 
        
        parts[0] = emoji1(tokenId); 
        parts[1] = emoji2(tokenId); 
        parts[2] = emoji3(tokenId); 
        
        parts[3] = emoji4(tokenId); 
        parts[4] = emoji5(tokenId); 
        parts[5] = emoji6(tokenId); 
        
        parts[6] = emoji7(tokenId); 
        parts[7] = emoji8(tokenId); 
        parts[8] = emoji9(tokenId); 
        
        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4])); 
        
        output = string(abi.encodePacked(output, parts[5], parts[6], parts[7], parts[8]));

        return output;
    }
    
    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        if(tokenId > 4420 && tokenId < 4445) { } else { 
            require(tokenId > 0 && tokenId <= totalSupply(), "Token ID invalid");
        }
        
        string[13] memory parts;
        
        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.e{font-size:48pt;letter-spacing:.25em}</style><rect width="100%" height="100%" fill="#303841"/><text x="50%" y="25%" class="e" dominant-baseline="middle" text-anchor="middle">';
        
        parts[1] = emoji1(tokenId); 
        parts[2] = emoji2(tokenId); 
        parts[3] = emoji3(tokenId); 
        
        parts[4] = '</text><text x="50%" y="50%" class="e" dominant-baseline="middle" text-anchor="middle">'; 
        
        parts[5] = emoji4(tokenId); 
        parts[6] = emoji5(tokenId); 
        parts[7] = emoji6(tokenId); 
        
        parts[8] = '</text><text x="50%" y="75%" class="e" dominant-baseline="middle" text-anchor="middle">'; 
        
        parts[9] = emoji7(tokenId); 
        parts[10] = emoji8(tokenId); 
        parts[11] = emoji9(tokenId); 
        
        parts[12] = '</text></svg>'; 

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7])); 
        
        output = string(abi.encodePacked(output, parts[8], parts[9], parts[10], parts[11], parts[12]));
        
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Garden #', toString(tokenId), '", "description": "A beautiful garden stored entirely on-chain, easy to extract and build upon. Feel free to use this garden in any way you want.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }
    
    function ownerClaim() public nonReentrant onlyOwner {
        for(uint256 i = 4421; i < 4445; i++){
            _safeMint( owner(), i );
        }
    }
    
    function ownerSetPrice(uint256 priceValue) public nonReentrant onlyOwner { 
        basePrice = priceValue; 
    }
    
    function mintOne() public payable {
        uint256 supply = totalSupply();
        require( supply + 1 < 4421, "Exceeds available supply" );
        if(basePrice == 10000000) { 
            require( msg.value == 0.01 ether, "Price is 0.01 ETH, please check price and try again" );
        }
        else { 
            require( msg.value == 0 ether, "It is currently free to mint, please send with a zero value" ); 
        }
        _safeMint( msg.sender, supply + 1 );
    }
    
    function mintTwo() public payable {
        uint256 supply = totalSupply();
        require( supply + 2 < 4421, "Exceeds available supply" );
        if(basePrice == 10000000) { 
            require( msg.value == 0.02 ether, "Price is 0.02 ETH, please check price and try again" );
        }
        else { 
            require( msg.value == 0 ether, "It is currently free to mint, please send with a zero value" ); 
        }
        _safeMint( msg.sender, supply + 1 );
        _safeMint( msg.sender, supply + 2 );
    }
    
    function mintThree() public payable {
        uint256 supply = totalSupply();
        require( supply + 3 < 4421, "Exceeds available supply" );
        if(basePrice == 10000000) { 
            require( msg.value == 0.03 ether, "Price is 0.03 ETH, please check price and try again" );
        }
        else { 
            require( msg.value == 0 ether, "It is currently free to mint, please send with a zero value" ); 
        }
        _safeMint( msg.sender, supply + 1 );
        _safeMint( msg.sender, supply + 2 );
        _safeMint( msg.sender, supply + 3 );
    }

    function withdraw() public onlyOwner(){
        payable(msg.sender).transfer(address(this).balance);
    }
    
    function maxSupply() public pure returns (uint256) { 
        return 4444;    
    }
    
    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }
    
    constructor() ERC721("Emoji Garden", "EMJG") Ownable() {}
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"uint256","name":"tokenId","type":"uint256"}],"name":"emoji1","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emoji2","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emoji3","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emoji4","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emoji5","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emoji6","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emoji7","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emoji8","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emoji9","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emojiString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"mintOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintThree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTwo","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":[],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceValue","type":"uint256"}],"name":"ownerSetPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405262989680600c553480156200001857600080fd5b50604080518082018252600c81526b22b6b7b5349023b0b93232b760a11b602080830191825283518085019094526004845263454d4a4760e01b9084015281519192916200006991600091620000ea565b5080516200007f906001906020840190620000ea565b50506001600a5550620000923362000098565b620001cd565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f89062000190565b90600052602060002090601f0160209004810192826200011c576000855562000167565b82601f106200013757805160ff191683800117855562000167565b8280016001018555821562000167579182015b82811115620001675782518255916020019190600101906200014a565b506200017592915062000179565b5090565b5b808211156200017557600081556001016200017a565b600181811c90821680620001a557607f821691505b60208210811415620001c757634e487b7160e01b600052602260045260246000fd5b50919050565b61369f80620001dd6000396000f3fe60806040526004361061020f5760003560e01c80636fef172c11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146105b2578063e282353d146105c7578063e985e9c5146105e7578063ebebf57614610630578063f2fde38b1461065057600080fd5b8063b88d4fde14610532578063b9d1d15814610552578063c87b56dd14610572578063ccbfea551461059257600080fd5b806387f712d4116100e757806387f712d4146104b75780638da5cb5b146104bf5780638eeb4923146104dd57806395d89b41146104fd578063a22cb4651461051257600080fd5b80636fef172c1461044257806370a0823114610462578063715018a614610482578063717392511461049757600080fd5b806323b872dd1161019b5780634b1e5b331161016a5780634b1e5b33146103c55780634dbe5889146103e55780634f6ccce7146103fa5780635aa9e2a81461041a5780636352211e1461042257600080fd5b806323b872dd146103505780632f745c59146103705780633ccfd60b1461039057806342842e0e146103a557600080fd5b8063095ea7b3116101e2578063095ea7b3146102c75780630ced8637146102e957806318160ddd146102f1578063185973b214610310578063188e7f971461033057600080fd5b806301a39b631461021457806301ffc9a71461024a57806306fdde031461027a578063081812fc1461028f575b600080fd5b34801561022057600080fd5b5061023461022f366004612d1c565b610670565b604051610241919061313d565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612ce2565b610764565b6040519015158152602001610241565b34801561028657600080fd5b5061023461078f565b34801561029b57600080fd5b506102af6102aa366004612d1c565b610821565b6040516001600160a01b039091168152602001610241565b3480156102d357600080fd5b506102e76102e2366004612cb8565b6108b6565b005b6102e76109cc565b3480156102fd57600080fd5b506008545b604051908152602001610241565b34801561031c57600080fd5b506102e761032b366004612d1c565b610abd565b34801561033c57600080fd5b5061023461034b366004612d1c565b610b49565b34801561035c57600080fd5b506102e761036b366004612b64565b610c94565b34801561037c57600080fd5b5061030261038b366004612cb8565b610cc5565b34801561039c57600080fd5b506102e7610d5b565b3480156103b157600080fd5b506102e76103c0366004612b64565b610db1565b3480156103d157600080fd5b506102346103e0366004612d1c565b610dcc565b3480156103f157600080fd5b506102e7610e37565b34801561040657600080fd5b50610302610415366004612d1c565b610efc565b6102e7610f8f565b34801561042e57600080fd5b506102af61043d366004612d1c565b611096565b34801561044e57600080fd5b5061023461045d366004612d1c565b61110d565b34801561046e57600080fd5b5061030261047d366004612b0f565b611178565b34801561048e57600080fd5b506102e76111ff565b3480156104a357600080fd5b506102346104b2366004612d1c565b611235565b6102e76112a0565b3480156104cb57600080fd5b50600b546001600160a01b03166102af565b3480156104e957600080fd5b506102346104f8366004612d1c565b611398565b34801561050957600080fd5b506102346116ed565b34801561051e57600080fd5b506102e761052d366004612c7c565b6116fc565b34801561053e57600080fd5b506102e761054d366004612ba0565b6117c1565b34801561055e57600080fd5b5061023461056d366004612d1c565b6117f9565b34801561057e57600080fd5b5061023461058d366004612d1c565b611864565b34801561059e57600080fd5b506102346105ad366004612d1c565b611ab0565b3480156105be57600080fd5b5061115c610302565b3480156105d357600080fd5b506102346105e2366004612d1c565b611b1b565b3480156105f357600080fd5b5061026a610602366004612b31565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063c57600080fd5b5061023461064b366004612d1c565b611b86565b34801561065c57600080fd5b506102e761066b366004612b0f565b611bf1565b606061114482118015610684575061115d82105b156106b8578161114914156106b3575050604080518082019091526004815263784fd34360e11b602082015290565b6106ef565b6000821180156106ca57506008548211155b6106ef5760405162461bcd60e51b81526004016106e69061320e565b60405180910390fd5b6000600290506000606482853060405160200161070e939291906130dd565b6040516020818303038152906040528051906020012060001c61073191906133ca565b905061073c81611c89565b60405160200161074c9190612d86565b60405160208183030381529060405292505050919050565b60006001600160e01b0319821663780e9d6360e01b1480610789575061078982611f71565b92915050565b60606000805461079e90613374565b80601f01602080910402602001604051908101604052809291908181526020018280546107ca90613374565b80156108175780601f106107ec57610100808354040283529160200191610817565b820191906000526020600020905b8154815290600101906020018083116107fa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661089a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e6565b506000908152600460205260409020546001600160a01b031690565b60006108c182611096565b9050806001600160a01b0316836001600160a01b0316141561092f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e6565b336001600160a01b038216148061094b575061094b8133610602565b6109bd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e6565b6109c78383611fc1565b505050565b60006109d760085490565b90506111456109e78260016132e6565b10610a045760405162461bcd60e51b81526004016106e6906131a2565b600c54629896801415610a885734662386f26fc1000014610a835760405162461bcd60e51b815260206004820152603360248201527f507269636520697320302e3031204554482c20706c6561736520636865636b20604482015272383934b1b29030b732103a393c9030b3b0b4b760691b60648201526084016106e6565b610aa6565b3415610aa65760405162461bcd60e51b81526004016106e690613289565b610aba33610ab58360016132e6565b61202f565b50565b6002600a541415610b105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e6565b6002600a55600b546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016106e6906131d9565b600c556001600a55565b606061114482118015610b5d575061115d82105b15610b6757610b95565b600082118015610b7957506008548211155b610b955760405162461bcd60e51b81526004016106e69061320e565b610b9d612ab0565b610ba683611b86565b8152610bb183611ab0565b6020820152610bbf83611b1b565b6040820152610bcd8361110d565b6060820152610bdb83611398565b6080820152610be983610670565b60a0820152610bf7836117f9565b60c0820152610c0583611235565b60e0820152610c1383610dcc565b6101008201528051602080830151604080850151606086015160808701519251600096610c44969095949101612da2565b60408051808303601f190181529082905260a084015160c085015160e0860151610100870151939550610c7c94869490602001612da2565b60408051601f19818403018152919052949350505050565b610c9e338261204d565b610cba5760405162461bcd60e51b81526004016106e690613238565b6109c7838383612144565b6000610cd083611178565b8210610d325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610d855760405162461bcd60e51b81526004016106e6906131d9565b60405133904780156108fc02916000818181858888f19350505050158015610aba573d6000803e3d6000fd5b6109c7838383604051806020016040528060008152506117c1565b606061114482118015610de0575061115d82105b15610dea57610e18565b600082118015610dfc57506008548211155b610e185760405162461bcd60e51b81526004016106e69061320e565b6000600390506000606482853060405160200161070e939291906130dd565b6002600a541415610e8a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e6565b6002600a55600b546001600160a01b03163314610eb95760405162461bcd60e51b81526004016106e6906131d9565b6111455b61115d811015610ef457610ee2610edc600b546001600160a01b031690565b8261202f565b80610eec816133af565b915050610ebd565b506001600a55565b6000610f0760085490565b8210610f6a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e6565b60088281548110610f7d57610f7d613420565b90600052602060002001549050919050565b6000610f9a60085490565b9050611145610faa8260036132e6565b10610fc75760405162461bcd60e51b81526004016106e6906131a2565b600c5462989680141561104b5734666a94d74f430000146110465760405162461bcd60e51b815260206004820152603360248201527f507269636520697320302e3033204554482c20706c6561736520636865636b20604482015272383934b1b29030b732103a393c9030b3b0b4b760691b60648201526084016106e6565b611069565b34156110695760405162461bcd60e51b81526004016106e690613289565b61107833610ab58360016132e6565b61108733610ab58360026132e6565b610aba33610ab58360036132e6565b6000818152600260205260408120546001600160a01b0316806107895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e6565b606061114482118015611121575061115d82105b1561112b57611159565b60008211801561113d57506008548211155b6111595760405162461bcd60e51b81526004016106e69061320e565b6000600290506000606484308460405160200161070e939291906130ba565b60006001600160a01b0382166111e35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e6565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112295760405162461bcd60e51b81526004016106e6906131d9565b61123360006122f1565b565b606061114482118015611249575061115d82105b1561125357611281565b60008211801561126557506008548211155b6112815760405162461bcd60e51b81526004016106e69061320e565b6000600390506000606430838660405160200161070e93929190612d61565b60006112ab60085490565b90506111456112bb8260026132e6565b106112d85760405162461bcd60e51b81526004016106e6906131a2565b600c5462989680141561135c573466470de4df820000146113575760405162461bcd60e51b815260206004820152603360248201527f507269636520697320302e3032204554482c20706c6561736520636865636b20604482015272383934b1b29030b732103a393c9030b3b0b4b760691b60648201526084016106e6565b61137a565b341561137a5760405162461bcd60e51b81526004016106e690613289565b61138933610ab58360016132e6565b610aba33610ab58360026132e6565b6060611144821180156113ac575061115d82105b156116a05760408051610340810182526007610300820181815266f09f8f98efb88f60c81b610320840152825282518084018452600480825263f09f8d8960e01b6020838101919091528085019290925284518086018652818152631e13f1b760e31b81840152848601528451808601865283815266f09f8e99efb88f60c81b81840152606085015284518086018652818152631e13f21160e31b8184015260808501528451808601865281815263784fcc5d60e11b8184015260a08501528451808601865281815263784fc75160e11b8184015260c08501528451808601865281815263f09f8e8360e01b8184015260e08501528451808601865281815263f09fa49d60e01b8184015261010085015284518086018652818152631e13f27160e31b818401526101208501528451808601865283815266f09f8e9befb88f60c81b8184015261014085015284518086018652818152631e13f1b560e31b8184015261016085015284518086018652818152633c27e9a160e21b8184015261018085015284518086018652600680825265e29b93efb88f60d01b828501526101a08601919091528551808701875282815263f09f909b60e01b818501526101c08601528551808701875290815265e29a94efb88f60d01b818401526101e08501528451808601865292835266f09f90b6efb88f60c81b83830152610200840192909252835180850185526003815262714ddd60e91b818301526102208401528351808501855282815263f09fa4a160e01b818301526102408401528351808501855282815263f09f8db560e01b818301526102608401528351808501855282815263784fc94760e11b818301526102808401528351808501855282815263784fd3c560e11b818301526102a084015283518085018552828152633c27e42f60e21b818301526102c0840152835180850190945290835263f09f8cad60e01b908301526102e08101919091528061168461114585613331565b6018811061169457611694613420565b60200201519392505050565b6000821180156116b257506008548211155b6116ce5760405162461bcd60e51b81526004016106e69061320e565b6000600290506000606430838660405160200161070e93929190612d61565b60606001805461079e90613374565b6001600160a01b0382163314156117555760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117cb338361204d565b6117e75760405162461bcd60e51b81526004016106e690613238565b6117f384848484612343565b50505050565b60606111448211801561180d575061115d82105b1561181757611845565b60008211801561182957506008548211155b6118455760405162461bcd60e51b81526004016106e69061320e565b6000600390506000606484308460405160200161070e939291906130ba565b606061114482118015611878575061115d82105b15611882576118b0565b60008211801561189457506008548211155b6118b05760405162461bcd60e51b81526004016106e69061320e565b6118b8612ad8565b6040518061014001604052806101198152602001613463610119913981526118df83611b86565b60208201526118ed83611ab0565b60408201526118fb83611b1b565b6060820152604080516080810190915260578082526135bc602083013960808201526119268361110d565b60a082015261193483611398565b60c082015261194283610670565b60e082015260408051608081019091526057808252613613602083013961010082015261196e836117f9565b61012082015261197d83611235565b61014082015261198c83610dcc565b610160820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610180840191909152825181840151838501516060860151608087015160a088015160c089015160e08a015198516000996119f699909101612e8c565b60408051808303601f1901815290829052610100840151610120850151610140860151610160870151610180880151949650611a3795879590602001612e0d565b60405160208183030381529060405290506000611a84611a5686612376565b611a5f84612474565b604051602001611a70929190612f31565b604051602081830303815290604052612474565b905080604051602001611a979190613075565b60408051601f1981840301815291905295945050505050565b606061114482118015611ac4575061115d82105b15611ace57611afc565b600082118015611ae057506008548211155b611afc5760405162461bcd60e51b81526004016106e69061320e565b6000600190506000606430838660405160200161070e93929190612d61565b606061114482118015611b2f575061115d82105b15611b3957611b67565b600082118015611b4b57506008548211155b611b675760405162461bcd60e51b81526004016106e69061320e565b6000600190506000606482853060405160200161070e939291906130dd565b606061114482118015611b9a575061115d82105b15611ba457611bd2565b600082118015611bb657506008548211155b611bd25760405162461bcd60e51b81526004016106e69061320e565b6000600190506000606484308460405160200161070e939291906130ba565b600b546001600160a01b03163314611c1b5760405162461bcd60e51b81526004016106e6906131d9565b6001600160a01b038116611c805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e6565b610aba816122f1565b606080602a831015611cb657506040805180820190915260048152633c27e32f60e21b6020820152611f49565b604b831015611ce05750604080518082019091526004815263f09f8cbb60e01b6020820152611f49565b604e831015611d0a5750604080518082019091526004815263784fc65d60e11b6020820152611f49565b6051831015611d345750604080518082019091526004815263f09f8cb760e01b6020820152611f49565b6053831015611d5e5750604080518082019091526004815263f09f8cb960e01b6020820152611f49565b6055831015611d8857506040805180820190915260048152631e13f19760e31b6020820152611f49565b6056831015611db2575060408051808201909152600481526301e13f4b60e71b6020820152611f49565b6058831015611ddc5750604080518082019091526004815263f09f8cb160e01b6020820152611f49565b6059831015611e065750604080518082019091526004815263784fc65f60e11b6020820152611f49565b605a831015611e3057506040805180820190915260048152633c27e36160e21b6020820152611f49565b605c831015611e5a57506040805180820190915260048152630f09f8cb60e41b6020820152611f49565b605d831015611e84575060408051808201909152600481526301e13f1b60e71b6020820152611f49565b605e831015611eae57506040805180820190915260048152633c27e42360e21b6020820152611f49565b6060831015611ed85750604080518082019091526004815263f09fa68b60e01b6020820152611f49565b6061831015611f025750604080518082019091526004815263f09f908760e01b6020820152611f49565b6062831015611f2c5750604080518082019091526004815263784fd34360e11b6020820152611f49565b50604080518082019091526004815263f09f909d60e01b60208201525b80604051602001611f5a9190612d86565b604051602081830303815290604052915050919050565b60006001600160e01b031982166380ac58cd60e01b1480611fa257506001600160e01b03198216635b5e139f60e01b145b8061078957506301ffc9a760e01b6001600160e01b0319831614610789565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ff682611096565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6120498282604051806020016040528060008152506125da565b5050565b6000818152600260205260408120546001600160a01b03166120c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e6565b60006120d183611096565b9050806001600160a01b0316846001600160a01b0316148061210c5750836001600160a01b031661210184610821565b6001600160a01b0316145b8061213c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661215782611096565b6001600160a01b0316146121c15760405162461bcd60e51b815260206004820152602b60248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526a1cc81b9bdd081bdddb995960aa1b60648201526084016106e6565b6001600160a01b0382166122235760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e6565b61222e83838361260d565b612239600082611fc1565b6001600160a01b0383166000908152600360205260408120805460019290612262908490613331565b90915550506001600160a01b03821660009081526003602052604081208054600192906122909084906132e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61234e848484612144565b61235a848484846126c5565b6117f35760405162461bcd60e51b81526004016106e690613150565b60608161239a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123c457806123ae816133af565b91506123bd9050600a836132fe565b915061239e565b60008167ffffffffffffffff8111156123df576123df613436565b6040519080825280601f01601f191660200182016040528015612409576020820181803683370190505b5090505b841561213c5761241e600183613331565b915061242b600a866133ca565b6124369060306132e6565b60f81b81838151811061244b5761244b613420565b60200101906001600160f81b031916908160001a90535061246d600a866132fe565b945061240d565b805160609080612494575050604080516020810190915260008152919050565b600060036124a38360026132e6565b6124ad91906132fe565b6124b8906004613312565b905060006124c78260206132e6565b67ffffffffffffffff8111156124df576124df613436565b6040519080825280601f01601f191660200182016040528015612509576020820181803683370190505b509050600060405180606001604052806040815260200161357c604091399050600181016020830160005b86811015612595576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612534565b5060038606600181146125af57600281146125c0576125cc565b613d3d60f01b6001198301526125cc565b603d60f81b6000198301525b505050918152949350505050565b6125e483836127d2565b6125f160008484846126c5565b6109c75760405162461bcd60e51b81526004016106e690613150565b6001600160a01b0383166126685761266381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61268b565b816001600160a01b0316836001600160a01b03161461268b5761268b8382612920565b6001600160a01b0382166126a2576109c7816129bd565b826001600160a01b0316826001600160a01b0316146109c7576109c78282612a6c565b60006001600160a01b0384163b156127c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612709903390899088908890600401613100565b602060405180830381600087803b15801561272357600080fd5b505af1925050508015612753575060408051601f3d908101601f1916820190925261275091810190612cff565b60015b6127ad573d808015612781576040519150601f19603f3d011682016040523d82523d6000602084013e612786565b606091505b5080516127a55760405162461bcd60e51b81526004016106e690613150565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061213c565b506001949350505050565b6001600160a01b0382166128285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e6565b6000818152600260205260409020546001600160a01b03161561288d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e6565b6128996000838361260d565b6001600160a01b03821660009081526003602052604081208054600192906128c29084906132e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161292d84611178565b6129379190613331565b60008381526007602052604090205490915080821461298a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129cf90600190613331565b600083815260096020526040812054600880549394509092849081106129f7576129f7613420565b906000526020600020015490508060088381548110612a1857612a18613420565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a5057612a5061340a565b6001900381819060005260206000200160009055905550505050565b6000612a7783611178565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061012001604052806009905b6060815260200190600190039081612ac05790505090565b604080516101a0810190915260608152600c60208201612ac0565b80356001600160a01b0381168114612b0a57600080fd5b919050565b600060208284031215612b2157600080fd5b612b2a82612af3565b9392505050565b60008060408385031215612b4457600080fd5b612b4d83612af3565b9150612b5b60208401612af3565b90509250929050565b600080600060608486031215612b7957600080fd5b612b8284612af3565b9250612b9060208501612af3565b9150604084013590509250925092565b60008060008060808587031215612bb657600080fd5b612bbf85612af3565b9350612bcd60208601612af3565b925060408501359150606085013567ffffffffffffffff80821115612bf157600080fd5b818701915087601f830112612c0557600080fd5b813581811115612c1757612c17613436565b604051601f8201601f19908116603f01168101908382118183101715612c3f57612c3f613436565b816040528281528a6020848701011115612c5857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612c8f57600080fd5b612c9883612af3565b915060208301358015158114612cad57600080fd5b809150509250929050565b60008060408385031215612ccb57600080fd5b612cd483612af3565b946020939093013593505050565b600060208284031215612cf457600080fd5b8135612b2a8161344c565b600060208284031215612d1157600080fd5b8151612b2a8161344c565b600060208284031215612d2e57600080fd5b5035919050565b60008151808452612d4d816020860160208601613348565b601f01601f19169290920160200192915050565b60609390931b6001600160601b03191683526014830191909152603482015260540190565b60008251612d98818460208701613348565b9190910192915050565b60008651612db4818460208b01613348565b865190830190612dc8818360208b01613348565b8651910190612ddb818360208a01613348565b8551910190612dee818360208901613348565b8451910190612e01818360208801613348565b01979650505050505050565b600087516020612e208285838d01613348565b885191840191612e338184848d01613348565b8851920191612e458184848c01613348565b8751920191612e578184848b01613348565b8651920191612e698184848a01613348565b8551920191612e7b8184848901613348565b919091019998505050505050505050565b600089516020612e9f8285838f01613348565b8a5191840191612eb28184848f01613348565b8a51920191612ec48184848e01613348565b8951920191612ed68184848d01613348565b8851920191612ee88184848c01613348565b8751920191612efa8184848b01613348565b8651920191612f0c8184848a01613348565b8551920191612f1e8184848901613348565b919091019b9a5050505050505050505050565b717b226e616d65223a202247617264656e202360701b81528251600090612f5f816012850160208801613348565b7f222c20226465736372697074696f6e223a2022412062656175746966756c20676012918401918201527f617264656e2073746f72656420656e746972656c79206f6e2d636861696e2c2060328201527f6561737920746f206578747261637420616e64206275696c642075706f6e2e2060528201527f4665656c206672656520746f2075736520746869732067617264656e20696e2060728201527f616e792077617920796f752077616e742e222c2022696d616765223a2022646160928201527f74613a696d6167652f7376672b786d6c3b6261736536342c000000000000000060b2820152835161305a8160ca840160208801613348565b61227d60f01b60ca929091019182015260cc01949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516130ad81601d850160208701613348565b91909101601d0192915050565b92835260609190911b6001600160601b0319166020830152603482015260540190565b928352602083019190915260601b6001600160601b031916604082015260540190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061313390830184612d35565b9695505050505050565b602081526000612b2a6020830184612d35565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f4578636565647320617661696c61626c6520737570706c790000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252603b908201527f49742069732063757272656e746c79206672656520746f206d696e742c20706c60408201527f656173652073656e6420776974682061207a65726f2076616c75650000000000606082015260800190565b600082198211156132f9576132f96133de565b500190565b60008261330d5761330d6133f4565b500490565b600081600019048311821515161561332c5761332c6133de565b500290565b600082821015613343576133436133de565b500390565b60005b8381101561336357818101518382015260200161334b565b838111156117f35750506000910152565b600181811c9082168061338857607f821691505b602082108114156133a957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133c3576133c36133de565b5060010190565b6000826133d9576133d96133f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610aba57600080fdfe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e657b666f6e742d73697a653a343870743b6c65747465722d73706163696e673a2e3235656d7d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d2223333033383431222f3e3c7465787420783d223530252220793d223235252220636c6173733d22652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d223530252220793d223530252220636c6173733d22652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e3c2f746578743e3c7465787420783d223530252220793d223735252220636c6173733d22652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223ea2646970667358221220d71622622ccfad96d46f94e1769f446e221d8762f10c7a150674cfc4830e4d6764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636fef172c11610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146105b2578063e282353d146105c7578063e985e9c5146105e7578063ebebf57614610630578063f2fde38b1461065057600080fd5b8063b88d4fde14610532578063b9d1d15814610552578063c87b56dd14610572578063ccbfea551461059257600080fd5b806387f712d4116100e757806387f712d4146104b75780638da5cb5b146104bf5780638eeb4923146104dd57806395d89b41146104fd578063a22cb4651461051257600080fd5b80636fef172c1461044257806370a0823114610462578063715018a614610482578063717392511461049757600080fd5b806323b872dd1161019b5780634b1e5b331161016a5780634b1e5b33146103c55780634dbe5889146103e55780634f6ccce7146103fa5780635aa9e2a81461041a5780636352211e1461042257600080fd5b806323b872dd146103505780632f745c59146103705780633ccfd60b1461039057806342842e0e146103a557600080fd5b8063095ea7b3116101e2578063095ea7b3146102c75780630ced8637146102e957806318160ddd146102f1578063185973b214610310578063188e7f971461033057600080fd5b806301a39b631461021457806301ffc9a71461024a57806306fdde031461027a578063081812fc1461028f575b600080fd5b34801561022057600080fd5b5061023461022f366004612d1c565b610670565b604051610241919061313d565b60405180910390f35b34801561025657600080fd5b5061026a610265366004612ce2565b610764565b6040519015158152602001610241565b34801561028657600080fd5b5061023461078f565b34801561029b57600080fd5b506102af6102aa366004612d1c565b610821565b6040516001600160a01b039091168152602001610241565b3480156102d357600080fd5b506102e76102e2366004612cb8565b6108b6565b005b6102e76109cc565b3480156102fd57600080fd5b506008545b604051908152602001610241565b34801561031c57600080fd5b506102e761032b366004612d1c565b610abd565b34801561033c57600080fd5b5061023461034b366004612d1c565b610b49565b34801561035c57600080fd5b506102e761036b366004612b64565b610c94565b34801561037c57600080fd5b5061030261038b366004612cb8565b610cc5565b34801561039c57600080fd5b506102e7610d5b565b3480156103b157600080fd5b506102e76103c0366004612b64565b610db1565b3480156103d157600080fd5b506102346103e0366004612d1c565b610dcc565b3480156103f157600080fd5b506102e7610e37565b34801561040657600080fd5b50610302610415366004612d1c565b610efc565b6102e7610f8f565b34801561042e57600080fd5b506102af61043d366004612d1c565b611096565b34801561044e57600080fd5b5061023461045d366004612d1c565b61110d565b34801561046e57600080fd5b5061030261047d366004612b0f565b611178565b34801561048e57600080fd5b506102e76111ff565b3480156104a357600080fd5b506102346104b2366004612d1c565b611235565b6102e76112a0565b3480156104cb57600080fd5b50600b546001600160a01b03166102af565b3480156104e957600080fd5b506102346104f8366004612d1c565b611398565b34801561050957600080fd5b506102346116ed565b34801561051e57600080fd5b506102e761052d366004612c7c565b6116fc565b34801561053e57600080fd5b506102e761054d366004612ba0565b6117c1565b34801561055e57600080fd5b5061023461056d366004612d1c565b6117f9565b34801561057e57600080fd5b5061023461058d366004612d1c565b611864565b34801561059e57600080fd5b506102346105ad366004612d1c565b611ab0565b3480156105be57600080fd5b5061115c610302565b3480156105d357600080fd5b506102346105e2366004612d1c565b611b1b565b3480156105f357600080fd5b5061026a610602366004612b31565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063c57600080fd5b5061023461064b366004612d1c565b611b86565b34801561065c57600080fd5b506102e761066b366004612b0f565b611bf1565b606061114482118015610684575061115d82105b156106b8578161114914156106b3575050604080518082019091526004815263784fd34360e11b602082015290565b6106ef565b6000821180156106ca57506008548211155b6106ef5760405162461bcd60e51b81526004016106e69061320e565b60405180910390fd5b6000600290506000606482853060405160200161070e939291906130dd565b6040516020818303038152906040528051906020012060001c61073191906133ca565b905061073c81611c89565b60405160200161074c9190612d86565b60405160208183030381529060405292505050919050565b60006001600160e01b0319821663780e9d6360e01b1480610789575061078982611f71565b92915050565b60606000805461079e90613374565b80601f01602080910402602001604051908101604052809291908181526020018280546107ca90613374565b80156108175780601f106107ec57610100808354040283529160200191610817565b820191906000526020600020905b8154815290600101906020018083116107fa57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661089a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e6565b506000908152600460205260409020546001600160a01b031690565b60006108c182611096565b9050806001600160a01b0316836001600160a01b0316141561092f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e6565b336001600160a01b038216148061094b575061094b8133610602565b6109bd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e6565b6109c78383611fc1565b505050565b60006109d760085490565b90506111456109e78260016132e6565b10610a045760405162461bcd60e51b81526004016106e6906131a2565b600c54629896801415610a885734662386f26fc1000014610a835760405162461bcd60e51b815260206004820152603360248201527f507269636520697320302e3031204554482c20706c6561736520636865636b20604482015272383934b1b29030b732103a393c9030b3b0b4b760691b60648201526084016106e6565b610aa6565b3415610aa65760405162461bcd60e51b81526004016106e690613289565b610aba33610ab58360016132e6565b61202f565b50565b6002600a541415610b105760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e6565b6002600a55600b546001600160a01b03163314610b3f5760405162461bcd60e51b81526004016106e6906131d9565b600c556001600a55565b606061114482118015610b5d575061115d82105b15610b6757610b95565b600082118015610b7957506008548211155b610b955760405162461bcd60e51b81526004016106e69061320e565b610b9d612ab0565b610ba683611b86565b8152610bb183611ab0565b6020820152610bbf83611b1b565b6040820152610bcd8361110d565b6060820152610bdb83611398565b6080820152610be983610670565b60a0820152610bf7836117f9565b60c0820152610c0583611235565b60e0820152610c1383610dcc565b6101008201528051602080830151604080850151606086015160808701519251600096610c44969095949101612da2565b60408051808303601f190181529082905260a084015160c085015160e0860151610100870151939550610c7c94869490602001612da2565b60408051601f19818403018152919052949350505050565b610c9e338261204d565b610cba5760405162461bcd60e51b81526004016106e690613238565b6109c7838383612144565b6000610cd083611178565b8210610d325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03163314610d855760405162461bcd60e51b81526004016106e6906131d9565b60405133904780156108fc02916000818181858888f19350505050158015610aba573d6000803e3d6000fd5b6109c7838383604051806020016040528060008152506117c1565b606061114482118015610de0575061115d82105b15610dea57610e18565b600082118015610dfc57506008548211155b610e185760405162461bcd60e51b81526004016106e69061320e565b6000600390506000606482853060405160200161070e939291906130dd565b6002600a541415610e8a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106e6565b6002600a55600b546001600160a01b03163314610eb95760405162461bcd60e51b81526004016106e6906131d9565b6111455b61115d811015610ef457610ee2610edc600b546001600160a01b031690565b8261202f565b80610eec816133af565b915050610ebd565b506001600a55565b6000610f0760085490565b8210610f6a5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e6565b60088281548110610f7d57610f7d613420565b90600052602060002001549050919050565b6000610f9a60085490565b9050611145610faa8260036132e6565b10610fc75760405162461bcd60e51b81526004016106e6906131a2565b600c5462989680141561104b5734666a94d74f430000146110465760405162461bcd60e51b815260206004820152603360248201527f507269636520697320302e3033204554482c20706c6561736520636865636b20604482015272383934b1b29030b732103a393c9030b3b0b4b760691b60648201526084016106e6565b611069565b34156110695760405162461bcd60e51b81526004016106e690613289565b61107833610ab58360016132e6565b61108733610ab58360026132e6565b610aba33610ab58360036132e6565b6000818152600260205260408120546001600160a01b0316806107895760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e6565b606061114482118015611121575061115d82105b1561112b57611159565b60008211801561113d57506008548211155b6111595760405162461bcd60e51b81526004016106e69061320e565b6000600290506000606484308460405160200161070e939291906130ba565b60006001600160a01b0382166111e35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e6565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146112295760405162461bcd60e51b81526004016106e6906131d9565b61123360006122f1565b565b606061114482118015611249575061115d82105b1561125357611281565b60008211801561126557506008548211155b6112815760405162461bcd60e51b81526004016106e69061320e565b6000600390506000606430838660405160200161070e93929190612d61565b60006112ab60085490565b90506111456112bb8260026132e6565b106112d85760405162461bcd60e51b81526004016106e6906131a2565b600c5462989680141561135c573466470de4df820000146113575760405162461bcd60e51b815260206004820152603360248201527f507269636520697320302e3032204554482c20706c6561736520636865636b20604482015272383934b1b29030b732103a393c9030b3b0b4b760691b60648201526084016106e6565b61137a565b341561137a5760405162461bcd60e51b81526004016106e690613289565b61138933610ab58360016132e6565b610aba33610ab58360026132e6565b6060611144821180156113ac575061115d82105b156116a05760408051610340810182526007610300820181815266f09f8f98efb88f60c81b610320840152825282518084018452600480825263f09f8d8960e01b6020838101919091528085019290925284518086018652818152631e13f1b760e31b81840152848601528451808601865283815266f09f8e99efb88f60c81b81840152606085015284518086018652818152631e13f21160e31b8184015260808501528451808601865281815263784fcc5d60e11b8184015260a08501528451808601865281815263784fc75160e11b8184015260c08501528451808601865281815263f09f8e8360e01b8184015260e08501528451808601865281815263f09fa49d60e01b8184015261010085015284518086018652818152631e13f27160e31b818401526101208501528451808601865283815266f09f8e9befb88f60c81b8184015261014085015284518086018652818152631e13f1b560e31b8184015261016085015284518086018652818152633c27e9a160e21b8184015261018085015284518086018652600680825265e29b93efb88f60d01b828501526101a08601919091528551808701875282815263f09f909b60e01b818501526101c08601528551808701875290815265e29a94efb88f60d01b818401526101e08501528451808601865292835266f09f90b6efb88f60c81b83830152610200840192909252835180850185526003815262714ddd60e91b818301526102208401528351808501855282815263f09fa4a160e01b818301526102408401528351808501855282815263f09f8db560e01b818301526102608401528351808501855282815263784fc94760e11b818301526102808401528351808501855282815263784fd3c560e11b818301526102a084015283518085018552828152633c27e42f60e21b818301526102c0840152835180850190945290835263f09f8cad60e01b908301526102e08101919091528061168461114585613331565b6018811061169457611694613420565b60200201519392505050565b6000821180156116b257506008548211155b6116ce5760405162461bcd60e51b81526004016106e69061320e565b6000600290506000606430838660405160200161070e93929190612d61565b60606001805461079e90613374565b6001600160a01b0382163314156117555760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e6565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117cb338361204d565b6117e75760405162461bcd60e51b81526004016106e690613238565b6117f384848484612343565b50505050565b60606111448211801561180d575061115d82105b1561181757611845565b60008211801561182957506008548211155b6118455760405162461bcd60e51b81526004016106e69061320e565b6000600390506000606484308460405160200161070e939291906130ba565b606061114482118015611878575061115d82105b15611882576118b0565b60008211801561189457506008548211155b6118b05760405162461bcd60e51b81526004016106e69061320e565b6118b8612ad8565b6040518061014001604052806101198152602001613463610119913981526118df83611b86565b60208201526118ed83611ab0565b60408201526118fb83611b1b565b6060820152604080516080810190915260578082526135bc602083013960808201526119268361110d565b60a082015261193483611398565b60c082015261194283610670565b60e082015260408051608081019091526057808252613613602083013961010082015261196e836117f9565b61012082015261197d83611235565b61014082015261198c83610dcc565b610160820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610180840191909152825181840151838501516060860151608087015160a088015160c089015160e08a015198516000996119f699909101612e8c565b60408051808303601f1901815290829052610100840151610120850151610140860151610160870151610180880151949650611a3795879590602001612e0d565b60405160208183030381529060405290506000611a84611a5686612376565b611a5f84612474565b604051602001611a70929190612f31565b604051602081830303815290604052612474565b905080604051602001611a979190613075565b60408051601f1981840301815291905295945050505050565b606061114482118015611ac4575061115d82105b15611ace57611afc565b600082118015611ae057506008548211155b611afc5760405162461bcd60e51b81526004016106e69061320e565b6000600190506000606430838660405160200161070e93929190612d61565b606061114482118015611b2f575061115d82105b15611b3957611b67565b600082118015611b4b57506008548211155b611b675760405162461bcd60e51b81526004016106e69061320e565b6000600190506000606482853060405160200161070e939291906130dd565b606061114482118015611b9a575061115d82105b15611ba457611bd2565b600082118015611bb657506008548211155b611bd25760405162461bcd60e51b81526004016106e69061320e565b6000600190506000606484308460405160200161070e939291906130ba565b600b546001600160a01b03163314611c1b5760405162461bcd60e51b81526004016106e6906131d9565b6001600160a01b038116611c805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e6565b610aba816122f1565b606080602a831015611cb657506040805180820190915260048152633c27e32f60e21b6020820152611f49565b604b831015611ce05750604080518082019091526004815263f09f8cbb60e01b6020820152611f49565b604e831015611d0a5750604080518082019091526004815263784fc65d60e11b6020820152611f49565b6051831015611d345750604080518082019091526004815263f09f8cb760e01b6020820152611f49565b6053831015611d5e5750604080518082019091526004815263f09f8cb960e01b6020820152611f49565b6055831015611d8857506040805180820190915260048152631e13f19760e31b6020820152611f49565b6056831015611db2575060408051808201909152600481526301e13f4b60e71b6020820152611f49565b6058831015611ddc5750604080518082019091526004815263f09f8cb160e01b6020820152611f49565b6059831015611e065750604080518082019091526004815263784fc65f60e11b6020820152611f49565b605a831015611e3057506040805180820190915260048152633c27e36160e21b6020820152611f49565b605c831015611e5a57506040805180820190915260048152630f09f8cb60e41b6020820152611f49565b605d831015611e84575060408051808201909152600481526301e13f1b60e71b6020820152611f49565b605e831015611eae57506040805180820190915260048152633c27e42360e21b6020820152611f49565b6060831015611ed85750604080518082019091526004815263f09fa68b60e01b6020820152611f49565b6061831015611f025750604080518082019091526004815263f09f908760e01b6020820152611f49565b6062831015611f2c5750604080518082019091526004815263784fd34360e11b6020820152611f49565b50604080518082019091526004815263f09f909d60e01b60208201525b80604051602001611f5a9190612d86565b604051602081830303815290604052915050919050565b60006001600160e01b031982166380ac58cd60e01b1480611fa257506001600160e01b03198216635b5e139f60e01b145b8061078957506301ffc9a760e01b6001600160e01b0319831614610789565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ff682611096565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6120498282604051806020016040528060008152506125da565b5050565b6000818152600260205260408120546001600160a01b03166120c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e6565b60006120d183611096565b9050806001600160a01b0316846001600160a01b0316148061210c5750836001600160a01b031661210184610821565b6001600160a01b0316145b8061213c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661215782611096565b6001600160a01b0316146121c15760405162461bcd60e51b815260206004820152602b60248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526a1cc81b9bdd081bdddb995960aa1b60648201526084016106e6565b6001600160a01b0382166122235760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e6565b61222e83838361260d565b612239600082611fc1565b6001600160a01b0383166000908152600360205260408120805460019290612262908490613331565b90915550506001600160a01b03821660009081526003602052604081208054600192906122909084906132e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61234e848484612144565b61235a848484846126c5565b6117f35760405162461bcd60e51b81526004016106e690613150565b60608161239a5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123c457806123ae816133af565b91506123bd9050600a836132fe565b915061239e565b60008167ffffffffffffffff8111156123df576123df613436565b6040519080825280601f01601f191660200182016040528015612409576020820181803683370190505b5090505b841561213c5761241e600183613331565b915061242b600a866133ca565b6124369060306132e6565b60f81b81838151811061244b5761244b613420565b60200101906001600160f81b031916908160001a90535061246d600a866132fe565b945061240d565b805160609080612494575050604080516020810190915260008152919050565b600060036124a38360026132e6565b6124ad91906132fe565b6124b8906004613312565b905060006124c78260206132e6565b67ffffffffffffffff8111156124df576124df613436565b6040519080825280601f01601f191660200182016040528015612509576020820181803683370190505b509050600060405180606001604052806040815260200161357c604091399050600181016020830160005b86811015612595576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101612534565b5060038606600181146125af57600281146125c0576125cc565b613d3d60f01b6001198301526125cc565b603d60f81b6000198301525b505050918152949350505050565b6125e483836127d2565b6125f160008484846126c5565b6109c75760405162461bcd60e51b81526004016106e690613150565b6001600160a01b0383166126685761266381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61268b565b816001600160a01b0316836001600160a01b03161461268b5761268b8382612920565b6001600160a01b0382166126a2576109c7816129bd565b826001600160a01b0316826001600160a01b0316146109c7576109c78282612a6c565b60006001600160a01b0384163b156127c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612709903390899088908890600401613100565b602060405180830381600087803b15801561272357600080fd5b505af1925050508015612753575060408051601f3d908101601f1916820190925261275091810190612cff565b60015b6127ad573d808015612781576040519150601f19603f3d011682016040523d82523d6000602084013e612786565b606091505b5080516127a55760405162461bcd60e51b81526004016106e690613150565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061213c565b506001949350505050565b6001600160a01b0382166128285760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e6565b6000818152600260205260409020546001600160a01b03161561288d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e6565b6128996000838361260d565b6001600160a01b03821660009081526003602052604081208054600192906128c29084906132e6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161292d84611178565b6129379190613331565b60008381526007602052604090205490915080821461298a576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129cf90600190613331565b600083815260096020526040812054600880549394509092849081106129f7576129f7613420565b906000526020600020015490508060088381548110612a1857612a18613420565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a5057612a5061340a565b6001900381819060005260206000200160009055905550505050565b6000612a7783611178565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061012001604052806009905b6060815260200190600190039081612ac05790505090565b604080516101a0810190915260608152600c60208201612ac0565b80356001600160a01b0381168114612b0a57600080fd5b919050565b600060208284031215612b2157600080fd5b612b2a82612af3565b9392505050565b60008060408385031215612b4457600080fd5b612b4d83612af3565b9150612b5b60208401612af3565b90509250929050565b600080600060608486031215612b7957600080fd5b612b8284612af3565b9250612b9060208501612af3565b9150604084013590509250925092565b60008060008060808587031215612bb657600080fd5b612bbf85612af3565b9350612bcd60208601612af3565b925060408501359150606085013567ffffffffffffffff80821115612bf157600080fd5b818701915087601f830112612c0557600080fd5b813581811115612c1757612c17613436565b604051601f8201601f19908116603f01168101908382118183101715612c3f57612c3f613436565b816040528281528a6020848701011115612c5857600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612c8f57600080fd5b612c9883612af3565b915060208301358015158114612cad57600080fd5b809150509250929050565b60008060408385031215612ccb57600080fd5b612cd483612af3565b946020939093013593505050565b600060208284031215612cf457600080fd5b8135612b2a8161344c565b600060208284031215612d1157600080fd5b8151612b2a8161344c565b600060208284031215612d2e57600080fd5b5035919050565b60008151808452612d4d816020860160208601613348565b601f01601f19169290920160200192915050565b60609390931b6001600160601b03191683526014830191909152603482015260540190565b60008251612d98818460208701613348565b9190910192915050565b60008651612db4818460208b01613348565b865190830190612dc8818360208b01613348565b8651910190612ddb818360208a01613348565b8551910190612dee818360208901613348565b8451910190612e01818360208801613348565b01979650505050505050565b600087516020612e208285838d01613348565b885191840191612e338184848d01613348565b8851920191612e458184848c01613348565b8751920191612e578184848b01613348565b8651920191612e698184848a01613348565b8551920191612e7b8184848901613348565b919091019998505050505050505050565b600089516020612e9f8285838f01613348565b8a5191840191612eb28184848f01613348565b8a51920191612ec48184848e01613348565b8951920191612ed68184848d01613348565b8851920191612ee88184848c01613348565b8751920191612efa8184848b01613348565b8651920191612f0c8184848a01613348565b8551920191612f1e8184848901613348565b919091019b9a5050505050505050505050565b717b226e616d65223a202247617264656e202360701b81528251600090612f5f816012850160208801613348565b7f222c20226465736372697074696f6e223a2022412062656175746966756c20676012918401918201527f617264656e2073746f72656420656e746972656c79206f6e2d636861696e2c2060328201527f6561737920746f206578747261637420616e64206275696c642075706f6e2e2060528201527f4665656c206672656520746f2075736520746869732067617264656e20696e2060728201527f616e792077617920796f752077616e742e222c2022696d616765223a2022646160928201527f74613a696d6167652f7376672b786d6c3b6261736536342c000000000000000060b2820152835161305a8160ca840160208801613348565b61227d60f01b60ca929091019182015260cc01949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516130ad81601d850160208701613348565b91909101601d0192915050565b92835260609190911b6001600160601b0319166020830152603482015260540190565b928352602083019190915260601b6001600160601b031916604082015260540190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061313390830184612d35565b9695505050505050565b602081526000612b2a6020830184612d35565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526018908201527f4578636565647320617661696c61626c6520737570706c790000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252603b908201527f49742069732063757272656e746c79206672656520746f206d696e742c20706c60408201527f656173652073656e6420776974682061207a65726f2076616c75650000000000606082015260800190565b600082198211156132f9576132f96133de565b500190565b60008261330d5761330d6133f4565b500490565b600081600019048311821515161561332c5761332c6133de565b500290565b600082821015613343576133436133de565b500390565b60005b8381101561336357818101518382015260200161334b565b838111156117f35750506000910152565b600181811c9082168061338857607f821691505b602082108114156133a957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156133c3576133c36133de565b5060010190565b6000826133d9576133d96133f4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610aba57600080fdfe3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e657b666f6e742d73697a653a343870743b6c65747465722d73706163696e673a2e3235656d7d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d2223333033383431222f3e3c7465787420783d223530252220793d223235252220636c6173733d22652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d223530252220793d223530252220636c6173733d22652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223e3c2f746578743e3c7465787420783d223530252220793d223735252220636c6173733d22652220646f6d696e616e742d626173656c696e653d226d6964646c652220746578742d616e63686f723d226d6964646c65223ea2646970667358221220d71622622ccfad96d46f94e1769f446e221d8762f10c7a150674cfc4830e4d6764736f6c63430008070033

Deployed Bytecode Sourcemap

43794:12786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48803:545;;;;;;;;;;-1:-1:-1;48803:545:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37644:224;;;;;;;;;;-1:-1:-1;37644:224:0;;;;;:::i;:::-;;:::i;:::-;;;11720:14:1;;11713:22;11695:41;;11683:2;11668:18;37644:224:0;11555:187:1;24841:100:0;;;;;;;;;;;;;:::i;26315:221::-;;;;;;;;;;-1:-1:-1;26315:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11018:32:1;;;11000:51;;10988:2;10973:18;26315:221:0;10854:203:1;25838:411:0;;;;;;;;;;-1:-1:-1;25838:411:0;;;;;:::i;:::-;;:::i;:::-;;53942:487;;;:::i;38284:113::-;;;;;;;;;;-1:-1:-1;38372:10:0;:17;38284:113;;;21656:25:1;;;21644:2;21629:18;38284:113:0;21510:177:1;53814:116:0;;;;;;;;;;-1:-1:-1;53814:116:0;;;;;:::i;:::-;;:::i;50731:907::-;;;;;;;;;;-1:-1:-1;50731:907:0;;;;;:::i;:::-;;:::i;27205:339::-;;;;;;;;;;-1:-1:-1;27205:339:0;;;;;:::i;:::-;;:::i;37952:256::-;;;;;;;;;;-1:-1:-1;37952:256:0;;;;;:::i;:::-;;:::i;55575:108::-;;;;;;;;;;;;;:::i;27615:185::-;;;;;;;;;;-1:-1:-1;27615:185:0;;;;;:::i;:::-;;:::i;50274:445::-;;;;;;;;;;-1:-1:-1;50274:445:0;;;;;:::i;:::-;;:::i;53646:156::-;;;;;;;;;;;;;:::i;38474:233::-;;;;;;;;;;-1:-1:-1;38474:233:0;;;;;:::i;:::-;;:::i;54986:581::-;;;:::i;24535:239::-;;;;;;;;;;-1:-1:-1;24535:239:0;;;;;:::i;:::-;;:::i;46972:445::-;;;;;;;;;;-1:-1:-1;46972:445:0;;;;;:::i;:::-;;:::i;24265:208::-;;;;;;;;;;-1:-1:-1;24265:208:0;;;;;:::i;:::-;;:::i;9301:94::-;;;;;;;;;;;;;:::i;49817:445::-;;;;;;;;;;-1:-1:-1;49817:445:0;;;;;:::i;:::-;;:::i;54441:533::-;;;:::i;8650:87::-;;;;;;;;;;-1:-1:-1;8723:6:0;;-1:-1:-1;;;;;8723:6:0;8650:87;;47429:1362;;;;;;;;;;-1:-1:-1;47429:1362:0;;;;;:::i;:::-;;:::i;25010:104::-;;;;;;;;;;;;;:::i;26608:295::-;;;;;;;;;;-1:-1:-1;26608:295:0;;;;;:::i;:::-;;:::i;27871:328::-;;;;;;;;;;-1:-1:-1;27871:328:0;;;;;:::i;:::-;;:::i;49360:445::-;;;;;;;;;;-1:-1:-1;49360:445:0;;;;;:::i;:::-;;:::i;51650:1984::-;;;;;;;;;;-1:-1:-1;51650:1984:0;;;;;:::i;:::-;;:::i;46058:445::-;;;;;;;;;;-1:-1:-1;46058:445:0;;;;;:::i;:::-;;:::i;55695:86::-;;;;;;;;;;-1:-1:-1;55765:4:0;55695:86;;46515:445;;;;;;;;;;-1:-1:-1;46515:445:0;;;;;:::i;:::-;;:::i;26974:164::-;;;;;;;;;;-1:-1:-1;26974:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27095:25:0;;;27071:4;27095:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26974:164;45601:445;;;;;;;;;;-1:-1:-1;45601:445:0;;;;;:::i;:::-;;:::i;9550:192::-;;;;;;;;;;-1:-1:-1;9550:192:0;;;;;:::i;:::-;;:::i;48803:545::-;48857:13;48897:4;48887:7;:14;:32;;;;;48915:4;48905:7;:14;48887:32;48884:251;;;48940:7;48951:4;48940:15;48937:76;;;-1:-1:-1;;48977:20:0;;;;;;;;;;;;-1:-1:-1;;;48977:20:0;;;;;48803:545::o;48937:76::-;48884:251;;;49073:1;49063:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;49078:7;:24;;49063:39;49055:68;;;;-1:-1:-1;;;49055:68:0;;;;;;;:::i;:::-;;;;;;;;;49145:11;49159:1;49145:15;;49172:12;49255:3;49222;49227:7;49244:4;49205:45;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49195:56;;;;;;49187:65;;:71;;;;:::i;:::-;49172:86;;49326:11;49332:4;49326:5;:11::i;:::-;49309:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;49295:44;;;;48803:545;;;:::o;37644:224::-;37746:4;-1:-1:-1;;;;;;37770:50:0;;-1:-1:-1;;;37770:50:0;;:90;;;37824:36;37848:11;37824:23;:36::i;:::-;37763:97;37644:224;-1:-1:-1;;37644:224:0:o;24841:100::-;24895:13;24928:5;24921:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24841:100;:::o;26315:221::-;26391:7;29798:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29798:16:0;26411:73;;;;-1:-1:-1;;;26411:73:0;;18160:2:1;26411:73:0;;;18142:21:1;18199:2;18179:18;;;18172:30;18238:34;18218:18;;;18211:62;-1:-1:-1;;;18289:18:1;;;18282:42;18341:19;;26411:73:0;17958:408:1;26411:73:0;-1:-1:-1;26504:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26504:24:0;;26315:221::o;25838:411::-;25919:13;25935:23;25950:7;25935:14;:23::i;:::-;25919:39;;25983:5;-1:-1:-1;;;;;25977:11:0;:2;-1:-1:-1;;;;;25977:11:0;;;25969:57;;;;-1:-1:-1;;;25969:57:0;;19279:2:1;25969:57:0;;;19261:21:1;19318:2;19298:18;;;19291:30;19357:34;19337:18;;;19330:62;-1:-1:-1;;;19408:18:1;;;19401:31;19449:19;;25969:57:0;19077:397:1;25969:57:0;7602:10;-1:-1:-1;;;;;26061:21:0;;;;:62;;-1:-1:-1;26086:37:0;26103:5;7602:10;26974:164;:::i;26086:37::-;26039:168;;;;-1:-1:-1;;;26039:168:0;;15780:2:1;26039:168:0;;;15762:21:1;15819:2;15799:18;;;15792:30;15858:34;15838:18;;;15831:62;15929:26;15909:18;;;15902:54;15973:19;;26039:168:0;15578:420:1;26039:168:0;26220:21;26229:2;26233:7;26220:8;:21::i;:::-;25908:341;25838:411;;:::o;53942:487::-;53987:14;54004:13;38372:10;:17;;38284:113;54004:13;53987:30;-1:-1:-1;54050:4:0;54037:10;53987:30;54046:1;54037:10;:::i;:::-;:17;54028:56;;;;-1:-1:-1;;;54028:56:0;;;;;;;:::i;:::-;54098:9;;54111:8;54098:21;54095:281;;;54146:9;54159:10;54146:23;54137:89;;;;-1:-1:-1;;;54137:89:0;;14527:2:1;54137:89:0;;;14509:21:1;14566:2;14546:18;;;14539:30;14605:34;14585:18;;;14578:62;-1:-1:-1;;;14656:18:1;;;14649:49;14715:19;;54137:89:0;14325:415:1;54137:89:0;54095:281;;;54278:9;:20;54269:94;;;;-1:-1:-1;;;54269:94:0;;;;;;;:::i;:::-;54386:35;54397:10;54409;:6;54418:1;54409:10;:::i;:::-;54386:9;:35::i;:::-;53976:453;53942:487::o;53814:116::-;11585:1;12181:7;;:19;;12173:63;;;;-1:-1:-1;;;12173:63:0;;20940:2:1;12173:63:0;;;20922:21:1;20979:2;20959:18;;;20952:30;21018:33;20998:18;;;20991:61;21069:18;;12173:63:0;20738:355:1;12173:63:0;11585:1;12314:7;:18;8723:6;;-1:-1:-1;;;;;8723:6:0;7602:10;8870:23:::1;8862:68;;;;-1:-1:-1::0;;;8862:68:0::1;;;;;;;:::i;:::-;53899:9:::2;:22:::0;11541:1;12493:7;:22;53814:116::o;50731:907::-;50790:13;50830:4;50820:7;:14;:32;;;;;50848:4;50838:7;:14;50820:32;50817:151;;;;;;50906:1;50896:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;50911:7;:24;;50896:39;50888:68;;;;-1:-1:-1;;;50888:68:0;;;;;;;:::i;:::-;50988:22;;:::i;:::-;51043:15;51050:7;51043:6;:15::i;:::-;51032:26;;51081:15;51088:7;51081:6;:15::i;:::-;51070:8;;;:26;51119:15;51126:7;51119:6;:15::i;:::-;51108:8;;;:26;51167:15;51174:7;51167:6;:15::i;:::-;51156:8;;;:26;51205:15;51212:7;51205:6;:15::i;:::-;51194:8;;;:26;51243:15;51250:7;51243:6;:15::i;:::-;51232:8;;;:26;51291:15;51298:7;51291:6;:15::i;:::-;51280:8;;;:26;51329:15;51336:7;51329:6;:15::i;:::-;51318:8;;;:26;51367:15;51374:7;51367:6;:15::i;:::-;51356:8;;;:26;51451:8;;51356;51461;;;;51471;;;;;51481;;;;51491;;;;51434:66;;51404:20;;51434:66;;51451:8;;51461;51491;51434:66;;:::i;:::-;;;;;;;-1:-1:-1;;51434:66:0;;;;;;;51564:8;;;;51574;;;;51584;;;;51594;;;;51434:66;;-1:-1:-1;51539:64:0;;51434:66;;51594:8;51564;51539:64;;:::i;:::-;;;;-1:-1:-1;;51539:64:0;;;;;;;;;;50731:907;-1:-1:-1;;;;50731:907:0:o;27205:339::-;27400:41;7602:10;27433:7;27400:18;:41::i;:::-;27392:103;;;;-1:-1:-1;;;27392:103:0;;;;;;;:::i;:::-;27508:28;27518:4;27524:2;27528:7;27508:9;:28::i;37952:256::-;38049:7;38085:23;38102:5;38085:16;:23::i;:::-;38077:5;:31;38069:87;;;;-1:-1:-1;;;38069:87:0;;12173:2:1;38069:87:0;;;12155:21:1;12212:2;12192:18;;;12185:30;12251:34;12231:18;;;12224:62;-1:-1:-1;;;12302:18:1;;;12295:41;12353:19;;38069:87:0;11971:407:1;38069:87:0;-1:-1:-1;;;;;;38174:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37952:256::o;55575:108::-;8723:6;;-1:-1:-1;;;;;8723:6:0;7602:10;8870:23;8862:68;;;;-1:-1:-1;;;8862:68:0;;;;;;;:::i;:::-;55624:51:::1;::::0;55632:10:::1;::::0;55653:21:::1;55624:51:::0;::::1;;;::::0;::::1;::::0;;;55653:21;55632:10;55624:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;27615:185:::0;27753:39;27770:4;27776:2;27780:7;27753:39;;;;;;;;;;;;:16;:39::i;50274:445::-;50328:13;50368:4;50358:7;:14;:32;;;;;50386:4;50376:7;:14;50358:32;50355:151;;;;;;50444:1;50434:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;50449:7;:24;;50434:39;50426:68;;;;-1:-1:-1;;;50426:68:0;;;;;;;:::i;:::-;50516:11;50530:1;50516:15;;50543:12;50626:3;50593;50598:7;50615:4;50576:45;;;;;;;;;;:::i;53646:156::-;11585:1;12181:7;;:19;;12173:63;;;;-1:-1:-1;;;12173:63:0;;20940:2:1;12173:63:0;;;20922:21:1;20979:2;20959:18;;;20952:30;21018:33;20998:18;;;20991:61;21069:18;;12173:63:0;20738:355:1;12173:63:0;11585:1;12314:7;:18;8723:6;;-1:-1:-1;;;;;8723:6:0;7602:10;8870:23:::1;8862:68;;;;-1:-1:-1::0;;;8862:68:0::1;;;;;;;:::i;:::-;53725:4:::2;53709:86;53735:4;53731:1;:8;53709:86;;;53760:23;53771:7;8723:6:::0;;-1:-1:-1;;;;;8723:6:0;;8650:87;53771:7:::2;53780:1;53760:9;:23::i;:::-;53741:3:::0;::::2;::::0;::::2;:::i;:::-;;;;53709:86;;;-1:-1:-1::0;11541:1:0;12493:7;:22;53646:156::o;38474:233::-;38549:7;38585:30;38372:10;:17;;38284:113;38585:30;38577:5;:38;38569:95;;;;-1:-1:-1;;;38569:95:0;;20099:2:1;38569:95:0;;;20081:21:1;20138:2;20118:18;;;20111:30;20177:34;20157:18;;;20150:62;-1:-1:-1;;;20228:18:1;;;20221:42;20280:19;;38569:95:0;19897:408:1;38569:95:0;38682:10;38693:5;38682:17;;;;;;;;:::i;:::-;;;;;;;;;38675:24;;38474:233;;;:::o;54986:581::-;55033:14;55050:13;38372:10;:17;;38284:113;55050:13;55033:30;-1:-1:-1;55096:4:0;55083:10;55033:30;55092:1;55083:10;:::i;:::-;:17;55074:56;;;;-1:-1:-1;;;55074:56:0;;;;;;;:::i;:::-;55144:9;;55157:8;55144:21;55141:281;;;55192:9;55205:10;55192:23;55183:89;;;;-1:-1:-1;;;55183:89:0;;15360:2:1;55183:89:0;;;15342:21:1;15399:2;15379:18;;;15372:30;15438:34;15418:18;;;15411:62;-1:-1:-1;;;15489:18:1;;;15482:49;15548:19;;55183:89:0;15158:415:1;55183:89:0;55141:281;;;55324:9;:20;55315:94;;;;-1:-1:-1;;;55315:94:0;;;;;;;:::i;:::-;55432:35;55443:10;55455;:6;55464:1;55455:10;:::i;55432:35::-;55478;55489:10;55501;:6;55510:1;55501:10;:::i;55478:35::-;55524;55535:10;55547;:6;55556:1;55547:10;:::i;24535:239::-;24607:7;24643:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24643:16:0;24678:19;24670:73;;;;-1:-1:-1;;;24670:73:0;;16969:2:1;24670:73:0;;;16951:21:1;17008:2;16988:18;;;16981:30;17047:34;17027:18;;;17020:62;-1:-1:-1;;;17098:18:1;;;17091:39;17147:19;;24670:73:0;16767:405:1;46972:445:0;47026:13;47066:4;47056:7;:14;:32;;;;;47084:4;47074:7;:14;47056:32;47053:151;;;;;;47142:1;47132:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;47147:7;:24;;47132:39;47124:68;;;;-1:-1:-1;;;47124:68:0;;;;;;;:::i;:::-;47214:11;47228:1;47214:15;;47241:12;47324:3;47291:7;47308:4;47315:3;47274:45;;;;;;;;;;:::i;24265:208::-;24337:7;-1:-1:-1;;;;;24365:19:0;;24357:74;;;;-1:-1:-1;;;24357:74:0;;16558:2:1;24357:74:0;;;16540:21:1;16597:2;16577:18;;;16570:30;16636:34;16616:18;;;16609:62;-1:-1:-1;;;16687:18:1;;;16680:40;16737:19;;24357:74:0;16356:406:1;24357:74:0;-1:-1:-1;;;;;;24449:16:0;;;;;:9;:16;;;;;;;24265:208::o;9301:94::-;8723:6;;-1:-1:-1;;;;;8723:6:0;7602:10;8870:23;8862:68;;;;-1:-1:-1;;;8862:68:0;;;;;;;:::i;:::-;9366:21:::1;9384:1;9366:9;:21::i;:::-;9301:94::o:0;49817:445::-;49871:13;49911:4;49901:7;:14;:32;;;;;49929:4;49919:7;:14;49901:32;49898:151;;;;;;49987:1;49977:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;49992:7;:24;;49977:39;49969:68;;;;-1:-1:-1;;;49969:68:0;;;;;;;:::i;:::-;50059:11;50073:1;50059:15;;50086:12;50169:3;50144:4;50151:3;50156:7;50119:45;;;;;;;;;;:::i;54441:533::-;54486:14;54503:13;38372:10;:17;;38284:113;54503:13;54486:30;-1:-1:-1;54549:4:0;54536:10;54486:30;54545:1;54536:10;:::i;:::-;:17;54527:56;;;;-1:-1:-1;;;54527:56:0;;;;;;;:::i;:::-;54597:9;;54610:8;54597:21;54594:281;;;54645:9;54658:10;54645:23;54636:89;;;;-1:-1:-1;;;54636:89:0;;17379:2:1;54636:89:0;;;17361:21:1;17418:2;17398:18;;;17391:30;17457:34;17437:18;;;17430:62;-1:-1:-1;;;17508:18:1;;;17501:49;17567:19;;54636:89:0;17177:415:1;54636:89:0;54594:281;;;54777:9;:20;54768:94;;;;-1:-1:-1;;;54768:94:0;;;;;;;:::i;:::-;54885:35;54896:10;54908;:6;54917:1;54908:10;:::i;54885:35::-;54931;54942:10;54954;:6;54963:1;54954:10;:::i;47429:1362::-;47483:13;47523:4;47513:7;:14;:32;;;;;47541:4;47531:7;:14;47513:32;47510:1068;;;47563:851;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;-1:-1:-1;;;47563:851:0;;;;;;;;;;;;-1:-1:-1;;;47563:851:0;;;;-1:-1:-1;;;47563:851:0;;;;;48441:12;48449:4;48441:7;:12;:::i;:::-;48436:18;;;;;;;:::i;:::-;;;;;;47429:1362;-1:-1:-1;;;47429:1362:0:o;47510:1068::-;48516:1;48506:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;48521:7;:24;;48506:39;48498:68;;;;-1:-1:-1;;;48498:68:0;;;;;;;:::i;:::-;48588:11;48602:1;48588:15;;48615:12;48698:3;48673:4;48680:3;48685:7;48648:45;;;;;;;;;;:::i;25010:104::-;25066:13;25099:7;25092:14;;;;;:::i;26608:295::-;-1:-1:-1;;;;;26711:24:0;;7602:10;26711:24;;26703:62;;;;-1:-1:-1;;;26703:62:0;;14173:2:1;26703:62:0;;;14155:21:1;14212:2;14192:18;;;14185:30;14251:27;14231:18;;;14224:55;14296:18;;26703:62:0;13971:349:1;26703:62:0;7602:10;26778:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26778:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26778:53:0;;;;;;;;;;26847:48;;11695:41:1;;;26778:42:0;;7602:10;26847:48;;11668:18:1;26847:48:0;;;;;;;26608:295;;:::o;27871:328::-;28046:41;7602:10;28079:7;28046:18;:41::i;:::-;28038:103;;;;-1:-1:-1;;;28038:103:0;;;;;;;:::i;:::-;28152:39;28166:4;28172:2;28176:7;28185:5;28152:13;:39::i;:::-;27871:328;;;;:::o;49360:445::-;49414:13;49454:4;49444:7;:14;:32;;;;;49472:4;49462:7;:14;49444:32;49441:151;;;;;;49530:1;49520:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;49535:7;:24;;49520:39;49512:68;;;;-1:-1:-1;;;49512:68:0;;;;;;;:::i;:::-;49602:11;49616:1;49602:15;;49629:12;49712:3;49679:7;49696:4;49703:3;49662:45;;;;;;;;;;:::i;51650:1984::-;51715:13;51754:4;51744:7;:14;:32;;;;;51772:4;51762:7;:14;51744:32;51741:142;;;;;;51821:1;51811:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;51826:7;:24;;51811:39;51803:68;;;;-1:-1:-1;;;51803:68:0;;;;;;;:::i;:::-;51903:23;;:::i;:::-;51947:294;;;;;;;;;;;;;;;;;;;52273:15;52280:7;52273:6;:15::i;:::-;52262:8;;;:26;52311:15;52318:7;52311:6;:15::i;:::-;52300:8;;;:26;52349:15;52356:7;52349:6;:15::i;:::-;52338:8;;;:26;52386:100;;;;;;;;;;;;;;52338:8;52386:100;;;:8;;;:100;52519:15;52526:7;52519:6;:15::i;:::-;52508:8;;;:26;52557:15;52564:7;52557:6;:15::i;:::-;52546:8;;;:26;52595:15;52602:7;52595:6;:15::i;:::-;52584:8;;;:26;52632:100;;;;;;;;;;;;;;52584:8;52632:100;;;:8;;;:100;52765:15;52772:7;52765:6;:15::i;:::-;52754:8;;;:26;52804:15;52811:7;52804:6;:15::i;:::-;52792:9;;;:27;52843:15;52850:7;52843:6;:15::i;:::-;52831:9;;;:27;52880;;;;;;;;;;;-1:-1:-1;;;52831:9:0;52880:27;;;;;;;:9;;;:27;;;;52968:8;;52978;;;;52988;;;;52998;;;;53008;;;;53018;;;;53028;;;;53038;;;;52951:96;;-1:-1:-1;;52951:96:0;;53038:8;;52951:96;;:::i;:::-;;;;;;;-1:-1:-1;;52951:96:0;;;;;;;53111:8;;;;53121;;;;53131:9;;;;53142;;;;53153;;;;52951:96;;-1:-1:-1;53086:77:0;;52951:96;;53153:9;53111:8;53086:77;;:::i;:::-;;;;;;;;;;;;;53070:94;;53185:18;53206:311;53272:17;53281:7;53272:8;:17::i;:::-;53479:28;53499:6;53479:13;:28::i;:::-;53233:281;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53206:13;:311::i;:::-;53185:332;;53594:4;53544:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;53544:55:0;;;;;;;;;;51650:1984;-1:-1:-1;;;;;51650:1984:0:o;46058:445::-;46112:13;46152:4;46142:7;:14;:32;;;;;46170:4;46160:7;:14;46142:32;46139:151;;;;;;46228:1;46218:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;46233:7;:24;;46218:39;46210:68;;;;-1:-1:-1;;;46210:68:0;;;;;;;:::i;:::-;46300:11;46314:1;46300:15;;46327:12;46410:3;46385:4;46392:3;46397:7;46360:45;;;;;;;;;;:::i;46515:445::-;46569:13;46609:4;46599:7;:14;:32;;;;;46627:4;46617:7;:14;46599:32;46596:151;;;;;;46685:1;46675:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;46690:7;:24;;46675:39;46667:68;;;;-1:-1:-1;;;46667:68:0;;;;;;;:::i;:::-;46757:11;46771:1;46757:15;;46784:12;46867:3;46834;46839:7;46856:4;46817:45;;;;;;;;;;:::i;45601:445::-;45655:13;45695:4;45685:7;:14;:32;;;;;45713:4;45703:7;:14;45685:32;45682:151;;;;;;45771:1;45761:7;:11;:39;;;;-1:-1:-1;38372:10:0;:17;45776:7;:24;;45761:39;45753:68;;;;-1:-1:-1;;;45753:68:0;;;;;;;:::i;:::-;45843:11;45857:1;45843:15;;45870:12;45953:3;45920:7;45937:4;45944:3;45903:45;;;;;;;;;;:::i;9550:192::-;8723:6;;-1:-1:-1;;;;;8723:6:0;7602:10;8870:23;8862:68;;;;-1:-1:-1;;;8862:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9639:22:0;::::1;9631:73;;;::::0;-1:-1:-1;;;9631:73:0;;13004:2:1;9631:73:0::1;::::0;::::1;12986:21:1::0;13043:2;13023:18;;;13016:30;13082:34;13062:18;;;13055:62;-1:-1:-1;;;13133:18:1;;;13126:36;13179:19;;9631:73:0::1;12802:402:1::0;9631:73:0::1;9715:19;9725:8;9715:9;:19::i;44079:1510::-:0;44131:13;44158:19;44199:2;44192:4;:9;44189:1331;;;-1:-1:-1;44219:21:0;;;;;;;;;;;;-1:-1:-1;;;44219:21:0;;;;44189:1331;;;44277:2;44270:4;:9;44267:1253;;;-1:-1:-1;44297:21:0;;;;;;;;;;;;-1:-1:-1;;;44297:21:0;;;;44267:1253;;;44356:2;44349:4;:9;44346:1174;;;-1:-1:-1;44376:21:0;;;;;;;;;;;;-1:-1:-1;;;44376:21:0;;;;44346:1174;;;44435:2;44428:4;:9;44425:1095;;;-1:-1:-1;44455:21:0;;;;;;;;;;;;-1:-1:-1;;;44455:21:0;;;;44425:1095;;;44517:2;44510:4;:9;44507:1013;;;-1:-1:-1;44537:21:0;;;;;;;;;;;;-1:-1:-1;;;44537:21:0;;;;44507:1013;;;44599:2;44592:4;:9;44589:931;;;-1:-1:-1;44619:21:0;;;;;;;;;;;;-1:-1:-1;;;44619:21:0;;;;44589:931;;;44678:2;44671:4;:9;44668:852;;;-1:-1:-1;44698:21:0;;;;;;;;;;;;-1:-1:-1;;;44698:21:0;;;;44668:852;;;44757:2;44750:4;:9;44747:773;;;-1:-1:-1;44777:21:0;;;;;;;;;;;;-1:-1:-1;;;44777:21:0;;;;44747:773;;;44836:2;44829:4;:9;44826:694;;;-1:-1:-1;44856:21:0;;;;;;;;;;;;-1:-1:-1;;;44856:21:0;;;;44826:694;;;44915:2;44908:4;:9;44905:615;;;-1:-1:-1;44935:21:0;;;;;;;;;;;;-1:-1:-1;;;44935:21:0;;;;44905:615;;;44994:2;44987:4;:9;44984:536;;;-1:-1:-1;45014:21:0;;;;;;;;;;;;-1:-1:-1;;;45014:21:0;;;;44984:536;;;45073:2;45066:4;:9;45063:457;;;-1:-1:-1;45093:21:0;;;;;;;;;;;;-1:-1:-1;;;45093:21:0;;;;45063:457;;;45155:2;45148:4;:9;45145:375;;;-1:-1:-1;45175:21:0;;;;;;;;;;;;-1:-1:-1;;;45175:21:0;;;;45145:375;;;45234:2;45227:4;:9;45224:296;;;-1:-1:-1;45254:21:0;;;;;;;;;;;;-1:-1:-1;;;45254:21:0;;;;45224:296;;;45316:2;45309:4;:9;45306:214;;;-1:-1:-1;45336:21:0;;;;;;;;;;;;-1:-1:-1;;;45336:21:0;;;;45306:214;;;45398:2;45391:4;:9;45388:132;;;-1:-1:-1;45418:21:0;;;;;;;;;;;;-1:-1:-1;;;45418:21:0;;;;45388:132;;;-1:-1:-1;45486:21:0;;;;;;;;;;;;-1:-1:-1;;;45486:21:0;;;;45388:132;45563:5;45546:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;45532:38;;;44079:1510;;;:::o;23896:305::-;23998:4;-1:-1:-1;;;;;;24035:40:0;;-1:-1:-1;;;24035:40:0;;:105;;-1:-1:-1;;;;;;;24092:48:0;;-1:-1:-1;;;24092:48:0;24035:105;:158;;;-1:-1:-1;;;;;;;;;;22640:40:0;;;24157:36;22531:157;33693:174;33768:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33768:29:0;-1:-1:-1;;;;;33768:29:0;;;;;;;;:24;;33822:23;33768:24;33822:14;:23::i;:::-;-1:-1:-1;;;;;33813:46:0;;;;;;;;;;;33693:174;;:::o;30693:110::-;30769:26;30779:2;30783:7;30769:26;;;;;;;;;;;;:9;:26::i;:::-;30693:110;;:::o;30003:348::-;30096:4;29798:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29798:16:0;30113:73;;;;-1:-1:-1;;;30113:73:0;;14947:2:1;30113:73:0;;;14929:21:1;14986:2;14966:18;;;14959:30;15025:34;15005:18;;;14998:62;-1:-1:-1;;;15076:18:1;;;15069:42;15128:19;;30113:73:0;14745:408:1;30113:73:0;30197:13;30213:23;30228:7;30213:14;:23::i;:::-;30197:39;;30266:5;-1:-1:-1;;;;;30255:16:0;:7;-1:-1:-1;;;;;30255:16:0;;:51;;;;30299:7;-1:-1:-1;;;;;30275:31:0;:20;30287:7;30275:11;:20::i;:::-;-1:-1:-1;;;;;30275:31:0;;30255:51;:87;;;-1:-1:-1;;;;;;27095:25:0;;;27071:4;27095:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30310:32;30247:96;30003:348;-1:-1:-1;;;;30003:348:0:o;32995:580::-;33154:4;-1:-1:-1;;;;;33127:31:0;:23;33142:7;33127:14;:23::i;:::-;-1:-1:-1;;;;;33127:31:0;;33119:87;;;;-1:-1:-1;;;33119:87:0;;21300:2:1;33119:87:0;;;21282:21:1;21339:2;21319:18;;;21312:30;21378:34;21358:18;;;21351:62;-1:-1:-1;;;21429:18:1;;;21422:41;21480:19;;33119:87:0;21098:407:1;33119:87:0;-1:-1:-1;;;;;33225:16:0;;33217:65;;;;-1:-1:-1;;;33217:65:0;;13768:2:1;33217:65:0;;;13750:21:1;13807:2;13787:18;;;13780:30;13846:34;13826:18;;;13819:62;-1:-1:-1;;;13897:18:1;;;13890:34;13941:19;;33217:65:0;13566:400:1;33217:65:0;33295:39;33316:4;33322:2;33326:7;33295:20;:39::i;:::-;33399:29;33416:1;33420:7;33399:8;:29::i;:::-;-1:-1:-1;;;;;33441:15:0;;;;;;:9;:15;;;;;:20;;33460:1;;33441:15;:20;;33460:1;;33441:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33472:13:0;;;;;;:9;:13;;;;;:18;;33489:1;;33472:13;:18;;33489:1;;33472:18;:::i;:::-;;;;-1:-1:-1;;33501:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33501:21:0;-1:-1:-1;;;;;33501:21:0;;;;;;;;;33540:27;;33501:16;;33540:27;;;;;;;32995:580;;;:::o;9750:173::-;9825:6;;;-1:-1:-1;;;;;9842:17:0;;;-1:-1:-1;;;;;;9842:17:0;;;;;;;9875:40;;9825:6;;;9842:17;9825:6;;9875:40;;9806:16;;9875:40;9795:128;9750:173;:::o;29081:315::-;29238:28;29248:4;29254:2;29258:7;29238:9;:28::i;:::-;29285:48;29308:4;29314:2;29318:7;29327:5;29285:22;:48::i;:::-;29277:111;;;;-1:-1:-1;;;29277:111:0;;;;;;;:::i;55793:715::-;55849:13;56062:10;56058:53;;-1:-1:-1;;56089:10:0;;;;;;;;;;;;-1:-1:-1;;;56089:10:0;;;;;55793:715::o;56058:53::-;56136:5;56121:12;56177:78;56184:9;;56177:78;;56210:8;;;;:::i;:::-;;-1:-1:-1;56233:10:0;;-1:-1:-1;56241:2:0;56233:10;;:::i;:::-;;;56177:78;;;56265:19;56297:6;56287:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56287:17:0;;56265:39;;56315:154;56322:10;;56315:154;;56349:11;56359:1;56349:11;;:::i;:::-;;-1:-1:-1;56418:10:0;56426:2;56418:5;:10;:::i;:::-;56405:24;;:2;:24;:::i;:::-;56392:39;;56375:6;56382;56375:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;56375:56:0;;;;;;;;-1:-1:-1;56446:11:0;56455:2;56446:11;;:::i;:::-;;;56315:154;;56931:1607;57029:11;;56989:13;;57055:8;57051:23;;-1:-1:-1;;57065:9:0;;;;;;;;;-1:-1:-1;57065:9:0;;;56931:1607;-1:-1:-1;56931:1607:0:o;57051:23::-;57126:18;57164:1;57153:7;:3;57159:1;57153:7;:::i;:::-;57152:13;;;;:::i;:::-;57147:19;;:1;:19;:::i;:::-;57126:40;-1:-1:-1;57224:19:0;57256:15;57126:40;57269:2;57256:15;:::i;:::-;57246:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57246:26:0;;57224:48;;57285:18;57306:5;;;;;;;;;;;;;;;;;57285:26;;57375:1;57368:5;57364:13;57420:2;57412:6;57408:15;57471:1;57439:777;57494:3;57491:1;57488:10;57439:777;;;57549:1;57592:12;;;;;57586:19;57687:4;57675:2;57671:14;;;;;57653:40;;57647:47;57796:2;57792:14;;;57788:25;;57774:40;;57768:47;57925:1;57921:13;;;57917:24;;57903:39;;57897:46;58045:16;;;;58031:31;;58025:38;57723:1;57719:11;;;57817:4;57764:58;;;57755:68;57848:11;;57893:57;;;57884:67;;;;57976:11;;58021:49;;58012:59;58100:3;58096:13;58129:22;;58199:1;58184:17;;;;57542:9;57439:777;;;57443:44;58248:1;58243:3;58239:11;58269:1;58264:84;;;;58367:1;58362:82;;;;58232:212;;58264:84;-1:-1:-1;;;;;58297:17:0;;58290:43;58264:84;;58362:82;-1:-1:-1;;;;;58395:17:0;;58388:41;58232:212;-1:-1:-1;;;58460:26:0;;;58467:6;56931:1607;-1:-1:-1;;;;56931:1607:0:o;31030:321::-;31160:18;31166:2;31170:7;31160:5;:18::i;:::-;31211:54;31242:1;31246:2;31250:7;31259:5;31211:22;:54::i;:::-;31189:154;;;;-1:-1:-1;;;31189:154:0;;;;;;;:::i;39320:589::-;-1:-1:-1;;;;;39526:18:0;;39522:187;;39561:40;39593:7;40736:10;:17;;40709:24;;;;:15;:24;;;;;:44;;;40764:24;;;;;;;;;;;;40632:164;39561:40;39522:187;;;39631:2;-1:-1:-1;;;;;39623:10:0;:4;-1:-1:-1;;;;;39623:10:0;;39619:90;;39650:47;39683:4;39689:7;39650:32;:47::i;:::-;-1:-1:-1;;;;;39723:16:0;;39719:183;;39756:45;39793:7;39756:36;:45::i;39719:183::-;39829:4;-1:-1:-1;;;;;39823:10:0;:2;-1:-1:-1;;;;;39823:10:0;;39819:83;;39850:40;39878:2;39882:7;39850:27;:40::i;34432:803::-;34587:4;-1:-1:-1;;;;;34608:13:0;;15038:20;15086:8;34604:624;;34644:72;;-1:-1:-1;;;34644:72:0;;-1:-1:-1;;;;;34644:36:0;;;;;:72;;7602:10;;34695:4;;34701:7;;34710:5;;34644:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34644:72:0;;;;;;;;-1:-1:-1;;34644:72:0;;;;;;;;;;;;:::i;:::-;;;34640:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34890:13:0;;34886:272;;34933:60;;-1:-1:-1;;;34933:60:0;;;;;;;:::i;34886:272::-;35108:6;35102:13;35093:6;35089:2;35085:15;35078:38;34640:533;-1:-1:-1;;;;;;34767:55:0;-1:-1:-1;;;34767:55:0;;-1:-1:-1;34760:62:0;;34604:624;-1:-1:-1;35212:4:0;34432:803;;;;;;:::o;31687:382::-;-1:-1:-1;;;;;31767:16:0;;31759:61;;;;-1:-1:-1;;;31759:61:0;;17799:2:1;31759:61:0;;;17781:21:1;;;17818:18;;;17811:30;17877:34;17857:18;;;17850:62;17929:18;;31759:61:0;17597:356:1;31759:61:0;29774:4;29798:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29798:16:0;:30;31831:58;;;;-1:-1:-1;;;31831:58:0;;13411:2:1;31831:58:0;;;13393:21:1;13450:2;13430:18;;;13423:30;13489;13469:18;;;13462:58;13537:18;;31831:58:0;13209:352:1;31831:58:0;31902:45;31931:1;31935:2;31939:7;31902:20;:45::i;:::-;-1:-1:-1;;;;;31960:13:0;;;;;;:9;:13;;;;;:18;;31977:1;;31960:13;:18;;31977:1;;31960:18;:::i;:::-;;;;-1:-1:-1;;31989:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31989:21:0;-1:-1:-1;;;;;31989:21:0;;;;;;;;32028:33;;31989:16;;;32028:33;;31989:16;;32028:33;31687:382;;:::o;41423:988::-;41689:22;41739:1;41714:22;41731:4;41714:16;:22::i;:::-;:26;;;;:::i;:::-;41751:18;41772:26;;;:17;:26;;;;;;41689:51;;-1:-1:-1;41905:28:0;;;41901:328;;-1:-1:-1;;;;;41972:18:0;;41950:19;41972:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42023:30;;;;;;:44;;;42140:30;;:17;:30;;;;;:43;;;41901:328;-1:-1:-1;42325:26:0;;;;:17;:26;;;;;;;;42318:33;;;-1:-1:-1;;;;;42369:18:0;;;;;:12;:18;;;;;:34;;;;;;;42362:41;41423:988::o;42706:1079::-;42984:10;:17;42959:22;;42984:21;;43004:1;;42984:21;:::i;:::-;43016:18;43037:24;;;:15;:24;;;;;;43410:10;:26;;42959:46;;-1:-1:-1;43037:24:0;;42959:46;;43410:26;;;;;;:::i;:::-;;;;;;;;;43388:48;;43474:11;43449:10;43460;43449:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43554:28;;;:15;:28;;;;;;;:41;;;43726:24;;;;;43719:31;43761:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42777:1008;;;42706:1079;:::o;40210:221::-;40295:14;40312:20;40329:2;40312:16;:20::i;:::-;-1:-1:-1;;;;;40343:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40388:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40210:221:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:180::-;3298:6;3351:2;3339:9;3330:7;3326:23;3322:32;3319:52;;;3367:1;3364;3357:12;3319:52;-1:-1:-1;3390:23:1;;3239:180;-1:-1:-1;3239:180:1:o;3424:257::-;3465:3;3503:5;3497:12;3530:6;3525:3;3518:19;3546:63;3602:6;3595:4;3590:3;3586:14;3579:4;3572:5;3568:16;3546:63;:::i;:::-;3663:2;3642:15;-1:-1:-1;;3638:29:1;3629:39;;;;3670:4;3625:50;;3424:257;-1:-1:-1;;3424:257:1:o;3686:359::-;3891:2;3887:15;;;;-1:-1:-1;;;;;;3883:53:1;3871:66;;3962:2;3953:12;;3946:28;;;;3999:2;3990:12;;3983:28;4036:2;4027:12;;3686:359::o;4050:276::-;4181:3;4219:6;4213:13;4235:53;4281:6;4276:3;4269:4;4261:6;4257:17;4235:53;:::i;:::-;4304:16;;;;;4050:276;-1:-1:-1;;4050:276:1:o;4331:1052::-;4654:3;4692:6;4686:13;4708:53;4754:6;4749:3;4742:4;4734:6;4730:17;4708:53;:::i;:::-;4824:13;;4783:16;;;;4846:57;4824:13;4783:16;4880:4;4868:17;;4846:57;:::i;:::-;4970:13;;4925:20;;;4992:57;4970:13;4925:20;5026:4;5014:17;;4992:57;:::i;:::-;5116:13;;5071:20;;;5138:57;5116:13;5071:20;5172:4;5160:17;;5138:57;:::i;:::-;5262:13;;5217:20;;;5284:57;5262:13;5217:20;5318:4;5306:17;;5284:57;:::i;:::-;5357:20;;4331:1052;-1:-1:-1;;;;;;;4331:1052:1:o;5388:1257::-;5759:3;5797:6;5791:13;5823:4;5836:51;5880:6;5875:3;5870:2;5862:6;5858:15;5836:51;:::i;:::-;5950:13;;5909:16;;;;5972:55;5950:13;5909:16;5994:15;;;5972:55;:::i;:::-;6094:13;;6049:20;;;6116:55;6094:13;6049:20;6138:15;;;6116:55;:::i;:::-;6238:13;;6193:20;;;6260:55;6238:13;6193:20;6282:15;;;6260:55;:::i;:::-;6382:13;;6337:20;;;6404:55;6382:13;6337:20;6426:15;;;6404:55;:::i;:::-;6526:13;;6481:20;;;6548:55;6526:13;6481:20;6570:15;;;6548:55;:::i;:::-;6619:20;;;;;5388:1257;-1:-1:-1;;;;;;;;;5388:1257:1:o;6650:1641::-;7117:3;7155:6;7149:13;7181:4;7194:51;7238:6;7233:3;7228:2;7220:6;7216:15;7194:51;:::i;:::-;7308:13;;7267:16;;;;7330:55;7308:13;7267:16;7352:15;;;7330:55;:::i;:::-;7452:13;;7407:20;;;7474:55;7452:13;7407:20;7496:15;;;7474:55;:::i;:::-;7596:13;;7551:20;;;7618:55;7596:13;7551:20;7640:15;;;7618:55;:::i;:::-;7740:13;;7695:20;;;7762:55;7740:13;7695:20;7784:15;;;7762:55;:::i;:::-;7884:13;;7839:20;;;7906:55;7884:13;7839:20;7928:15;;;7906:55;:::i;:::-;8028:13;;7983:20;;;8050:55;8028:13;7983:20;8072:15;;;8050:55;:::i;:::-;8172:13;;8127:20;;;8194:55;8172:13;8127:20;8216:15;;;8194:55;:::i;:::-;8265:20;;;;;6650:1641;-1:-1:-1;;;;;;;;;;;6650:1641:1:o;8296:1372::-;-1:-1:-1;;;8796:61:1;;8880:13;;8778:3;;8902:62;8880:13;8952:2;8943:12;;8936:4;8924:17;;8902:62;:::i;:::-;9028:66;9023:2;8983:16;;;9015:11;;;9008:87;9124:34;9119:2;9111:11;;9104:55;9188:34;9183:2;9175:11;;9168:55;9253:34;9247:3;9239:12;;9232:56;9318:66;9312:3;9304:12;;9297:88;9415:26;9409:3;9401:12;;9394:48;9467:13;;9489:64;9467:13;9538:3;9530:12;;9523:4;9511:17;;9489:64;:::i;:::-;-1:-1:-1;;;9613:3:1;9572:17;;;;9605:12;;;9598:36;9658:3;9650:12;;8296:1372;-1:-1:-1;;;;8296:1372:1:o;9673:448::-;9935:31;9930:3;9923:44;9905:3;9996:6;9990:13;10012:62;10067:6;10062:2;10057:3;10053:12;10046:4;10038:6;10034:17;10012:62;:::i;:::-;10094:16;;;;10112:2;10090:25;;9673:448;-1:-1:-1;;9673:448:1:o;10126:359::-;10311:19;;;10368:2;10364:15;;;;-1:-1:-1;;;;;;10360:53:1;10355:2;10346:12;;10339:75;10439:2;10430:12;;10423:28;10476:2;10467:12;;10126:359::o;10490:::-;10675:19;;;10719:2;10710:12;;10703:28;;;;10769:2;10765:15;-1:-1:-1;;;;;;10761:53:1;10756:2;10747:12;;10740:75;10840:2;10831:12;;10490:359::o;11062:488::-;-1:-1:-1;;;;;11331:15:1;;;11313:34;;11383:15;;11378:2;11363:18;;11356:43;11430:2;11415:18;;11408:34;;;11478:3;11473:2;11458:18;;11451:31;;;11256:4;;11499:45;;11524:19;;11516:6;11499:45;:::i;:::-;11491:53;11062:488;-1:-1:-1;;;;;;11062:488:1:o;11747:219::-;11896:2;11885:9;11878:21;11859:4;11916:44;11956:2;11945:9;11941:18;11933:6;11916:44;:::i;12383:414::-;12585:2;12567:21;;;12624:2;12604:18;;;12597:30;12663:34;12658:2;12643:18;;12636:62;-1:-1:-1;;;12729:2:1;12714:18;;12707:48;12787:3;12772:19;;12383:414::o;16003:348::-;16205:2;16187:21;;;16244:2;16224:18;;;16217:30;16283:26;16278:2;16263:18;;16256:54;16342:2;16327:18;;16003:348::o;18371:356::-;18573:2;18555:21;;;18592:18;;;18585:30;18651:34;18646:2;18631:18;;18624:62;18718:2;18703:18;;18371:356::o;18732:340::-;18934:2;18916:21;;;18973:2;18953:18;;;18946:30;-1:-1:-1;;;19007:2:1;18992:18;;18985:46;19063:2;19048:18;;18732:340::o;19479:413::-;19681:2;19663:21;;;19720:2;19700:18;;;19693:30;19759:34;19754:2;19739:18;;19732:62;-1:-1:-1;;;19825:2:1;19810:18;;19803:47;19882:3;19867:19;;19479:413::o;20310:423::-;20512:2;20494:21;;;20551:2;20531:18;;;20524:30;20590:34;20585:2;20570:18;;20563:62;20661:29;20656:2;20641:18;;20634:57;20723:3;20708:19;;20310:423::o;21692:128::-;21732:3;21763:1;21759:6;21756:1;21753:13;21750:39;;;21769:18;;:::i;:::-;-1:-1:-1;21805:9:1;;21692:128::o;21825:120::-;21865:1;21891;21881:35;;21896:18;;:::i;:::-;-1:-1:-1;21930:9:1;;21825:120::o;21950:168::-;21990:7;22056:1;22052;22048:6;22044:14;22041:1;22038:21;22033:1;22026:9;22019:17;22015:45;22012:71;;;22063:18;;:::i;:::-;-1:-1:-1;22103:9:1;;21950:168::o;22123:125::-;22163:4;22191:1;22188;22185:8;22182:34;;;22196:18;;:::i;:::-;-1:-1:-1;22233:9:1;;22123:125::o;22253:258::-;22325:1;22335:113;22349:6;22346:1;22343:13;22335:113;;;22425:11;;;22419:18;22406:11;;;22399:39;22371:2;22364:10;22335:113;;;22466:6;22463:1;22460:13;22457:48;;;-1:-1:-1;;22501:1:1;22483:16;;22476:27;22253:258::o;22516:380::-;22595:1;22591:12;;;;22638;;;22659:61;;22713:4;22705:6;22701:17;22691:27;;22659:61;22766:2;22758:6;22755:14;22735:18;22732:38;22729:161;;;22812:10;22807:3;22803:20;22800:1;22793:31;22847:4;22844:1;22837:15;22875:4;22872:1;22865:15;22729:161;;22516:380;;;:::o;22901:135::-;22940:3;-1:-1:-1;;22961:17:1;;22958:43;;;22981:18;;:::i;:::-;-1:-1:-1;23028:1:1;23017:13;;22901:135::o;23041:112::-;23073:1;23099;23089:35;;23104:18;;:::i;:::-;-1:-1:-1;23138:9:1;;23041:112::o;23158:127::-;23219:10;23214:3;23210:20;23207:1;23200:31;23250:4;23247:1;23240:15;23274:4;23271:1;23264:15;23290:127;23351:10;23346:3;23342:20;23339:1;23332:31;23382:4;23379:1;23372:15;23406:4;23403:1;23396:15;23422:127;23483:10;23478:3;23474:20;23471:1;23464:31;23514:4;23511:1;23504:15;23538:4;23535:1;23528:15;23554:127;23615:10;23610:3;23606:20;23603:1;23596:31;23646:4;23643:1;23636:15;23670:4;23667:1;23660:15;23686:127;23747:10;23742:3;23738:20;23735:1;23728:31;23778:4;23775:1;23768:15;23802:4;23799:1;23792:15;23818:131;-1:-1:-1;;;;;;23892:32:1;;23882:43;;23872:71;;23939:1;23936;23929:12

Swarm Source

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