ETH Price: $3,404.13 (-0.41%)
Gas: 17 Gwei

Token

THE_MAN_WHO_SOLD_THE_WORLD (WORLD)
 

Overview

Max Total Supply

0 WORLD

Holders

602

Market

Volume (24H)

0.0065 ETH

Min Price (24H)

$22.13 @ 0.006500 ETH

Max Price (24H)

$22.13 @ 0.006500 ETH
Balance
2 WORLD
0x7335ce9eede1f9d8940657b0d8a01080d3b5ea9a
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:
THE_MAN_WHO_SOLD_THE_WORLD

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 9 of 10: main.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "ERC721.sol";


contract THE_MAN_WHO_SOLD_THE_WORLD is ERC721 {
 

    string this_base_uri;
    address this_owner;
    
    constructor() ERC721("THE_MAN_WHO_SOLD_THE_WORLD", "WORLD") {
         this_owner = msg.sender;
         this_base_uri = "https://the-man-who-sold-the-world.com/metadata.php?id=";
    }
    
    function _baseURI() internal view override returns (string memory) {
        return this_base_uri;
    }
    
    function set_new_base_uri(string calldata new_base_uri)external{
        require(this_owner ==  msg.sender,"you are not allowed");
        this_base_uri = new_base_uri;
    }

   function claimPlot(uint16 token_id) external payable  {
        require(msg.value >= .01 ether , "price is too small");
        require(token_id>0 && token_id<10001,"token out of bounds");
       _safeMint(msg.sender, token_id);
       payable(this_owner).transfer(msg.value);
    }
    
    function premint(uint16[5] calldata token_ids ) external {
        require(this_owner ==  msg.sender,"you are not allowed");
        for (uint i = 0;i<5;i++){
            _safeMint(msg.sender, token_ids[i]);
        }
    }

}

File 1 of 10: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

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

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

File 2 of 10: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 10: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC165.sol";

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

File 4 of 10: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 5 of 10: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 10: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 10: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 8 of 10: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 10: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

}

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":"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":"uint16","name":"token_id","type":"uint16"}],"name":"claimPlot","outputs":[],"stateMutability":"payable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16[5]","name":"token_ids","type":"uint16[5]"}],"name":"premint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"new_base_uri","type":"string"}],"name":"set_new_base_uri","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280601a81526020017f5448455f4d414e5f57484f5f534f4c445f5448455f574f524c440000000000008152506040518060400160405280600581526020017f574f524c440000000000000000000000000000000000000000000000000000008152508160009080519060200190620000969291906200012b565b508060019080519060200190620000af9291906200012b565b50505033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051806060016040528060378152602001620030b86037913960069080519060200190620001249291906200012b565b5062000240565b8280546200013990620001db565b90600052602060002090601f0160209004810192826200015d5760008555620001a9565b82601f106200017857805160ff1916838001178555620001a9565b82800160010185558215620001a9579182015b82811115620001a85782518255916020019190600101906200018b565b5b509050620001b89190620001bc565b5090565b5b80821115620001d7576000816000905550600101620001bd565b5090565b60006002820490506001821680620001f457607f821691505b602082108114156200020b576200020a62000211565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612e6880620002506000396000f3fe6080604052600436106100f35760003560e01c80636352211e1161008a578063a22cb46511610059578063a22cb4651461032b578063b88d4fde14610354578063c87b56dd1461037d578063e985e9c5146103ba576100f3565b80636352211e1461025d5780636fee74541461029a57806370a08231146102c357806395d89b4114610300576100f3565b806323b872dd116100c657806323b872dd146101c657806337f80c34146101ef57806342842e0e1461020b5780635e15984b14610234576100f3565b806301ffc9a7146100f857806306fdde0314610135578063081812fc14610160578063095ea7b31461019d575b600080fd5b34801561010457600080fd5b5061011f600480360381019061011a9190611e93565b6103f7565b60405161012c919061232a565b60405180910390f35b34801561014157600080fd5b5061014a6104d9565b6040516101579190612345565b60405180910390f35b34801561016c57600080fd5b5061018760048036038101906101829190611f53565b61056b565b60405161019491906122c3565b60405180910390f35b3480156101a957600080fd5b506101c460048036038101906101bf9190611e2e565b6105f0565b005b3480156101d257600080fd5b506101ed60048036038101906101e89190611d28565b610708565b005b61020960048036038101906102049190611f2a565b610768565b005b34801561021757600080fd5b50610232600480360381019061022d9190611d28565b610884565b005b34801561024057600080fd5b5061025b60048036038101906102569190611ee5565b6108a4565b005b34801561026957600080fd5b50610284600480360381019061027f9190611f53565b61094a565b60405161029191906122c3565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190611e6a565b6109fc565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190611cc3565b610b08565b6040516102f79190612587565b60405180910390f35b34801561030c57600080fd5b50610315610bc0565b6040516103229190612345565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190611df2565b610c52565b005b34801561036057600080fd5b5061037b60048036038101906103769190611d77565b610dd3565b005b34801561038957600080fd5b506103a4600480360381019061039f9190611f53565b610e35565b6040516103b19190612345565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190611cec565b610edc565b6040516103ee919061232a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d257506104d182610f70565b5b9050919050565b6060600080546104e8906127ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610514906127ba565b80156105615780601f1061053657610100808354040283529160200191610561565b820191906000526020600020905b81548152906001019060200180831161054457829003601f168201915b5050505050905090565b600061057682610fda565b6105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac906124a7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fb8261094a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066390612507565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068b611046565b73ffffffffffffffffffffffffffffffffffffffff1614806106ba57506106b9816106b4611046565b610edc565b5b6106f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f090612427565b60405180910390fd5b610703838361104e565b505050565b610719610713611046565b82611107565b610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f90612527565b60405180910390fd5b6107638383836111e5565b505050565b662386f26fc100003410156107b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a990612547565b60405180910390fd5b60008161ffff161180156107cb57506127118161ffff16105b61080a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080190612367565b60405180910390fd5b610818338261ffff16611441565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610880573d6000803e3d6000fd5b5050565b61089f83838360405180602001604052806000815250610dd3565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b90612567565b60405180910390fd5b818160069190610945929190611ad2565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90612467565b60405180910390fd5b80915050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390612567565b60405180910390fd5b60005b6005811015610b0457610af133838360058110610ad5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002016020810190610ae89190611f2a565b61ffff16611441565b8080610afc9061281d565b915050610a8f565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090612447565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610bcf906127ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfb906127ba565b8015610c485780601f10610c1d57610100808354040283529160200191610c48565b820191906000526020600020905b815481529060010190602001808311610c2b57829003601f168201915b5050505050905090565b610c5a611046565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906123e7565b60405180910390fd5b8060056000610cd5611046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d82611046565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dc7919061232a565b60405180910390a35050565b610de4610dde611046565b83611107565b610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90612527565b60405180910390fd5b610e2f8484848461145f565b50505050565b6060610e4082610fda565b610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e76906124e7565b60405180910390fd5b6000610e896114bb565b90506000815111610ea95760405180602001604052806000815250610ed4565b80610eb38461154d565b604051602001610ec492919061229f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110c18361094a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061111282610fda565b611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890612407565b60405180910390fd5b600061115c8361094a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111cb57508373ffffffffffffffffffffffffffffffffffffffff166111b38461056b565b73ffffffffffffffffffffffffffffffffffffffff16145b806111dc57506111db8185610edc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112058261094a565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906124c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c2906123c7565b60405180910390fd5b6112d68383836116fa565b6112e160008261104e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461133191906126c2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611388919061263b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61145b8282604051806020016040528060008152506116ff565b5050565b61146a8484846111e5565b6114768484848461175a565b6114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90612387565b60405180910390fd5b50505050565b6060600680546114ca906127ba565b80601f01602080910402602001604051908101604052809291908181526020018280546114f6906127ba565b80156115435780601f1061151857610100808354040283529160200191611543565b820191906000526020600020905b81548152906001019060200180831161152657829003601f168201915b5050505050905090565b60606000821415611595576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506116f5565b600082905060005b600082146115c75780806115b09061281d565b915050600a826115c09190612691565b915061159d565b60008167ffffffffffffffff811115611609577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561163b5781602001600182028036833780820191505090505b5090505b600085146116ee5760018261165491906126c2565b9150600a856116639190612866565b603061166f919061263b565b60f81b8183815181106116ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116e79190612691565b945061163f565b8093505050505b919050565b505050565b61170983836118f1565b611716600084848461175a565b611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612387565b60405180910390fd5b505050565b600061177b8473ffffffffffffffffffffffffffffffffffffffff16611abf565b156118e4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117a4611046565b8786866040518563ffffffff1660e01b81526004016117c694939291906122de565b602060405180830381600087803b1580156117e057600080fd5b505af192505050801561181157506040513d601f19601f8201168201806040525081019061180e9190611ebc565b60015b611894573d8060008114611841576040519150601f19603f3d011682016040523d82523d6000602084013e611846565b606091505b5060008151141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390612387565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118e9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612487565b60405180910390fd5b61196a81610fda565b156119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a1906123a7565b60405180910390fd5b6119b6600083836116fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a06919061263b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611ade906127ba565b90600052602060002090601f016020900481019282611b005760008555611b47565b82601f10611b1957803560ff1916838001178555611b47565b82800160010185558215611b47579182015b82811115611b46578235825591602001919060010190611b2b565b5b509050611b549190611b58565b5090565b5b80821115611b71576000816000905550600101611b59565b5090565b6000611b88611b83846125c7565b6125a2565b905082815260208101848484011115611ba057600080fd5b611bab848285612778565b509392505050565b600081359050611bc281612dbf565b92915050565b600081905082602060050282011115611be057600080fd5b92915050565b600081359050611bf581612dd6565b92915050565b600081359050611c0a81612ded565b92915050565b600081519050611c1f81612ded565b92915050565b600082601f830112611c3657600080fd5b8135611c46848260208601611b75565b91505092915050565b60008083601f840112611c6157600080fd5b8235905067ffffffffffffffff811115611c7a57600080fd5b602083019150836001820283011115611c9257600080fd5b9250929050565b600081359050611ca881612e04565b92915050565b600081359050611cbd81612e1b565b92915050565b600060208284031215611cd557600080fd5b6000611ce384828501611bb3565b91505092915050565b60008060408385031215611cff57600080fd5b6000611d0d85828601611bb3565b9250506020611d1e85828601611bb3565b9150509250929050565b600080600060608486031215611d3d57600080fd5b6000611d4b86828701611bb3565b9350506020611d5c86828701611bb3565b9250506040611d6d86828701611cae565b9150509250925092565b60008060008060808587031215611d8d57600080fd5b6000611d9b87828801611bb3565b9450506020611dac87828801611bb3565b9350506040611dbd87828801611cae565b925050606085013567ffffffffffffffff811115611dda57600080fd5b611de687828801611c25565b91505092959194509250565b60008060408385031215611e0557600080fd5b6000611e1385828601611bb3565b9250506020611e2485828601611be6565b9150509250929050565b60008060408385031215611e4157600080fd5b6000611e4f85828601611bb3565b9250506020611e6085828601611cae565b9150509250929050565b600060a08284031215611e7c57600080fd5b6000611e8a84828501611bc8565b91505092915050565b600060208284031215611ea557600080fd5b6000611eb384828501611bfb565b91505092915050565b600060208284031215611ece57600080fd5b6000611edc84828501611c10565b91505092915050565b60008060208385031215611ef857600080fd5b600083013567ffffffffffffffff811115611f1257600080fd5b611f1e85828601611c4f565b92509250509250929050565b600060208284031215611f3c57600080fd5b6000611f4a84828501611c99565b91505092915050565b600060208284031215611f6557600080fd5b6000611f7384828501611cae565b91505092915050565b611f85816126f6565b82525050565b611f9481612708565b82525050565b6000611fa5826125f8565b611faf818561260e565b9350611fbf818560208601612787565b611fc881612953565b840191505092915050565b6000611fde82612603565b611fe8818561261f565b9350611ff8818560208601612787565b61200181612953565b840191505092915050565b600061201782612603565b6120218185612630565b9350612031818560208601612787565b80840191505092915050565b600061204a60138361261f565b915061205582612964565b602082019050919050565b600061206d60328361261f565b91506120788261298d565b604082019050919050565b6000612090601c8361261f565b915061209b826129dc565b602082019050919050565b60006120b360248361261f565b91506120be82612a05565b604082019050919050565b60006120d660198361261f565b91506120e182612a54565b602082019050919050565b60006120f9602c8361261f565b915061210482612a7d565b604082019050919050565b600061211c60388361261f565b915061212782612acc565b604082019050919050565b600061213f602a8361261f565b915061214a82612b1b565b604082019050919050565b600061216260298361261f565b915061216d82612b6a565b604082019050919050565b600061218560208361261f565b915061219082612bb9565b602082019050919050565b60006121a8602c8361261f565b91506121b382612be2565b604082019050919050565b60006121cb60298361261f565b91506121d682612c31565b604082019050919050565b60006121ee602f8361261f565b91506121f982612c80565b604082019050919050565b600061221160218361261f565b915061221c82612ccf565b604082019050919050565b600061223460318361261f565b915061223f82612d1e565b604082019050919050565b600061225760128361261f565b915061226282612d6d565b602082019050919050565b600061227a60138361261f565b915061228582612d96565b602082019050919050565b6122998161276e565b82525050565b60006122ab828561200c565b91506122b7828461200c565b91508190509392505050565b60006020820190506122d86000830184611f7c565b92915050565b60006080820190506122f36000830187611f7c565b6123006020830186611f7c565b61230d6040830185612290565b818103606083015261231f8184611f9a565b905095945050505050565b600060208201905061233f6000830184611f8b565b92915050565b6000602082019050818103600083015261235f8184611fd3565b905092915050565b600060208201905081810360008301526123808161203d565b9050919050565b600060208201905081810360008301526123a081612060565b9050919050565b600060208201905081810360008301526123c081612083565b9050919050565b600060208201905081810360008301526123e0816120a6565b9050919050565b60006020820190508181036000830152612400816120c9565b9050919050565b60006020820190508181036000830152612420816120ec565b9050919050565b600060208201905081810360008301526124408161210f565b9050919050565b6000602082019050818103600083015261246081612132565b9050919050565b6000602082019050818103600083015261248081612155565b9050919050565b600060208201905081810360008301526124a081612178565b9050919050565b600060208201905081810360008301526124c08161219b565b9050919050565b600060208201905081810360008301526124e0816121be565b9050919050565b60006020820190508181036000830152612500816121e1565b9050919050565b6000602082019050818103600083015261252081612204565b9050919050565b6000602082019050818103600083015261254081612227565b9050919050565b600060208201905081810360008301526125608161224a565b9050919050565b600060208201905081810360008301526125808161226d565b9050919050565b600060208201905061259c6000830184612290565b92915050565b60006125ac6125bd565b90506125b882826127ec565b919050565b6000604051905090565b600067ffffffffffffffff8211156125e2576125e1612924565b5b6125eb82612953565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006126468261276e565b91506126518361276e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561268657612685612897565b5b828201905092915050565b600061269c8261276e565b91506126a78361276e565b9250826126b7576126b66128c6565b5b828204905092915050565b60006126cd8261276e565b91506126d88361276e565b9250828210156126eb576126ea612897565b5b828203905092915050565b60006127018261274e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156127a557808201518184015260208101905061278a565b838111156127b4576000848401525b50505050565b600060028204905060018216806127d257607f821691505b602082108114156127e6576127e56128f5565b5b50919050565b6127f582612953565b810181811067ffffffffffffffff8211171561281457612813612924565b5b80604052505050565b60006128288261276e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561285b5761285a612897565b5b600182019050919050565b60006128718261276e565b915061287c8361276e565b92508261288c5761288b6128c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f746f6b656e206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f707269636520697320746f6f20736d616c6c0000000000000000000000000000600082015250565b7f796f7520617265206e6f7420616c6c6f77656400000000000000000000000000600082015250565b612dc8816126f6565b8114612dd357600080fd5b50565b612ddf81612708565b8114612dea57600080fd5b50565b612df681612714565b8114612e0157600080fd5b50565b612e0d81612740565b8114612e1857600080fd5b50565b612e248161276e565b8114612e2f57600080fd5b5056fea2646970667358221220520d973580532210d04662b142a2608b0c700f621c8415b37e1e1ab869896d8464736f6c6343000801003368747470733a2f2f7468652d6d616e2d77686f2d736f6c642d7468652d776f726c642e636f6d2f6d657461646174612e7068703f69643d

Deployed Bytecode

0x6080604052600436106100f35760003560e01c80636352211e1161008a578063a22cb46511610059578063a22cb4651461032b578063b88d4fde14610354578063c87b56dd1461037d578063e985e9c5146103ba576100f3565b80636352211e1461025d5780636fee74541461029a57806370a08231146102c357806395d89b4114610300576100f3565b806323b872dd116100c657806323b872dd146101c657806337f80c34146101ef57806342842e0e1461020b5780635e15984b14610234576100f3565b806301ffc9a7146100f857806306fdde0314610135578063081812fc14610160578063095ea7b31461019d575b600080fd5b34801561010457600080fd5b5061011f600480360381019061011a9190611e93565b6103f7565b60405161012c919061232a565b60405180910390f35b34801561014157600080fd5b5061014a6104d9565b6040516101579190612345565b60405180910390f35b34801561016c57600080fd5b5061018760048036038101906101829190611f53565b61056b565b60405161019491906122c3565b60405180910390f35b3480156101a957600080fd5b506101c460048036038101906101bf9190611e2e565b6105f0565b005b3480156101d257600080fd5b506101ed60048036038101906101e89190611d28565b610708565b005b61020960048036038101906102049190611f2a565b610768565b005b34801561021757600080fd5b50610232600480360381019061022d9190611d28565b610884565b005b34801561024057600080fd5b5061025b60048036038101906102569190611ee5565b6108a4565b005b34801561026957600080fd5b50610284600480360381019061027f9190611f53565b61094a565b60405161029191906122c3565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190611e6a565b6109fc565b005b3480156102cf57600080fd5b506102ea60048036038101906102e59190611cc3565b610b08565b6040516102f79190612587565b60405180910390f35b34801561030c57600080fd5b50610315610bc0565b6040516103229190612345565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190611df2565b610c52565b005b34801561036057600080fd5b5061037b60048036038101906103769190611d77565b610dd3565b005b34801561038957600080fd5b506103a4600480360381019061039f9190611f53565b610e35565b6040516103b19190612345565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190611cec565b610edc565b6040516103ee919061232a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d257506104d182610f70565b5b9050919050565b6060600080546104e8906127ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610514906127ba565b80156105615780601f1061053657610100808354040283529160200191610561565b820191906000526020600020905b81548152906001019060200180831161054457829003601f168201915b5050505050905090565b600061057682610fda565b6105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac906124a7565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fb8261094a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561066c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066390612507565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068b611046565b73ffffffffffffffffffffffffffffffffffffffff1614806106ba57506106b9816106b4611046565b610edc565b5b6106f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f090612427565b60405180910390fd5b610703838361104e565b505050565b610719610713611046565b82611107565b610758576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074f90612527565b60405180910390fd5b6107638383836111e5565b505050565b662386f26fc100003410156107b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a990612547565b60405180910390fd5b60008161ffff161180156107cb57506127118161ffff16105b61080a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080190612367565b60405180910390fd5b610818338261ffff16611441565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610880573d6000803e3d6000fd5b5050565b61089f83838360405180602001604052806000815250610dd3565b505050565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092b90612567565b60405180910390fd5b818160069190610945929190611ad2565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90612467565b60405180910390fd5b80915050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390612567565b60405180910390fd5b60005b6005811015610b0457610af133838360058110610ad5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002016020810190610ae89190611f2a565b61ffff16611441565b8080610afc9061281d565b915050610a8f565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090612447565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610bcf906127ba565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfb906127ba565b8015610c485780601f10610c1d57610100808354040283529160200191610c48565b820191906000526020600020905b815481529060010190602001808311610c2b57829003601f168201915b5050505050905090565b610c5a611046565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906123e7565b60405180910390fd5b8060056000610cd5611046565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d82611046565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dc7919061232a565b60405180910390a35050565b610de4610dde611046565b83611107565b610e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1a90612527565b60405180910390fd5b610e2f8484848461145f565b50505050565b6060610e4082610fda565b610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e76906124e7565b60405180910390fd5b6000610e896114bb565b90506000815111610ea95760405180602001604052806000815250610ed4565b80610eb38461154d565b604051602001610ec492919061229f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110c18361094a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061111282610fda565b611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890612407565b60405180910390fd5b600061115c8361094a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806111cb57508373ffffffffffffffffffffffffffffffffffffffff166111b38461056b565b73ffffffffffffffffffffffffffffffffffffffff16145b806111dc57506111db8185610edc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112058261094a565b73ffffffffffffffffffffffffffffffffffffffff161461125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906124c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c2906123c7565b60405180910390fd5b6112d68383836116fa565b6112e160008261104e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461133191906126c2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611388919061263b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61145b8282604051806020016040528060008152506116ff565b5050565b61146a8484846111e5565b6114768484848461175a565b6114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90612387565b60405180910390fd5b50505050565b6060600680546114ca906127ba565b80601f01602080910402602001604051908101604052809291908181526020018280546114f6906127ba565b80156115435780601f1061151857610100808354040283529160200191611543565b820191906000526020600020905b81548152906001019060200180831161152657829003601f168201915b5050505050905090565b60606000821415611595576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506116f5565b600082905060005b600082146115c75780806115b09061281d565b915050600a826115c09190612691565b915061159d565b60008167ffffffffffffffff811115611609577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561163b5781602001600182028036833780820191505090505b5090505b600085146116ee5760018261165491906126c2565b9150600a856116639190612866565b603061166f919061263b565b60f81b8183815181106116ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856116e79190612691565b945061163f565b8093505050505b919050565b505050565b61170983836118f1565b611716600084848461175a565b611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612387565b60405180910390fd5b505050565b600061177b8473ffffffffffffffffffffffffffffffffffffffff16611abf565b156118e4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026117a4611046565b8786866040518563ffffffff1660e01b81526004016117c694939291906122de565b602060405180830381600087803b1580156117e057600080fd5b505af192505050801561181157506040513d601f19601f8201168201806040525081019061180e9190611ebc565b60015b611894573d8060008114611841576040519150601f19603f3d011682016040523d82523d6000602084013e611846565b606091505b5060008151141561188c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188390612387565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506118e9565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612487565b60405180910390fd5b61196a81610fda565b156119aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a1906123a7565b60405180910390fd5b6119b6600083836116fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a06919061263b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054611ade906127ba565b90600052602060002090601f016020900481019282611b005760008555611b47565b82601f10611b1957803560ff1916838001178555611b47565b82800160010185558215611b47579182015b82811115611b46578235825591602001919060010190611b2b565b5b509050611b549190611b58565b5090565b5b80821115611b71576000816000905550600101611b59565b5090565b6000611b88611b83846125c7565b6125a2565b905082815260208101848484011115611ba057600080fd5b611bab848285612778565b509392505050565b600081359050611bc281612dbf565b92915050565b600081905082602060050282011115611be057600080fd5b92915050565b600081359050611bf581612dd6565b92915050565b600081359050611c0a81612ded565b92915050565b600081519050611c1f81612ded565b92915050565b600082601f830112611c3657600080fd5b8135611c46848260208601611b75565b91505092915050565b60008083601f840112611c6157600080fd5b8235905067ffffffffffffffff811115611c7a57600080fd5b602083019150836001820283011115611c9257600080fd5b9250929050565b600081359050611ca881612e04565b92915050565b600081359050611cbd81612e1b565b92915050565b600060208284031215611cd557600080fd5b6000611ce384828501611bb3565b91505092915050565b60008060408385031215611cff57600080fd5b6000611d0d85828601611bb3565b9250506020611d1e85828601611bb3565b9150509250929050565b600080600060608486031215611d3d57600080fd5b6000611d4b86828701611bb3565b9350506020611d5c86828701611bb3565b9250506040611d6d86828701611cae565b9150509250925092565b60008060008060808587031215611d8d57600080fd5b6000611d9b87828801611bb3565b9450506020611dac87828801611bb3565b9350506040611dbd87828801611cae565b925050606085013567ffffffffffffffff811115611dda57600080fd5b611de687828801611c25565b91505092959194509250565b60008060408385031215611e0557600080fd5b6000611e1385828601611bb3565b9250506020611e2485828601611be6565b9150509250929050565b60008060408385031215611e4157600080fd5b6000611e4f85828601611bb3565b9250506020611e6085828601611cae565b9150509250929050565b600060a08284031215611e7c57600080fd5b6000611e8a84828501611bc8565b91505092915050565b600060208284031215611ea557600080fd5b6000611eb384828501611bfb565b91505092915050565b600060208284031215611ece57600080fd5b6000611edc84828501611c10565b91505092915050565b60008060208385031215611ef857600080fd5b600083013567ffffffffffffffff811115611f1257600080fd5b611f1e85828601611c4f565b92509250509250929050565b600060208284031215611f3c57600080fd5b6000611f4a84828501611c99565b91505092915050565b600060208284031215611f6557600080fd5b6000611f7384828501611cae565b91505092915050565b611f85816126f6565b82525050565b611f9481612708565b82525050565b6000611fa5826125f8565b611faf818561260e565b9350611fbf818560208601612787565b611fc881612953565b840191505092915050565b6000611fde82612603565b611fe8818561261f565b9350611ff8818560208601612787565b61200181612953565b840191505092915050565b600061201782612603565b6120218185612630565b9350612031818560208601612787565b80840191505092915050565b600061204a60138361261f565b915061205582612964565b602082019050919050565b600061206d60328361261f565b91506120788261298d565b604082019050919050565b6000612090601c8361261f565b915061209b826129dc565b602082019050919050565b60006120b360248361261f565b91506120be82612a05565b604082019050919050565b60006120d660198361261f565b91506120e182612a54565b602082019050919050565b60006120f9602c8361261f565b915061210482612a7d565b604082019050919050565b600061211c60388361261f565b915061212782612acc565b604082019050919050565b600061213f602a8361261f565b915061214a82612b1b565b604082019050919050565b600061216260298361261f565b915061216d82612b6a565b604082019050919050565b600061218560208361261f565b915061219082612bb9565b602082019050919050565b60006121a8602c8361261f565b91506121b382612be2565b604082019050919050565b60006121cb60298361261f565b91506121d682612c31565b604082019050919050565b60006121ee602f8361261f565b91506121f982612c80565b604082019050919050565b600061221160218361261f565b915061221c82612ccf565b604082019050919050565b600061223460318361261f565b915061223f82612d1e565b604082019050919050565b600061225760128361261f565b915061226282612d6d565b602082019050919050565b600061227a60138361261f565b915061228582612d96565b602082019050919050565b6122998161276e565b82525050565b60006122ab828561200c565b91506122b7828461200c565b91508190509392505050565b60006020820190506122d86000830184611f7c565b92915050565b60006080820190506122f36000830187611f7c565b6123006020830186611f7c565b61230d6040830185612290565b818103606083015261231f8184611f9a565b905095945050505050565b600060208201905061233f6000830184611f8b565b92915050565b6000602082019050818103600083015261235f8184611fd3565b905092915050565b600060208201905081810360008301526123808161203d565b9050919050565b600060208201905081810360008301526123a081612060565b9050919050565b600060208201905081810360008301526123c081612083565b9050919050565b600060208201905081810360008301526123e0816120a6565b9050919050565b60006020820190508181036000830152612400816120c9565b9050919050565b60006020820190508181036000830152612420816120ec565b9050919050565b600060208201905081810360008301526124408161210f565b9050919050565b6000602082019050818103600083015261246081612132565b9050919050565b6000602082019050818103600083015261248081612155565b9050919050565b600060208201905081810360008301526124a081612178565b9050919050565b600060208201905081810360008301526124c08161219b565b9050919050565b600060208201905081810360008301526124e0816121be565b9050919050565b60006020820190508181036000830152612500816121e1565b9050919050565b6000602082019050818103600083015261252081612204565b9050919050565b6000602082019050818103600083015261254081612227565b9050919050565b600060208201905081810360008301526125608161224a565b9050919050565b600060208201905081810360008301526125808161226d565b9050919050565b600060208201905061259c6000830184612290565b92915050565b60006125ac6125bd565b90506125b882826127ec565b919050565b6000604051905090565b600067ffffffffffffffff8211156125e2576125e1612924565b5b6125eb82612953565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006126468261276e565b91506126518361276e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561268657612685612897565b5b828201905092915050565b600061269c8261276e565b91506126a78361276e565b9250826126b7576126b66128c6565b5b828204905092915050565b60006126cd8261276e565b91506126d88361276e565b9250828210156126eb576126ea612897565b5b828203905092915050565b60006127018261274e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156127a557808201518184015260208101905061278a565b838111156127b4576000848401525b50505050565b600060028204905060018216806127d257607f821691505b602082108114156127e6576127e56128f5565b5b50919050565b6127f582612953565b810181811067ffffffffffffffff8211171561281457612813612924565b5b80604052505050565b60006128288261276e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561285b5761285a612897565b5b600182019050919050565b60006128718261276e565b915061287c8361276e565b92508261288c5761288b6128c6565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f746f6b656e206f7574206f6620626f756e647300000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f707269636520697320746f6f20736d616c6c0000000000000000000000000000600082015250565b7f796f7520617265206e6f7420616c6c6f77656400000000000000000000000000600082015250565b612dc8816126f6565b8114612dd357600080fd5b50565b612ddf81612708565b8114612dea57600080fd5b50565b612df681612714565b8114612e0157600080fd5b50565b612e0d81612740565b8114612e1857600080fd5b50565b612e248161276e565b8114612e2f57600080fd5b5056fea2646970667358221220520d973580532210d04662b142a2608b0c700f621c8415b37e1e1ab869896d8464736f6c63430008010033

Deployed Bytecode Sourcemap

86:1150:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1473:292:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2405:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3865:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3402:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4755:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;704:287:9;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5131:151:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;520:177:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2099:239:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1003:228:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1829:208:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2574:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4158:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5353:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2749:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4524:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1473:292;1575:4;1614:25;1599:40;;;:11;:40;;;;:105;;;;1671:33;1656:48;;;:11;:48;;;;1599:105;:158;;;;1721:36;1745:11;1721:23;:36::i;:::-;1599:158;1592:165;;1473:292;;;:::o;2405:100::-;2459:13;2492:5;2485:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2405:100;:::o;3865:221::-;3941:7;3969:16;3977:7;3969;:16::i;:::-;3961:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4054:15;:24;4070:7;4054:24;;;;;;;;;;;;;;;;;;;;;4047:31;;3865:221;;;:::o;3402:397::-;3483:13;3499:23;3514:7;3499:14;:23::i;:::-;3483:39;;3547:5;3541:11;;:2;:11;;;;3533:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3627:5;3611:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3636:37;3653:5;3660:12;:10;:12::i;:::-;3636:16;:37::i;:::-;3611:62;3603:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;3770:21;3779:2;3783:7;3770:8;:21::i;:::-;3402:397;;;:::o;4755:305::-;4916:41;4935:12;:10;:12::i;:::-;4949:7;4916:18;:41::i;:::-;4908:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5024:28;5034:4;5040:2;5044:7;5024:9;:28::i;:::-;4755:305;;;:::o;704:287:9:-;790:9;777;:22;;769:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;851:1;842:8;:10;;;:28;;;;;865:5;856:8;:14;;;842:28;834:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;903:31;913:10;925:8;903:31;;:9;:31::i;:::-;952:10;;;;;;;;;;;944:28;;:39;973:9;944:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;704:287;:::o;5131:151:3:-;5235:39;5252:4;5258:2;5262:7;5235:39;;;;;;;;;;;;:16;:39::i;:::-;5131:151;;;:::o;520:177:9:-;617:10;602:25;;:10;;;;;;;;;;;:25;;;594:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;677:12;;661:13;:28;;;;;;;:::i;:::-;;520:177;;:::o;2099:239:3:-;2171:7;2191:13;2207:7;:16;2215:7;2207:16;;;;;;;;;;;;;;;;;;;;;2191:32;;2259:1;2242:19;;:5;:19;;;;2234:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2325:5;2318:12;;;2099:239;;;:::o;1003:228:9:-;1094:10;1079:25;;:10;;;;;;;;;;;:25;;;1071:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1143:6;1138:86;1156:1;1154;:3;1138:86;;;1177:35;1187:10;1199:9;1209:1;1199:12;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1177:35;;:9;:35::i;:::-;1158:3;;;;;:::i;:::-;;;;1138:86;;;;1003:228;:::o;1829:208:3:-;1901:7;1946:1;1929:19;;:5;:19;;;;1921:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2013:9;:16;2023:5;2013:16;;;;;;;;;;;;;;;;2006:23;;1829:208;;;:::o;2574:104::-;2630:13;2663:7;2656:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2574:104;:::o;4158:295::-;4273:12;:10;:12::i;:::-;4261:24;;:8;:24;;;;4253:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4373:8;4328:18;:32;4347:12;:10;:12::i;:::-;4328:32;;;;;;;;;;;;;;;:42;4361:8;4328:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4426:8;4397:48;;4412:12;:10;:12::i;:::-;4397:48;;;4436:8;4397:48;;;;;;:::i;:::-;;;;;;;;4158:295;;:::o;5353:285::-;5485:41;5504:12;:10;:12::i;:::-;5518:7;5485:18;:41::i;:::-;5477:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5591:39;5605:4;5611:2;5615:7;5624:5;5591:13;:39::i;:::-;5353:285;;;;:::o;2749:360::-;2822:13;2856:16;2864:7;2856;:16::i;:::-;2848:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2937:21;2961:10;:8;:10::i;:::-;2937:34;;3013:1;2995:7;2989:21;:25;:112;;;;;;;;;;;;;;;;;3054:7;3063:18;:7;:16;:18::i;:::-;3037:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2989:112;2982:119;;;2749:360;;;:::o;4524:164::-;4621:4;4645:18;:25;4664:5;4645:25;;;;;;;;;;;;;;;:35;4671:8;4645:35;;;;;;;;;;;;;;;;;;;;;;;;;4638:42;;4524:164;;;;:::o;785:157:2:-;870:4;909:25;894:40;;;:11;:40;;;;887:47;;785:157;;;:::o;7105:127:3:-;7170:4;7222:1;7194:30;;:7;:16;7202:7;7194:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7187:37;;7105:127;;;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;10982:174:3:-;11084:2;11057:15;:24;11073:7;11057:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11140:7;11136:2;11102:46;;11111:23;11126:7;11111:14;:23::i;:::-;11102:46;;;;;;;;;;;;10982:174;;:::o;7399:348::-;7492:4;7517:16;7525:7;7517;:16::i;:::-;7509:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7593:13;7609:23;7624:7;7609:14;:23::i;:::-;7593:39;;7662:5;7651:16;;:7;:16;;;:51;;;;7695:7;7671:31;;:20;7683:7;7671:11;:20::i;:::-;:31;;;7651:51;:87;;;;7706:32;7723:5;7730:7;7706:16;:32::i;:::-;7651:87;7643:96;;;7399:348;;;;:::o;10320:544::-;10445:4;10418:31;;:23;10433:7;10418:14;:23::i;:::-;:31;;;10410:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10528:1;10514:16;;:2;:16;;;;10506:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10584:39;10605:4;10611:2;10615:7;10584:20;:39::i;:::-;10688:29;10705:1;10709:7;10688:8;:29::i;:::-;10749:1;10730:9;:15;10740:4;10730:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10778:1;10761:9;:13;10771:2;10761:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10809:2;10790:7;:16;10798:7;10790:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10848:7;10844:2;10829:27;;10838:4;10829:27;;;;;;;;;;;;10320:544;;;:::o;8089:110::-;8165:26;8175:2;8179:7;8165:26;;;;;;;;;;;;:9;:26::i;:::-;8089:110;;:::o;6520:272::-;6634:28;6644:4;6650:2;6654:7;6634:9;:28::i;:::-;6681:48;6704:4;6710:2;6714:7;6723:5;6681:22;:48::i;:::-;6673:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6520:272;;;;:::o;402:106:9:-;454:13;487;480:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;402:106;:::o;284:723:8:-;340:13;570:1;561:5;:10;557:53;;;588:10;;;;;;;;;;;;;;;;;;;;;557:53;620:12;635:5;620:20;;651:14;676:78;691:1;683:4;:9;676:78;;709:8;;;;;:::i;:::-;;;;740:2;732:10;;;;;:::i;:::-;;;676:78;;;764:19;796:6;786:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;764:39;;814:154;830:1;821:5;:10;814:154;;858:1;848:11;;;;;:::i;:::-;;;925:2;917:5;:10;;;;:::i;:::-;904:2;:24;;;;:::i;:::-;891:39;;874:6;881;874:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;954:2;945:11;;;;;:::i;:::-;;;814:154;;;992:6;978:21;;;;;284:723;;;;:::o;13177:93:3:-;;;;:::o;8426:250::-;8522:18;8528:2;8532:7;8522:5;:18::i;:::-;8559:54;8590:1;8594:2;8598:7;8607:5;8559:22;:54::i;:::-;8551:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;8426:250;;;:::o;11721:843::-;11842:4;11868:15;:2;:13;;;:15::i;:::-;11864:693;;;11920:2;11904:36;;;11941:12;:10;:12::i;:::-;11955:4;11961:7;11970:5;11904:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11900:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12167:1;12150:6;:13;:18;12146:341;;;12193:60;;;;;;;;;;:::i;:::-;;;;;;;;12146:341;12437:6;12431:13;12422:6;12418:2;12414:15;12407:38;11900:602;12037:45;;;12027:55;;;:6;:55;;;;12020:62;;;;;11864:693;12541:4;12534:11;;11721:843;;;;;;;:::o;9012:382::-;9106:1;9092:16;;:2;:16;;;;9084:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9165:16;9173:7;9165;:16::i;:::-;9164:17;9156:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:45;9256:1;9260:2;9264:7;9227:20;:45::i;:::-;9302:1;9285:9;:13;9295:2;9285:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9333:2;9314:7;:16;9322:7;9314:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9378:7;9374:2;9353:33;;9370:1;9353:33;;;;;;;;;;;;9012:382;;:::o;743:422:0:-;803:4;1011:12;1122:7;1110:20;1102:28;;1156:1;1149:4;:8;1142:15;;;743:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:10:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:139::-;;440:6;427:20;418:29;;456:33;483:5;456:33;:::i;:::-;408:87;;;;:::o;518:181::-;;619:6;607:18;;672:3;664:4;658;654:15;644:8;640:30;637:39;634:2;;;689:1;686;679:12;634:2;597:102;;;;:::o;705:133::-;;786:6;773:20;764:29;;802:30;826:5;802:30;:::i;:::-;754:84;;;;:::o;844:137::-;;927:6;914:20;905:29;;943:32;969:5;943:32;:::i;:::-;895:86;;;;:::o;987:141::-;;1074:6;1068:13;1059:22;;1090:32;1116:5;1090:32;:::i;:::-;1049:79;;;;:::o;1147:271::-;;1251:3;1244:4;1236:6;1232:17;1228:27;1218:2;;1269:1;1266;1259:12;1218:2;1309:6;1296:20;1334:78;1408:3;1400:6;1393:4;1385:6;1381:17;1334:78;:::i;:::-;1325:87;;1208:210;;;;;:::o;1438:352::-;;;1556:3;1549:4;1541:6;1537:17;1533:27;1523:2;;1574:1;1571;1564:12;1523:2;1610:6;1597:20;1587:30;;1640:18;1632:6;1629:30;1626:2;;;1672:1;1669;1662:12;1626:2;1709:4;1701:6;1697:17;1685:29;;1763:3;1755:4;1747:6;1743:17;1733:8;1729:32;1726:41;1723:2;;;1780:1;1777;1770:12;1723:2;1513:277;;;;;:::o;1796:137::-;;1879:6;1866:20;1857:29;;1895:32;1921:5;1895:32;:::i;:::-;1847:86;;;;:::o;1939:139::-;;2023:6;2010:20;2001:29;;2039:33;2066:5;2039:33;:::i;:::-;1991:87;;;;:::o;2084:262::-;;2192:2;2180:9;2171:7;2167:23;2163:32;2160:2;;;2208:1;2205;2198:12;2160:2;2251:1;2276:53;2321:7;2312:6;2301:9;2297:22;2276:53;:::i;:::-;2266:63;;2222:117;2150:196;;;;:::o;2352:407::-;;;2477:2;2465:9;2456:7;2452:23;2448:32;2445:2;;;2493:1;2490;2483:12;2445:2;2536:1;2561:53;2606:7;2597:6;2586:9;2582:22;2561:53;:::i;:::-;2551:63;;2507:117;2663:2;2689:53;2734:7;2725:6;2714:9;2710:22;2689:53;:::i;:::-;2679:63;;2634:118;2435:324;;;;;:::o;2765:552::-;;;;2907:2;2895:9;2886:7;2882:23;2878:32;2875:2;;;2923:1;2920;2913:12;2875:2;2966:1;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2937:117;3093:2;3119:53;3164:7;3155:6;3144:9;3140:22;3119:53;:::i;:::-;3109:63;;3064:118;3221:2;3247:53;3292:7;3283:6;3272:9;3268:22;3247:53;:::i;:::-;3237:63;;3192:118;2865:452;;;;;:::o;3323:809::-;;;;;3491:3;3479:9;3470:7;3466:23;3462:33;3459:2;;;3508:1;3505;3498:12;3459:2;3551:1;3576:53;3621:7;3612:6;3601:9;3597:22;3576:53;:::i;:::-;3566:63;;3522:117;3678:2;3704:53;3749:7;3740:6;3729:9;3725:22;3704:53;:::i;:::-;3694:63;;3649:118;3806:2;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3777:118;3962:2;3951:9;3947:18;3934:32;3993:18;3985:6;3982:30;3979:2;;;4025:1;4022;4015:12;3979:2;4053:62;4107:7;4098:6;4087:9;4083:22;4053:62;:::i;:::-;4043:72;;3905:220;3449:683;;;;;;;:::o;4138:401::-;;;4260:2;4248:9;4239:7;4235:23;4231:32;4228:2;;;4276:1;4273;4266:12;4228:2;4319:1;4344:53;4389:7;4380:6;4369:9;4365:22;4344:53;:::i;:::-;4334:63;;4290:117;4446:2;4472:50;4514:7;4505:6;4494:9;4490:22;4472:50;:::i;:::-;4462:60;;4417:115;4218:321;;;;;:::o;4545:407::-;;;4670:2;4658:9;4649:7;4645:23;4641:32;4638:2;;;4686:1;4683;4676:12;4638:2;4729:1;4754:53;4799:7;4790:6;4779:9;4775:22;4754:53;:::i;:::-;4744:63;;4700:117;4856:2;4882:53;4927:7;4918:6;4907:9;4903:22;4882:53;:::i;:::-;4872:63;;4827:118;4628:324;;;;;:::o;4958:311::-;;5090:3;5078:9;5069:7;5065:23;5061:33;5058:2;;;5107:1;5104;5097:12;5058:2;5150:1;5175:77;5244:7;5235:6;5224:9;5220:22;5175:77;:::i;:::-;5165:87;;5121:141;5048:221;;;;:::o;5275:260::-;;5382:2;5370:9;5361:7;5357:23;5353:32;5350:2;;;5398:1;5395;5388:12;5350:2;5441:1;5466:52;5510:7;5501:6;5490:9;5486:22;5466:52;:::i;:::-;5456:62;;5412:116;5340:195;;;;:::o;5541:282::-;;5659:2;5647:9;5638:7;5634:23;5630:32;5627:2;;;5675:1;5672;5665:12;5627:2;5718:1;5743:63;5798:7;5789:6;5778:9;5774:22;5743:63;:::i;:::-;5733:73;;5689:127;5617:206;;;;:::o;5829:395::-;;;5957:2;5945:9;5936:7;5932:23;5928:32;5925:2;;;5973:1;5970;5963:12;5925:2;6044:1;6033:9;6029:17;6016:31;6074:18;6066:6;6063:30;6060:2;;;6106:1;6103;6096:12;6060:2;6142:65;6199:7;6190:6;6179:9;6175:22;6142:65;:::i;:::-;6124:83;;;;5987:230;5915:309;;;;;:::o;6230:260::-;;6337:2;6325:9;6316:7;6312:23;6308:32;6305:2;;;6353:1;6350;6343:12;6305:2;6396:1;6421:52;6465:7;6456:6;6445:9;6441:22;6421:52;:::i;:::-;6411:62;;6367:116;6295:195;;;;:::o;6496:262::-;;6604:2;6592:9;6583:7;6579:23;6575:32;6572:2;;;6620:1;6617;6610:12;6572:2;6663:1;6688:53;6733:7;6724:6;6713:9;6709:22;6688:53;:::i;:::-;6678:63;;6634:117;6562:196;;;;:::o;6764:118::-;6851:24;6869:5;6851:24;:::i;:::-;6846:3;6839:37;6829:53;;:::o;6888:109::-;6969:21;6984:5;6969:21;:::i;:::-;6964:3;6957:34;6947:50;;:::o;7003:360::-;;7117:38;7149:5;7117:38;:::i;:::-;7171:70;7234:6;7229:3;7171:70;:::i;:::-;7164:77;;7250:52;7295:6;7290:3;7283:4;7276:5;7272:16;7250:52;:::i;:::-;7327:29;7349:6;7327:29;:::i;:::-;7322:3;7318:39;7311:46;;7093:270;;;;;:::o;7369:364::-;;7485:39;7518:5;7485:39;:::i;:::-;7540:71;7604:6;7599:3;7540:71;:::i;:::-;7533:78;;7620:52;7665:6;7660:3;7653:4;7646:5;7642:16;7620:52;:::i;:::-;7697:29;7719:6;7697:29;:::i;:::-;7692:3;7688:39;7681:46;;7461:272;;;;;:::o;7739:377::-;;7873:39;7906:5;7873:39;:::i;:::-;7928:89;8010:6;8005:3;7928:89;:::i;:::-;7921:96;;8026:52;8071:6;8066:3;8059:4;8052:5;8048:16;8026:52;:::i;:::-;8103:6;8098:3;8094:16;8087:23;;7849:267;;;;;:::o;8122:366::-;;8285:67;8349:2;8344:3;8285:67;:::i;:::-;8278:74;;8361:93;8450:3;8361:93;:::i;:::-;8479:2;8474:3;8470:12;8463:19;;8268:220;;;:::o;8494:366::-;;8657:67;8721:2;8716:3;8657:67;:::i;:::-;8650:74;;8733:93;8822:3;8733:93;:::i;:::-;8851:2;8846:3;8842:12;8835:19;;8640:220;;;:::o;8866:366::-;;9029:67;9093:2;9088:3;9029:67;:::i;:::-;9022:74;;9105:93;9194:3;9105:93;:::i;:::-;9223:2;9218:3;9214:12;9207:19;;9012:220;;;:::o;9238:366::-;;9401:67;9465:2;9460:3;9401:67;:::i;:::-;9394:74;;9477:93;9566:3;9477:93;:::i;:::-;9595:2;9590:3;9586:12;9579:19;;9384:220;;;:::o;9610:366::-;;9773:67;9837:2;9832:3;9773:67;:::i;:::-;9766:74;;9849:93;9938:3;9849:93;:::i;:::-;9967:2;9962:3;9958:12;9951:19;;9756:220;;;:::o;9982:366::-;;10145:67;10209:2;10204:3;10145:67;:::i;:::-;10138:74;;10221:93;10310:3;10221:93;:::i;:::-;10339:2;10334:3;10330:12;10323:19;;10128:220;;;:::o;10354:366::-;;10517:67;10581:2;10576:3;10517:67;:::i;:::-;10510:74;;10593:93;10682:3;10593:93;:::i;:::-;10711:2;10706:3;10702:12;10695:19;;10500:220;;;:::o;10726:366::-;;10889:67;10953:2;10948:3;10889:67;:::i;:::-;10882:74;;10965:93;11054:3;10965:93;:::i;:::-;11083:2;11078:3;11074:12;11067:19;;10872:220;;;:::o;11098:366::-;;11261:67;11325:2;11320:3;11261:67;:::i;:::-;11254:74;;11337:93;11426:3;11337:93;:::i;:::-;11455:2;11450:3;11446:12;11439:19;;11244:220;;;:::o;11470:366::-;;11633:67;11697:2;11692:3;11633:67;:::i;:::-;11626:74;;11709:93;11798:3;11709:93;:::i;:::-;11827:2;11822:3;11818:12;11811:19;;11616:220;;;:::o;11842:366::-;;12005:67;12069:2;12064:3;12005:67;:::i;:::-;11998:74;;12081:93;12170:3;12081:93;:::i;:::-;12199:2;12194:3;12190:12;12183:19;;11988:220;;;:::o;12214:366::-;;12377:67;12441:2;12436:3;12377:67;:::i;:::-;12370:74;;12453:93;12542:3;12453:93;:::i;:::-;12571:2;12566:3;12562:12;12555:19;;12360:220;;;:::o;12586:366::-;;12749:67;12813:2;12808:3;12749:67;:::i;:::-;12742:74;;12825:93;12914:3;12825:93;:::i;:::-;12943:2;12938:3;12934:12;12927:19;;12732:220;;;:::o;12958:366::-;;13121:67;13185:2;13180:3;13121:67;:::i;:::-;13114:74;;13197:93;13286:3;13197:93;:::i;:::-;13315:2;13310:3;13306:12;13299:19;;13104:220;;;:::o;13330:366::-;;13493:67;13557:2;13552:3;13493:67;:::i;:::-;13486:74;;13569:93;13658:3;13569:93;:::i;:::-;13687:2;13682:3;13678:12;13671:19;;13476:220;;;:::o;13702:366::-;;13865:67;13929:2;13924:3;13865:67;:::i;:::-;13858:74;;13941:93;14030:3;13941:93;:::i;:::-;14059:2;14054:3;14050:12;14043:19;;13848:220;;;:::o;14074:366::-;;14237:67;14301:2;14296:3;14237:67;:::i;:::-;14230:74;;14313:93;14402:3;14313:93;:::i;:::-;14431:2;14426:3;14422:12;14415:19;;14220:220;;;:::o;14446:118::-;14533:24;14551:5;14533:24;:::i;:::-;14528:3;14521:37;14511:53;;:::o;14570:435::-;;14772:95;14863:3;14854:6;14772:95;:::i;:::-;14765:102;;14884:95;14975:3;14966:6;14884:95;:::i;:::-;14877:102;;14996:3;14989:10;;14754:251;;;;;:::o;15011:222::-;;15142:2;15131:9;15127:18;15119:26;;15155:71;15223:1;15212:9;15208:17;15199:6;15155:71;:::i;:::-;15109:124;;;;:::o;15239:640::-;;15472:3;15461:9;15457:19;15449:27;;15486:71;15554:1;15543:9;15539:17;15530:6;15486:71;:::i;:::-;15567:72;15635:2;15624:9;15620:18;15611:6;15567:72;:::i;:::-;15649;15717:2;15706:9;15702:18;15693:6;15649:72;:::i;:::-;15768:9;15762:4;15758:20;15753:2;15742:9;15738:18;15731:48;15796:76;15867:4;15858:6;15796:76;:::i;:::-;15788:84;;15439:440;;;;;;;:::o;15885:210::-;;16010:2;15999:9;15995:18;15987:26;;16023:65;16085:1;16074:9;16070:17;16061:6;16023:65;:::i;:::-;15977:118;;;;:::o;16101:313::-;;16252:2;16241:9;16237:18;16229:26;;16301:9;16295:4;16291:20;16287:1;16276:9;16272:17;16265:47;16329:78;16402:4;16393:6;16329:78;:::i;:::-;16321:86;;16219:195;;;;:::o;16420:419::-;;16624:2;16613:9;16609:18;16601:26;;16673:9;16667:4;16663:20;16659:1;16648:9;16644:17;16637:47;16701:131;16827:4;16701:131;:::i;:::-;16693:139;;16591:248;;;:::o;16845:419::-;;17049:2;17038:9;17034:18;17026:26;;17098:9;17092:4;17088:20;17084:1;17073:9;17069:17;17062:47;17126:131;17252:4;17126:131;:::i;:::-;17118:139;;17016:248;;;:::o;17270:419::-;;17474:2;17463:9;17459:18;17451:26;;17523:9;17517:4;17513:20;17509:1;17498:9;17494:17;17487:47;17551:131;17677:4;17551:131;:::i;:::-;17543:139;;17441:248;;;:::o;17695:419::-;;17899:2;17888:9;17884:18;17876:26;;17948:9;17942:4;17938:20;17934:1;17923:9;17919:17;17912:47;17976:131;18102:4;17976:131;:::i;:::-;17968:139;;17866:248;;;:::o;18120:419::-;;18324:2;18313:9;18309:18;18301:26;;18373:9;18367:4;18363:20;18359:1;18348:9;18344:17;18337:47;18401:131;18527:4;18401:131;:::i;:::-;18393:139;;18291:248;;;:::o;18545:419::-;;18749:2;18738:9;18734:18;18726:26;;18798:9;18792:4;18788:20;18784:1;18773:9;18769:17;18762:47;18826:131;18952:4;18826:131;:::i;:::-;18818:139;;18716:248;;;:::o;18970:419::-;;19174:2;19163:9;19159:18;19151:26;;19223:9;19217:4;19213:20;19209:1;19198:9;19194:17;19187:47;19251:131;19377:4;19251:131;:::i;:::-;19243:139;;19141:248;;;:::o;19395:419::-;;19599:2;19588:9;19584:18;19576:26;;19648:9;19642:4;19638:20;19634:1;19623:9;19619:17;19612:47;19676:131;19802:4;19676:131;:::i;:::-;19668:139;;19566:248;;;:::o;19820:419::-;;20024:2;20013:9;20009:18;20001:26;;20073:9;20067:4;20063:20;20059:1;20048:9;20044:17;20037:47;20101:131;20227:4;20101:131;:::i;:::-;20093:139;;19991:248;;;:::o;20245:419::-;;20449:2;20438:9;20434:18;20426:26;;20498:9;20492:4;20488:20;20484:1;20473:9;20469:17;20462:47;20526:131;20652:4;20526:131;:::i;:::-;20518:139;;20416:248;;;:::o;20670:419::-;;20874:2;20863:9;20859:18;20851:26;;20923:9;20917:4;20913:20;20909:1;20898:9;20894:17;20887:47;20951:131;21077:4;20951:131;:::i;:::-;20943:139;;20841:248;;;:::o;21095:419::-;;21299:2;21288:9;21284:18;21276:26;;21348:9;21342:4;21338:20;21334:1;21323:9;21319:17;21312:47;21376:131;21502:4;21376:131;:::i;:::-;21368:139;;21266:248;;;:::o;21520:419::-;;21724:2;21713:9;21709:18;21701:26;;21773:9;21767:4;21763:20;21759:1;21748:9;21744:17;21737:47;21801:131;21927:4;21801:131;:::i;:::-;21793:139;;21691:248;;;:::o;21945:419::-;;22149:2;22138:9;22134:18;22126:26;;22198:9;22192:4;22188:20;22184:1;22173:9;22169:17;22162:47;22226:131;22352:4;22226:131;:::i;:::-;22218:139;;22116:248;;;:::o;22370:419::-;;22574:2;22563:9;22559:18;22551:26;;22623:9;22617:4;22613:20;22609:1;22598:9;22594:17;22587:47;22651:131;22777:4;22651:131;:::i;:::-;22643:139;;22541:248;;;:::o;22795:419::-;;22999:2;22988:9;22984:18;22976:26;;23048:9;23042:4;23038:20;23034:1;23023:9;23019:17;23012:47;23076:131;23202:4;23076:131;:::i;:::-;23068:139;;22966:248;;;:::o;23220:419::-;;23424:2;23413:9;23409:18;23401:26;;23473:9;23467:4;23463:20;23459:1;23448:9;23444:17;23437:47;23501:131;23627:4;23501:131;:::i;:::-;23493:139;;23391:248;;;:::o;23645:222::-;;23776:2;23765:9;23761:18;23753:26;;23789:71;23857:1;23846:9;23842:17;23833:6;23789:71;:::i;:::-;23743:124;;;;:::o;23873:129::-;;23934:20;;:::i;:::-;23924:30;;23963:33;23991:4;23983:6;23963:33;:::i;:::-;23914:88;;;:::o;24008:75::-;;24074:2;24068:9;24058:19;;24048:35;:::o;24089:307::-;;24240:18;24232:6;24229:30;24226:2;;;24262:18;;:::i;:::-;24226:2;24300:29;24322:6;24300:29;:::i;:::-;24292:37;;24384:4;24378;24374:15;24366:23;;24155:241;;;:::o;24402:98::-;;24487:5;24481:12;24471:22;;24460:40;;;:::o;24506:99::-;;24592:5;24586:12;24576:22;;24565:40;;;:::o;24611:168::-;;24728:6;24723:3;24716:19;24768:4;24763:3;24759:14;24744:29;;24706:73;;;;:::o;24785:169::-;;24903:6;24898:3;24891:19;24943:4;24938:3;24934:14;24919:29;;24881:73;;;;:::o;24960:148::-;;25099:3;25084:18;;25074:34;;;;:::o;25114:305::-;;25173:20;25191:1;25173:20;:::i;:::-;25168:25;;25207:20;25225:1;25207:20;:::i;:::-;25202:25;;25361:1;25293:66;25289:74;25286:1;25283:81;25280:2;;;25367:18;;:::i;:::-;25280:2;25411:1;25408;25404:9;25397:16;;25158:261;;;;:::o;25425:185::-;;25482:20;25500:1;25482:20;:::i;:::-;25477:25;;25516:20;25534:1;25516:20;:::i;:::-;25511:25;;25555:1;25545:2;;25560:18;;:::i;:::-;25545:2;25602:1;25599;25595:9;25590:14;;25467:143;;;;:::o;25616:191::-;;25676:20;25694:1;25676:20;:::i;:::-;25671:25;;25710:20;25728:1;25710:20;:::i;:::-;25705:25;;25749:1;25746;25743:8;25740:2;;;25754:18;;:::i;:::-;25740:2;25799:1;25796;25792:9;25784:17;;25661:146;;;;:::o;25813:96::-;;25879:24;25897:5;25879:24;:::i;:::-;25868:35;;25858:51;;;:::o;25915:90::-;;25992:5;25985:13;25978:21;25967:32;;25957:48;;;:::o;26011:149::-;;26087:66;26080:5;26076:78;26065:89;;26055:105;;;:::o;26166:89::-;;26242:6;26235:5;26231:18;26220:29;;26210:45;;;:::o;26261:126::-;;26338:42;26331:5;26327:54;26316:65;;26306:81;;;:::o;26393:77::-;;26459:5;26448:16;;26438:32;;;:::o;26476:154::-;26560:6;26555:3;26550;26537:30;26622:1;26613:6;26608:3;26604:16;26597:27;26527:103;;;:::o;26636:307::-;26704:1;26714:113;26728:6;26725:1;26722:13;26714:113;;;26813:1;26808:3;26804:11;26798:18;26794:1;26789:3;26785:11;26778:39;26750:2;26747:1;26743:10;26738:15;;26714:113;;;26845:6;26842:1;26839:13;26836:2;;;26925:1;26916:6;26911:3;26907:16;26900:27;26836:2;26685:258;;;;:::o;26949:320::-;;27030:1;27024:4;27020:12;27010:22;;27077:1;27071:4;27067:12;27098:18;27088:2;;27154:4;27146:6;27142:17;27132:27;;27088:2;27216;27208:6;27205:14;27185:18;27182:38;27179:2;;;27235:18;;:::i;:::-;27179:2;27000:269;;;;:::o;27275:281::-;27358:27;27380:4;27358:27;:::i;:::-;27350:6;27346:40;27488:6;27476:10;27473:22;27452:18;27440:10;27437:34;27434:62;27431:2;;;27499:18;;:::i;:::-;27431:2;27539:10;27535:2;27528:22;27318:238;;;:::o;27562:233::-;;27624:24;27642:5;27624:24;:::i;:::-;27615:33;;27670:66;27663:5;27660:77;27657:2;;;27740:18;;:::i;:::-;27657:2;27787:1;27780:5;27776:13;27769:20;;27605:190;;;:::o;27801:176::-;;27850:20;27868:1;27850:20;:::i;:::-;27845:25;;27884:20;27902:1;27884:20;:::i;:::-;27879:25;;27923:1;27913:2;;27928:18;;:::i;:::-;27913:2;27969:1;27966;27962:9;27957:14;;27835:142;;;;:::o;27983:180::-;28031:77;28028:1;28021:88;28128:4;28125:1;28118:15;28152:4;28149:1;28142:15;28169:180;28217:77;28214:1;28207:88;28314:4;28311:1;28304:15;28338:4;28335:1;28328:15;28355:180;28403:77;28400:1;28393:88;28500:4;28497:1;28490:15;28524:4;28521:1;28514:15;28541:180;28589:77;28586:1;28579:88;28686:4;28683:1;28676:15;28710:4;28707:1;28700:15;28727:102;;28819:2;28815:7;28810:2;28803:5;28799:14;28795:28;28785:38;;28775:54;;;:::o;28835:169::-;28975:21;28971:1;28963:6;28959:14;28952:45;28941:63;:::o;29010:237::-;29150:34;29146:1;29138:6;29134:14;29127:58;29219:20;29214:2;29206:6;29202:15;29195:45;29116:131;:::o;29253:178::-;29393:30;29389:1;29381:6;29377:14;29370:54;29359:72;:::o;29437:223::-;29577:34;29573:1;29565:6;29561:14;29554:58;29646:6;29641:2;29633:6;29629:15;29622:31;29543:117;:::o;29666:175::-;29806:27;29802:1;29794:6;29790:14;29783:51;29772:69;:::o;29847:231::-;29987:34;29983:1;29975:6;29971:14;29964:58;30056:14;30051:2;30043:6;30039:15;30032:39;29953:125;:::o;30084:243::-;30224:34;30220:1;30212:6;30208:14;30201:58;30293:26;30288:2;30280:6;30276:15;30269:51;30190:137;:::o;30333:229::-;30473:34;30469:1;30461:6;30457:14;30450:58;30542:12;30537:2;30529:6;30525:15;30518:37;30439:123;:::o;30568:228::-;30708:34;30704:1;30696:6;30692:14;30685:58;30777:11;30772:2;30764:6;30760:15;30753:36;30674:122;:::o;30802:182::-;30942:34;30938:1;30930:6;30926:14;30919:58;30908:76;:::o;30990:231::-;31130:34;31126:1;31118:6;31114:14;31107:58;31199:14;31194:2;31186:6;31182:15;31175:39;31096:125;:::o;31227:228::-;31367:34;31363:1;31355:6;31351:14;31344:58;31436:11;31431:2;31423:6;31419:15;31412:36;31333:122;:::o;31461:234::-;31601:34;31597:1;31589:6;31585:14;31578:58;31670:17;31665:2;31657:6;31653:15;31646:42;31567:128;:::o;31701:220::-;31841:34;31837:1;31829:6;31825:14;31818:58;31910:3;31905:2;31897:6;31893:15;31886:28;31807:114;:::o;31927:236::-;32067:34;32063:1;32055:6;32051:14;32044:58;32136:19;32131:2;32123:6;32119:15;32112:44;32033:130;:::o;32169:168::-;32309:20;32305:1;32297:6;32293:14;32286:44;32275:62;:::o;32343:169::-;32483:21;32479:1;32471:6;32467:14;32460:45;32449:63;:::o;32518:122::-;32591:24;32609:5;32591:24;:::i;:::-;32584:5;32581:35;32571:2;;32630:1;32627;32620:12;32571:2;32561:79;:::o;32646:116::-;32716:21;32731:5;32716:21;:::i;:::-;32709:5;32706:32;32696:2;;32752:1;32749;32742:12;32696:2;32686:76;:::o;32768:120::-;32840:23;32857:5;32840:23;:::i;:::-;32833:5;32830:34;32820:2;;32878:1;32875;32868:12;32820:2;32810:78;:::o;32894:120::-;32966:23;32983:5;32966:23;:::i;:::-;32959:5;32956:34;32946:2;;33004:1;33001;32994:12;32946:2;32936:78;:::o;33020:122::-;33093:24;33111:5;33093:24;:::i;:::-;33086:5;33083:35;33073:2;;33132:1;33129;33122:12;33073:2;33063:79;:::o

Swarm Source

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