ETH Price: $3,468.70 (-1.08%)
Gas: 2 Gwei

Token

Etheremura Katana (Katana)
 

Overview

Max Total Supply

569 Katana

Holders

125

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Katana
0x9784a3B26FAB7dfACdcB019B19fEaaE3373a5CE5
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:
EtheremuraKatana

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 6 of 13: EtheremuraKatana.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract EtheremuraKatana is ERC721Enumerable, Ownable{
    uint public constant MAX_NFTS = 9888;
	bool public paused = true;
	string _baseTokenURI = "https://api.etheremura.io/katana/";
	mapping(uint256 => bool) private _samurai;
	MAIN public constant MAIN_CONTRACT = MAIN(0x42074B47E57a0950F21443CCBab452Ab53890956);

    constructor() ERC721("Etheremura Katana", "Katana")  {
        
    }
    
    function mintKatana(address _to, uint _count) public {
        require(!paused, "Pause");
        require(_count <= 20, "Exceeds 20");
        require(totalSupply() + _count <= MAX_NFTS, "Max limit");
        require(totalSupply() < MAX_NFTS, "Sale end");
        require(getAvailableKatanasCount(msg.sender) >= _count, "No available katanas");
        
        uint tokenCount = MAIN_CONTRACT.balanceOf(msg.sender);
        require(tokenCount > 1, "No samurai");
        
        for(uint i = 0; i < tokenCount; i++){
            if(!_samurai[MAIN_CONTRACT.tokenOfOwnerByIndex(msg.sender, i)] && _count > 0){
                _samurai[MAIN_CONTRACT.tokenOfOwnerByIndex(msg.sender, i)] = true;
                _safeMint(_to, totalSupply());
                _count = _count - 1;
            }
        }
        
    }
        
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }
    
    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    function getAvailableKatanasCount(address _owner) public view returns(uint256) {
        uint tokenCount = MAIN_CONTRACT.balanceOf(_owner);
        uint256 _count;
        for(uint i = 0; i < tokenCount; i++){
            if(!_samurai[MAIN_CONTRACT.tokenOfOwnerByIndex(msg.sender, i)]){
                _count = _count + 1;
            }
        }
        return _count;
    }
    
    function isKatanaMinter(uint256 _tokenId) public view returns(bool) {
        return _samurai[_tokenId]; 
    }
    
    function pause(bool val) public onlyOwner {
        paused = val;
    }

    function withdrawAll() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
    
}

interface MAIN{
    function balanceOf(address account) external view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
}

File 1 of 13: 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;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 13: 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) {
        return msg.data;
    }
}

File 3 of 13: 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 13: 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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 5 of 13: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 13: 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 8 of 13: 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 9 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 10 of 13: 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 11 of 13: 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 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAIN_CONTRACT","outputs":[{"internalType":"contract MAIN","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}],"name":"getAvailableKatanasCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isKatanaMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintKatana","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526001600a60146101000a81548160ff0219169083151502179055506040518060600160405280602181526020016200482860219139600b908051906020019062000050929190620001f3565b503480156200005e57600080fd5b506040518060400160405280601181526020017f4574686572656d757261204b6174616e610000000000000000000000000000008152506040518060400160405280600681526020017f4b6174616e6100000000000000000000000000000000000000000000000000008152508160009080519060200190620000e3929190620001f3565b508060019080519060200190620000fc929190620001f3565b5050506200011f620001136200012560201b60201c565b6200012d60201b60201c565b62000308565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020190620002a3565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b60006002820490506001821680620002bc57607f821691505b60208210811415620002d357620002d2620002d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61451080620003186000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610659578063e985e9c514610696578063f2fde38b146106d3578063faaa386d146106fc576101c2565b806395d89b411461059f578063a05c8153146105ca578063a22cb46514610607578063b88d4fde14610630576101c2565b8063715018a6116100d1578063715018a61461051657806376fcb4a71461052d578063853828b61461056a5780638da5cb5b14610574576101c2565b80636352211e1461047157806363b2a8ff146104ae57806370a08231146104d9576101c2565b806323b872dd11610164578063438b63001161013e578063438b6300146103a35780634f6ccce7146103e057806355f804b31461041d5780635c975abb14610446576101c2565b806323b872dd146103145780632f745c591461033d57806342842e0e1461037a576101c2565b8063081812fc116101a0578063081812fc14610258578063093d8c6414610295578063095ea7b3146102c057806318160ddd146102e9576101c2565b806301ffc9a7146101c757806302329a291461020457806306fdde031461022d575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612fda565b610725565b6040516101fb9190613659565b60405180910390f35b34801561021057600080fd5b5061022b60048036038101906102269190612fad565b61079f565b005b34801561023957600080fd5b50610242610838565b60405161024f919061368f565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a919061307d565b6108ca565b60405161028c91906135a7565b60405180910390f35b3480156102a157600080fd5b506102aa61094f565b6040516102b791906139b1565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612f6d565b610955565b005b3480156102f557600080fd5b506102fe610a6d565b60405161030b91906139b1565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612e57565b610a7a565b005b34801561034957600080fd5b50610364600480360381019061035f9190612f6d565b610ada565b60405161037191906139b1565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612e57565b610b7f565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612dea565b610b9f565b6040516103d79190613637565b60405180910390f35b3480156103ec57600080fd5b506104076004803603810190610402919061307d565b610c4d565b60405161041491906139b1565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190613034565b610cbe565b005b34801561045257600080fd5b5061045b610d54565b6040516104689190613659565b60405180910390f35b34801561047d57600080fd5b506104986004803603810190610493919061307d565b610d67565b6040516104a591906135a7565b60405180910390f35b3480156104ba57600080fd5b506104c3610e19565b6040516104d09190613674565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612dea565b610e31565b60405161050d91906139b1565b60405180910390f35b34801561052257600080fd5b5061052b610ee9565b005b34801561053957600080fd5b50610554600480360381019061054f919061307d565b610f71565b6040516105619190613659565b60405180910390f35b610572610f9b565b005b34801561058057600080fd5b50610589611057565b60405161059691906135a7565b60405180910390f35b3480156105ab57600080fd5b506105b4611081565b6040516105c1919061368f565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190612dea565b611113565b6040516105fe91906139b1565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190612f2d565b6112b6565b005b34801561063c57600080fd5b5061065760048036038101906106529190612eaa565b611437565b005b34801561066557600080fd5b50610680600480360381019061067b919061307d565b611499565b60405161068d919061368f565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190612e17565b611540565b6040516106ca9190613659565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190612dea565b6115d4565b005b34801561070857600080fd5b50610723600480360381019061071e9190612f6d565b6116cc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610798575061079782611b11565b5b9050919050565b6107a7611bf3565b73ffffffffffffffffffffffffffffffffffffffff166107c5611057565b73ffffffffffffffffffffffffffffffffffffffff161461081b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610812906138d1565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b60606000805461084790613c76565b80601f016020809104026020016040519081016040528092919081815260200182805461087390613c76565b80156108c05780601f10610895576101008083540402835291602001916108c0565b820191906000526020600020905b8154815290600101906020018083116108a357829003601f168201915b5050505050905090565b60006108d582611bfb565b610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b906138b1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6126a081565b600061096082610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890613931565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f0611bf3565b73ffffffffffffffffffffffffffffffffffffffff161480610a1f5750610a1e81610a19611bf3565b611540565b5b610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590613811565b60405180910390fd5b610a688383611c67565b505050565b6000600880549050905090565b610a8b610a85611bf3565b82611d20565b610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613971565b60405180910390fd5b610ad5838383611dfe565b505050565b6000610ae583610e31565b8210610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d906136d1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b9a83838360405180602001604052806000815250611437565b505050565b60606000610bac83610e31565b905060008167ffffffffffffffff811115610bca57610bc9613e3e565b5b604051908082528060200260200182016040528015610bf85781602001602082028036833780820191505090505b50905060005b82811015610c4257610c108582610ada565b828281518110610c2357610c22613e0f565b5b6020026020010181815250508080610c3a90613cd9565b915050610bfe565b508092505050919050565b6000610c57610a6d565b8210610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613991565b60405180910390fd5b60088281548110610cac57610cab613e0f565b5b90600052602060002001549050919050565b610cc6611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610ce4611057565b73ffffffffffffffffffffffffffffffffffffffff1614610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d31906138d1565b60405180910390fd5b80600b9080519060200190610d50929190612be9565b5050565b600a60149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790613851565b60405180910390fd5b80915050919050565b7342074b47e57a0950f21443ccbab452ab5389095681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613831565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ef1611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610f0f611057565b73ffffffffffffffffffffffffffffffffffffffff1614610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c906138d1565b60405180910390fd5b610f6f600061205a565b565b6000600c600083815260200190815260200160002060009054906101000a900460ff169050919050565b610fa3611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610fc1611057565b73ffffffffffffffffffffffffffffffffffffffff1614611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906138d1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061105557600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461109090613c76565b80601f01602080910402602001604051908101604052809291908181526020018280546110bc90613c76565b80156111095780601f106110de57610100808354040283529160200191611109565b820191906000526020600020905b8154815290600101906020018083116110ec57829003601f168201915b5050505050905090565b6000807342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161116391906135a7565b60206040518083038186803b15801561117b57600080fd5b505afa15801561118f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b391906130aa565b9050600080600090505b828110156112ab57600c60007342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff16632f745c5933856040518363ffffffff1660e01b815260040161121892919061360e565b60206040518083038186803b15801561123057600080fd5b505afa158015611244573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126891906130aa565b815260200190815260200160002060009054906101000a900460ff16611298576001826112959190613acf565b91505b80806112a390613cd9565b9150506111bd565b508092505050919050565b6112be611bf3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613791565b60405180910390fd5b8060056000611339611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113e6611bf3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161142b9190613659565b60405180910390a35050565b611448611442611bf3565b83611d20565b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613971565b60405180910390fd5b61149384848484612120565b50505050565b60606114a482611bfb565b6114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90613911565b60405180910390fd5b60006114ed61217c565b9050600081511161150d5760405180602001604052806000815250611538565b806115178461220e565b604051602001611528929190613583565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115dc611bf3565b73ffffffffffffffffffffffffffffffffffffffff166115fa611057565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611647906138d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790613711565b60405180910390fd5b6116c98161205a565b50565b600a60149054906101000a900460ff161561171c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611713906137b1565b60405180910390fd5b6014811115611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613951565b60405180910390fd5b6126a08161176c610a6d565b6117769190613acf565b11156117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae906137d1565b60405180910390fd5b6126a06117c2610a6d565b10611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613891565b60405180910390fd5b8061180c33611113565b101561184d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184490613751565b60405180910390fd5b60007342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161189c91906135a7565b60206040518083038186803b1580156118b457600080fd5b505afa1580156118c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ec91906130aa565b905060018111611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906136b1565b60405180910390fd5b60005b81811015611b0b57600c60007342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff16632f745c5933856040518363ffffffff1660e01b815260040161198f92919061360e565b60206040518083038186803b1580156119a757600080fd5b505afa1580156119bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119df91906130aa565b815260200190815260200160002060009054906101000a900460ff16158015611a085750600083115b15611af8576001600c60007342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff16632f745c5933866040518363ffffffff1660e01b8152600401611a6292919061360e565b60206040518083038186803b158015611a7a57600080fd5b505afa158015611a8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab291906130aa565b815260200190815260200160002060006101000a81548160ff021916908315150217905550611ae884611ae3610a6d565b61236f565b600183611af59190613b56565b92505b8080611b0390613cd9565b915050611934565b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bdc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bec5750611beb8261238d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cda83610d67565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d2b82611bfb565b611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d61906137f1565b60405180910390fd5b6000611d7583610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de457508373ffffffffffffffffffffffffffffffffffffffff16611dcc846108ca565b73ffffffffffffffffffffffffffffffffffffffff16145b80611df55750611df48185611540565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e1e82610d67565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b906138f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613771565b60405180910390fd5b611eef8383836123f7565b611efa600082611c67565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4a9190613b56565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa19190613acf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61212b848484611dfe565b6121378484848461250b565b612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d906136f1565b60405180910390fd5b50505050565b6060600b805461218b90613c76565b80601f01602080910402602001604051908101604052809291908181526020018280546121b790613c76565b80156122045780601f106121d957610100808354040283529160200191612204565b820191906000526020600020905b8154815290600101906020018083116121e757829003601f168201915b5050505050905090565b60606000821415612256576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061236a565b600082905060005b6000821461228857808061227190613cd9565b915050600a826122819190613b25565b915061225e565b60008167ffffffffffffffff8111156122a4576122a3613e3e565b5b6040519080825280601f01601f1916602001820160405280156122d65781602001600182028036833780820191505090505b5090505b60008514612363576001826122ef9190613b56565b9150600a856122fe9190613d22565b603061230a9190613acf565b60f81b8183815181106123205761231f613e0f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235c9190613b25565b94506122da565b8093505050505b919050565b6123898282604051806020016040528060008152506126a2565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124028383836126fd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124455761244081612702565b612484565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248357612482838261274b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c7576124c2816128b8565b612506565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612505576125048282612989565b5b5b505050565b600061252c8473ffffffffffffffffffffffffffffffffffffffff16612a08565b15612695578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612555611bf3565b8786866040518563ffffffff1660e01b815260040161257794939291906135c2565b602060405180830381600087803b15801561259157600080fd5b505af19250505080156125c257506040513d601f19601f820116820180604052508101906125bf9190613007565b60015b612645573d80600081146125f2576040519150601f19603f3d011682016040523d82523d6000602084013e6125f7565b606091505b5060008151141561263d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612634906136f1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061269a565b600190505b949350505050565b6126ac8383612a1b565b6126b9600084848461250b565b6126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906136f1565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161275884610e31565b6127629190613b56565b9050600060076000848152602001908152602001600020549050818114612847576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128cc9190613b56565b90506000600960008481526020019081526020016000205490506000600883815481106128fc576128fb613e0f565b5b90600052602060002001549050806008838154811061291e5761291d613e0f565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061296d5761296c613de0565b5b6001900381819060005260206000200160009055905550505050565b600061299483610e31565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8290613871565b60405180910390fd5b612a9481611bfb565b15612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb90613731565b60405180910390fd5b612ae0600083836123f7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b309190613acf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612bf590613c76565b90600052602060002090601f016020900481019282612c175760008555612c5e565b82601f10612c3057805160ff1916838001178555612c5e565b82800160010185558215612c5e579182015b82811115612c5d578251825591602001919060010190612c42565b5b509050612c6b9190612c6f565b5090565b5b80821115612c88576000816000905550600101612c70565b5090565b6000612c9f612c9a846139f1565b6139cc565b905082815260208101848484011115612cbb57612cba613e72565b5b612cc6848285613c34565b509392505050565b6000612ce1612cdc84613a22565b6139cc565b905082815260208101848484011115612cfd57612cfc613e72565b5b612d08848285613c34565b509392505050565b600081359050612d1f8161447e565b92915050565b600081359050612d3481614495565b92915050565b600081359050612d49816144ac565b92915050565b600081519050612d5e816144ac565b92915050565b600082601f830112612d7957612d78613e6d565b5b8135612d89848260208601612c8c565b91505092915050565b600082601f830112612da757612da6613e6d565b5b8135612db7848260208601612cce565b91505092915050565b600081359050612dcf816144c3565b92915050565b600081519050612de4816144c3565b92915050565b600060208284031215612e0057612dff613e7c565b5b6000612e0e84828501612d10565b91505092915050565b60008060408385031215612e2e57612e2d613e7c565b5b6000612e3c85828601612d10565b9250506020612e4d85828601612d10565b9150509250929050565b600080600060608486031215612e7057612e6f613e7c565b5b6000612e7e86828701612d10565b9350506020612e8f86828701612d10565b9250506040612ea086828701612dc0565b9150509250925092565b60008060008060808587031215612ec457612ec3613e7c565b5b6000612ed287828801612d10565b9450506020612ee387828801612d10565b9350506040612ef487828801612dc0565b925050606085013567ffffffffffffffff811115612f1557612f14613e77565b5b612f2187828801612d64565b91505092959194509250565b60008060408385031215612f4457612f43613e7c565b5b6000612f5285828601612d10565b9250506020612f6385828601612d25565b9150509250929050565b60008060408385031215612f8457612f83613e7c565b5b6000612f9285828601612d10565b9250506020612fa385828601612dc0565b9150509250929050565b600060208284031215612fc357612fc2613e7c565b5b6000612fd184828501612d25565b91505092915050565b600060208284031215612ff057612fef613e7c565b5b6000612ffe84828501612d3a565b91505092915050565b60006020828403121561301d5761301c613e7c565b5b600061302b84828501612d4f565b91505092915050565b60006020828403121561304a57613049613e7c565b5b600082013567ffffffffffffffff81111561306857613067613e77565b5b61307484828501612d92565b91505092915050565b60006020828403121561309357613092613e7c565b5b60006130a184828501612dc0565b91505092915050565b6000602082840312156130c0576130bf613e7c565b5b60006130ce84828501612dd5565b91505092915050565b60006130e38383613565565b60208301905092915050565b6130f881613b8a565b82525050565b600061310982613a63565b6131138185613a91565b935061311e83613a53565b8060005b8381101561314f57815161313688826130d7565b975061314183613a84565b925050600181019050613122565b5085935050505092915050565b61316581613b9c565b82525050565b600061317682613a6e565b6131808185613aa2565b9350613190818560208601613c43565b61319981613e81565b840191505092915050565b6131ad81613bfe565b82525050565b60006131be82613a79565b6131c88185613ab3565b93506131d8818560208601613c43565b6131e181613e81565b840191505092915050565b60006131f782613a79565b6132018185613ac4565b9350613211818560208601613c43565b80840191505092915050565b600061322a600a83613ab3565b915061323582613e92565b602082019050919050565b600061324d602b83613ab3565b915061325882613ebb565b604082019050919050565b6000613270603283613ab3565b915061327b82613f0a565b604082019050919050565b6000613293602683613ab3565b915061329e82613f59565b604082019050919050565b60006132b6601c83613ab3565b91506132c182613fa8565b602082019050919050565b60006132d9601483613ab3565b91506132e482613fd1565b602082019050919050565b60006132fc602483613ab3565b915061330782613ffa565b604082019050919050565b600061331f601983613ab3565b915061332a82614049565b602082019050919050565b6000613342600583613ab3565b915061334d82614072565b602082019050919050565b6000613365600983613ab3565b91506133708261409b565b602082019050919050565b6000613388602c83613ab3565b9150613393826140c4565b604082019050919050565b60006133ab603883613ab3565b91506133b682614113565b604082019050919050565b60006133ce602a83613ab3565b91506133d982614162565b604082019050919050565b60006133f1602983613ab3565b91506133fc826141b1565b604082019050919050565b6000613414602083613ab3565b915061341f82614200565b602082019050919050565b6000613437600883613ab3565b915061344282614229565b602082019050919050565b600061345a602c83613ab3565b915061346582614252565b604082019050919050565b600061347d602083613ab3565b9150613488826142a1565b602082019050919050565b60006134a0602983613ab3565b91506134ab826142ca565b604082019050919050565b60006134c3602f83613ab3565b91506134ce82614319565b604082019050919050565b60006134e6602183613ab3565b91506134f182614368565b604082019050919050565b6000613509600a83613ab3565b9150613514826143b7565b602082019050919050565b600061352c603183613ab3565b9150613537826143e0565b604082019050919050565b600061354f602c83613ab3565b915061355a8261442f565b604082019050919050565b61356e81613bf4565b82525050565b61357d81613bf4565b82525050565b600061358f82856131ec565b915061359b82846131ec565b91508190509392505050565b60006020820190506135bc60008301846130ef565b92915050565b60006080820190506135d760008301876130ef565b6135e460208301866130ef565b6135f16040830185613574565b8181036060830152613603818461316b565b905095945050505050565b600060408201905061362360008301856130ef565b6136306020830184613574565b9392505050565b6000602082019050818103600083015261365181846130fe565b905092915050565b600060208201905061366e600083018461315c565b92915050565b600060208201905061368960008301846131a4565b92915050565b600060208201905081810360008301526136a981846131b3565b905092915050565b600060208201905081810360008301526136ca8161321d565b9050919050565b600060208201905081810360008301526136ea81613240565b9050919050565b6000602082019050818103600083015261370a81613263565b9050919050565b6000602082019050818103600083015261372a81613286565b9050919050565b6000602082019050818103600083015261374a816132a9565b9050919050565b6000602082019050818103600083015261376a816132cc565b9050919050565b6000602082019050818103600083015261378a816132ef565b9050919050565b600060208201905081810360008301526137aa81613312565b9050919050565b600060208201905081810360008301526137ca81613335565b9050919050565b600060208201905081810360008301526137ea81613358565b9050919050565b6000602082019050818103600083015261380a8161337b565b9050919050565b6000602082019050818103600083015261382a8161339e565b9050919050565b6000602082019050818103600083015261384a816133c1565b9050919050565b6000602082019050818103600083015261386a816133e4565b9050919050565b6000602082019050818103600083015261388a81613407565b9050919050565b600060208201905081810360008301526138aa8161342a565b9050919050565b600060208201905081810360008301526138ca8161344d565b9050919050565b600060208201905081810360008301526138ea81613470565b9050919050565b6000602082019050818103600083015261390a81613493565b9050919050565b6000602082019050818103600083015261392a816134b6565b9050919050565b6000602082019050818103600083015261394a816134d9565b9050919050565b6000602082019050818103600083015261396a816134fc565b9050919050565b6000602082019050818103600083015261398a8161351f565b9050919050565b600060208201905081810360008301526139aa81613542565b9050919050565b60006020820190506139c66000830184613574565b92915050565b60006139d66139e7565b90506139e28282613ca8565b919050565b6000604051905090565b600067ffffffffffffffff821115613a0c57613a0b613e3e565b5b613a1582613e81565b9050602081019050919050565b600067ffffffffffffffff821115613a3d57613a3c613e3e565b5b613a4682613e81565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ada82613bf4565b9150613ae583613bf4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b1a57613b19613d53565b5b828201905092915050565b6000613b3082613bf4565b9150613b3b83613bf4565b925082613b4b57613b4a613d82565b5b828204905092915050565b6000613b6182613bf4565b9150613b6c83613bf4565b925082821015613b7f57613b7e613d53565b5b828203905092915050565b6000613b9582613bd4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613c0982613c10565b9050919050565b6000613c1b82613c22565b9050919050565b6000613c2d82613bd4565b9050919050565b82818337600083830152505050565b60005b83811015613c61578082015181840152602081019050613c46565b83811115613c70576000848401525b50505050565b60006002820490506001821680613c8e57607f821691505b60208210811415613ca257613ca1613db1565b5b50919050565b613cb182613e81565b810181811067ffffffffffffffff82111715613cd057613ccf613e3e565b5b80604052505050565b6000613ce482613bf4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d1757613d16613d53565b5b600182019050919050565b6000613d2d82613bf4565b9150613d3883613bf4565b925082613d4857613d47613d82565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f2073616d7572616900000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f20617661696c61626c65206b6174616e6173000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320323000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61448781613b8a565b811461449257600080fd5b50565b61449e81613b9c565b81146144a957600080fd5b50565b6144b581613ba8565b81146144c057600080fd5b50565b6144cc81613bf4565b81146144d757600080fd5b5056fea26469706673582212204f56c62cf5477df78c0d2d52ecd7d69118013117a4009eeca4b53101ed2b3a5764736f6c6343000807003368747470733a2f2f6170692e6574686572656d7572612e696f2f6b6174616e612f

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f757806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610659578063e985e9c514610696578063f2fde38b146106d3578063faaa386d146106fc576101c2565b806395d89b411461059f578063a05c8153146105ca578063a22cb46514610607578063b88d4fde14610630576101c2565b8063715018a6116100d1578063715018a61461051657806376fcb4a71461052d578063853828b61461056a5780638da5cb5b14610574576101c2565b80636352211e1461047157806363b2a8ff146104ae57806370a08231146104d9576101c2565b806323b872dd11610164578063438b63001161013e578063438b6300146103a35780634f6ccce7146103e057806355f804b31461041d5780635c975abb14610446576101c2565b806323b872dd146103145780632f745c591461033d57806342842e0e1461037a576101c2565b8063081812fc116101a0578063081812fc14610258578063093d8c6414610295578063095ea7b3146102c057806318160ddd146102e9576101c2565b806301ffc9a7146101c757806302329a291461020457806306fdde031461022d575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612fda565b610725565b6040516101fb9190613659565b60405180910390f35b34801561021057600080fd5b5061022b60048036038101906102269190612fad565b61079f565b005b34801561023957600080fd5b50610242610838565b60405161024f919061368f565b60405180910390f35b34801561026457600080fd5b5061027f600480360381019061027a919061307d565b6108ca565b60405161028c91906135a7565b60405180910390f35b3480156102a157600080fd5b506102aa61094f565b6040516102b791906139b1565b60405180910390f35b3480156102cc57600080fd5b506102e760048036038101906102e29190612f6d565b610955565b005b3480156102f557600080fd5b506102fe610a6d565b60405161030b91906139b1565b60405180910390f35b34801561032057600080fd5b5061033b60048036038101906103369190612e57565b610a7a565b005b34801561034957600080fd5b50610364600480360381019061035f9190612f6d565b610ada565b60405161037191906139b1565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612e57565b610b7f565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612dea565b610b9f565b6040516103d79190613637565b60405180910390f35b3480156103ec57600080fd5b506104076004803603810190610402919061307d565b610c4d565b60405161041491906139b1565b60405180910390f35b34801561042957600080fd5b50610444600480360381019061043f9190613034565b610cbe565b005b34801561045257600080fd5b5061045b610d54565b6040516104689190613659565b60405180910390f35b34801561047d57600080fd5b506104986004803603810190610493919061307d565b610d67565b6040516104a591906135a7565b60405180910390f35b3480156104ba57600080fd5b506104c3610e19565b6040516104d09190613674565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612dea565b610e31565b60405161050d91906139b1565b60405180910390f35b34801561052257600080fd5b5061052b610ee9565b005b34801561053957600080fd5b50610554600480360381019061054f919061307d565b610f71565b6040516105619190613659565b60405180910390f35b610572610f9b565b005b34801561058057600080fd5b50610589611057565b60405161059691906135a7565b60405180910390f35b3480156105ab57600080fd5b506105b4611081565b6040516105c1919061368f565b60405180910390f35b3480156105d657600080fd5b506105f160048036038101906105ec9190612dea565b611113565b6040516105fe91906139b1565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190612f2d565b6112b6565b005b34801561063c57600080fd5b5061065760048036038101906106529190612eaa565b611437565b005b34801561066557600080fd5b50610680600480360381019061067b919061307d565b611499565b60405161068d919061368f565b60405180910390f35b3480156106a257600080fd5b506106bd60048036038101906106b89190612e17565b611540565b6040516106ca9190613659565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190612dea565b6115d4565b005b34801561070857600080fd5b50610723600480360381019061071e9190612f6d565b6116cc565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610798575061079782611b11565b5b9050919050565b6107a7611bf3565b73ffffffffffffffffffffffffffffffffffffffff166107c5611057565b73ffffffffffffffffffffffffffffffffffffffff161461081b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610812906138d1565b60405180910390fd5b80600a60146101000a81548160ff02191690831515021790555050565b60606000805461084790613c76565b80601f016020809104026020016040519081016040528092919081815260200182805461087390613c76565b80156108c05780601f10610895576101008083540402835291602001916108c0565b820191906000526020600020905b8154815290600101906020018083116108a357829003601f168201915b5050505050905090565b60006108d582611bfb565b610914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090b906138b1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6126a081565b600061096082610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c890613931565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f0611bf3565b73ffffffffffffffffffffffffffffffffffffffff161480610a1f5750610a1e81610a19611bf3565b611540565b5b610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590613811565b60405180910390fd5b610a688383611c67565b505050565b6000600880549050905090565b610a8b610a85611bf3565b82611d20565b610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613971565b60405180910390fd5b610ad5838383611dfe565b505050565b6000610ae583610e31565b8210610b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1d906136d1565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610b9a83838360405180602001604052806000815250611437565b505050565b60606000610bac83610e31565b905060008167ffffffffffffffff811115610bca57610bc9613e3e565b5b604051908082528060200260200182016040528015610bf85781602001602082028036833780820191505090505b50905060005b82811015610c4257610c108582610ada565b828281518110610c2357610c22613e0f565b5b6020026020010181815250508080610c3a90613cd9565b915050610bfe565b508092505050919050565b6000610c57610a6d565b8210610c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8f90613991565b60405180910390fd5b60088281548110610cac57610cab613e0f565b5b90600052602060002001549050919050565b610cc6611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610ce4611057565b73ffffffffffffffffffffffffffffffffffffffff1614610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d31906138d1565b60405180910390fd5b80600b9080519060200190610d50929190612be9565b5050565b600a60149054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790613851565b60405180910390fd5b80915050919050565b7342074b47e57a0950f21443ccbab452ab5389095681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990613831565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ef1611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610f0f611057565b73ffffffffffffffffffffffffffffffffffffffff1614610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c906138d1565b60405180910390fd5b610f6f600061205a565b565b6000600c600083815260200190815260200160002060009054906101000a900460ff169050919050565b610fa3611bf3565b73ffffffffffffffffffffffffffffffffffffffff16610fc1611057565b73ffffffffffffffffffffffffffffffffffffffff1614611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e906138d1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061105557600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461109090613c76565b80601f01602080910402602001604051908101604052809291908181526020018280546110bc90613c76565b80156111095780601f106110de57610100808354040283529160200191611109565b820191906000526020600020905b8154815290600101906020018083116110ec57829003601f168201915b5050505050905090565b6000807342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b815260040161116391906135a7565b60206040518083038186803b15801561117b57600080fd5b505afa15801561118f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b391906130aa565b9050600080600090505b828110156112ab57600c60007342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff16632f745c5933856040518363ffffffff1660e01b815260040161121892919061360e565b60206040518083038186803b15801561123057600080fd5b505afa158015611244573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126891906130aa565b815260200190815260200160002060009054906101000a900460ff16611298576001826112959190613acf565b91505b80806112a390613cd9565b9150506111bd565b508092505050919050565b6112be611bf3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132390613791565b60405180910390fd5b8060056000611339611bf3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113e6611bf3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161142b9190613659565b60405180910390a35050565b611448611442611bf3565b83611d20565b611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90613971565b60405180910390fd5b61149384848484612120565b50505050565b60606114a482611bfb565b6114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90613911565b60405180910390fd5b60006114ed61217c565b9050600081511161150d5760405180602001604052806000815250611538565b806115178461220e565b604051602001611528929190613583565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115dc611bf3565b73ffffffffffffffffffffffffffffffffffffffff166115fa611057565b73ffffffffffffffffffffffffffffffffffffffff1614611650576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611647906138d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b790613711565b60405180910390fd5b6116c98161205a565b50565b600a60149054906101000a900460ff161561171c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611713906137b1565b60405180910390fd5b6014811115611760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175790613951565b60405180910390fd5b6126a08161176c610a6d565b6117769190613acf565b11156117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae906137d1565b60405180910390fd5b6126a06117c2610a6d565b10611802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f990613891565b60405180910390fd5b8061180c33611113565b101561184d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184490613751565b60405180910390fd5b60007342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161189c91906135a7565b60206040518083038186803b1580156118b457600080fd5b505afa1580156118c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ec91906130aa565b905060018111611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906136b1565b60405180910390fd5b60005b81811015611b0b57600c60007342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff16632f745c5933856040518363ffffffff1660e01b815260040161198f92919061360e565b60206040518083038186803b1580156119a757600080fd5b505afa1580156119bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119df91906130aa565b815260200190815260200160002060009054906101000a900460ff16158015611a085750600083115b15611af8576001600c60007342074b47e57a0950f21443ccbab452ab5389095673ffffffffffffffffffffffffffffffffffffffff16632f745c5933866040518363ffffffff1660e01b8152600401611a6292919061360e565b60206040518083038186803b158015611a7a57600080fd5b505afa158015611a8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ab291906130aa565b815260200190815260200160002060006101000a81548160ff021916908315150217905550611ae884611ae3610a6d565b61236f565b600183611af59190613b56565b92505b8080611b0390613cd9565b915050611934565b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bdc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611bec5750611beb8261238d565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cda83610d67565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d2b82611bfb565b611d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d61906137f1565b60405180910390fd5b6000611d7583610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611de457508373ffffffffffffffffffffffffffffffffffffffff16611dcc846108ca565b73ffffffffffffffffffffffffffffffffffffffff16145b80611df55750611df48185611540565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e1e82610d67565b73ffffffffffffffffffffffffffffffffffffffff1614611e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6b906138f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613771565b60405180910390fd5b611eef8383836123f7565b611efa600082611c67565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f4a9190613b56565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fa19190613acf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61212b848484611dfe565b6121378484848461250b565b612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d906136f1565b60405180910390fd5b50505050565b6060600b805461218b90613c76565b80601f01602080910402602001604051908101604052809291908181526020018280546121b790613c76565b80156122045780601f106121d957610100808354040283529160200191612204565b820191906000526020600020905b8154815290600101906020018083116121e757829003601f168201915b5050505050905090565b60606000821415612256576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061236a565b600082905060005b6000821461228857808061227190613cd9565b915050600a826122819190613b25565b915061225e565b60008167ffffffffffffffff8111156122a4576122a3613e3e565b5b6040519080825280601f01601f1916602001820160405280156122d65781602001600182028036833780820191505090505b5090505b60008514612363576001826122ef9190613b56565b9150600a856122fe9190613d22565b603061230a9190613acf565b60f81b8183815181106123205761231f613e0f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235c9190613b25565b94506122da565b8093505050505b919050565b6123898282604051806020016040528060008152506126a2565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6124028383836126fd565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124455761244081612702565b612484565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461248357612482838261274b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c7576124c2816128b8565b612506565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612505576125048282612989565b5b5b505050565b600061252c8473ffffffffffffffffffffffffffffffffffffffff16612a08565b15612695578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612555611bf3565b8786866040518563ffffffff1660e01b815260040161257794939291906135c2565b602060405180830381600087803b15801561259157600080fd5b505af19250505080156125c257506040513d601f19601f820116820180604052508101906125bf9190613007565b60015b612645573d80600081146125f2576040519150601f19603f3d011682016040523d82523d6000602084013e6125f7565b606091505b5060008151141561263d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612634906136f1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061269a565b600190505b949350505050565b6126ac8383612a1b565b6126b9600084848461250b565b6126f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ef906136f1565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161275884610e31565b6127629190613b56565b9050600060076000848152602001908152602001600020549050818114612847576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506128cc9190613b56565b90506000600960008481526020019081526020016000205490506000600883815481106128fc576128fb613e0f565b5b90600052602060002001549050806008838154811061291e5761291d613e0f565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061296d5761296c613de0565b5b6001900381819060005260206000200160009055905550505050565b600061299483610e31565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8290613871565b60405180910390fd5b612a9481611bfb565b15612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb90613731565b60405180910390fd5b612ae0600083836123f7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b309190613acf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612bf590613c76565b90600052602060002090601f016020900481019282612c175760008555612c5e565b82601f10612c3057805160ff1916838001178555612c5e565b82800160010185558215612c5e579182015b82811115612c5d578251825591602001919060010190612c42565b5b509050612c6b9190612c6f565b5090565b5b80821115612c88576000816000905550600101612c70565b5090565b6000612c9f612c9a846139f1565b6139cc565b905082815260208101848484011115612cbb57612cba613e72565b5b612cc6848285613c34565b509392505050565b6000612ce1612cdc84613a22565b6139cc565b905082815260208101848484011115612cfd57612cfc613e72565b5b612d08848285613c34565b509392505050565b600081359050612d1f8161447e565b92915050565b600081359050612d3481614495565b92915050565b600081359050612d49816144ac565b92915050565b600081519050612d5e816144ac565b92915050565b600082601f830112612d7957612d78613e6d565b5b8135612d89848260208601612c8c565b91505092915050565b600082601f830112612da757612da6613e6d565b5b8135612db7848260208601612cce565b91505092915050565b600081359050612dcf816144c3565b92915050565b600081519050612de4816144c3565b92915050565b600060208284031215612e0057612dff613e7c565b5b6000612e0e84828501612d10565b91505092915050565b60008060408385031215612e2e57612e2d613e7c565b5b6000612e3c85828601612d10565b9250506020612e4d85828601612d10565b9150509250929050565b600080600060608486031215612e7057612e6f613e7c565b5b6000612e7e86828701612d10565b9350506020612e8f86828701612d10565b9250506040612ea086828701612dc0565b9150509250925092565b60008060008060808587031215612ec457612ec3613e7c565b5b6000612ed287828801612d10565b9450506020612ee387828801612d10565b9350506040612ef487828801612dc0565b925050606085013567ffffffffffffffff811115612f1557612f14613e77565b5b612f2187828801612d64565b91505092959194509250565b60008060408385031215612f4457612f43613e7c565b5b6000612f5285828601612d10565b9250506020612f6385828601612d25565b9150509250929050565b60008060408385031215612f8457612f83613e7c565b5b6000612f9285828601612d10565b9250506020612fa385828601612dc0565b9150509250929050565b600060208284031215612fc357612fc2613e7c565b5b6000612fd184828501612d25565b91505092915050565b600060208284031215612ff057612fef613e7c565b5b6000612ffe84828501612d3a565b91505092915050565b60006020828403121561301d5761301c613e7c565b5b600061302b84828501612d4f565b91505092915050565b60006020828403121561304a57613049613e7c565b5b600082013567ffffffffffffffff81111561306857613067613e77565b5b61307484828501612d92565b91505092915050565b60006020828403121561309357613092613e7c565b5b60006130a184828501612dc0565b91505092915050565b6000602082840312156130c0576130bf613e7c565b5b60006130ce84828501612dd5565b91505092915050565b60006130e38383613565565b60208301905092915050565b6130f881613b8a565b82525050565b600061310982613a63565b6131138185613a91565b935061311e83613a53565b8060005b8381101561314f57815161313688826130d7565b975061314183613a84565b925050600181019050613122565b5085935050505092915050565b61316581613b9c565b82525050565b600061317682613a6e565b6131808185613aa2565b9350613190818560208601613c43565b61319981613e81565b840191505092915050565b6131ad81613bfe565b82525050565b60006131be82613a79565b6131c88185613ab3565b93506131d8818560208601613c43565b6131e181613e81565b840191505092915050565b60006131f782613a79565b6132018185613ac4565b9350613211818560208601613c43565b80840191505092915050565b600061322a600a83613ab3565b915061323582613e92565b602082019050919050565b600061324d602b83613ab3565b915061325882613ebb565b604082019050919050565b6000613270603283613ab3565b915061327b82613f0a565b604082019050919050565b6000613293602683613ab3565b915061329e82613f59565b604082019050919050565b60006132b6601c83613ab3565b91506132c182613fa8565b602082019050919050565b60006132d9601483613ab3565b91506132e482613fd1565b602082019050919050565b60006132fc602483613ab3565b915061330782613ffa565b604082019050919050565b600061331f601983613ab3565b915061332a82614049565b602082019050919050565b6000613342600583613ab3565b915061334d82614072565b602082019050919050565b6000613365600983613ab3565b91506133708261409b565b602082019050919050565b6000613388602c83613ab3565b9150613393826140c4565b604082019050919050565b60006133ab603883613ab3565b91506133b682614113565b604082019050919050565b60006133ce602a83613ab3565b91506133d982614162565b604082019050919050565b60006133f1602983613ab3565b91506133fc826141b1565b604082019050919050565b6000613414602083613ab3565b915061341f82614200565b602082019050919050565b6000613437600883613ab3565b915061344282614229565b602082019050919050565b600061345a602c83613ab3565b915061346582614252565b604082019050919050565b600061347d602083613ab3565b9150613488826142a1565b602082019050919050565b60006134a0602983613ab3565b91506134ab826142ca565b604082019050919050565b60006134c3602f83613ab3565b91506134ce82614319565b604082019050919050565b60006134e6602183613ab3565b91506134f182614368565b604082019050919050565b6000613509600a83613ab3565b9150613514826143b7565b602082019050919050565b600061352c603183613ab3565b9150613537826143e0565b604082019050919050565b600061354f602c83613ab3565b915061355a8261442f565b604082019050919050565b61356e81613bf4565b82525050565b61357d81613bf4565b82525050565b600061358f82856131ec565b915061359b82846131ec565b91508190509392505050565b60006020820190506135bc60008301846130ef565b92915050565b60006080820190506135d760008301876130ef565b6135e460208301866130ef565b6135f16040830185613574565b8181036060830152613603818461316b565b905095945050505050565b600060408201905061362360008301856130ef565b6136306020830184613574565b9392505050565b6000602082019050818103600083015261365181846130fe565b905092915050565b600060208201905061366e600083018461315c565b92915050565b600060208201905061368960008301846131a4565b92915050565b600060208201905081810360008301526136a981846131b3565b905092915050565b600060208201905081810360008301526136ca8161321d565b9050919050565b600060208201905081810360008301526136ea81613240565b9050919050565b6000602082019050818103600083015261370a81613263565b9050919050565b6000602082019050818103600083015261372a81613286565b9050919050565b6000602082019050818103600083015261374a816132a9565b9050919050565b6000602082019050818103600083015261376a816132cc565b9050919050565b6000602082019050818103600083015261378a816132ef565b9050919050565b600060208201905081810360008301526137aa81613312565b9050919050565b600060208201905081810360008301526137ca81613335565b9050919050565b600060208201905081810360008301526137ea81613358565b9050919050565b6000602082019050818103600083015261380a8161337b565b9050919050565b6000602082019050818103600083015261382a8161339e565b9050919050565b6000602082019050818103600083015261384a816133c1565b9050919050565b6000602082019050818103600083015261386a816133e4565b9050919050565b6000602082019050818103600083015261388a81613407565b9050919050565b600060208201905081810360008301526138aa8161342a565b9050919050565b600060208201905081810360008301526138ca8161344d565b9050919050565b600060208201905081810360008301526138ea81613470565b9050919050565b6000602082019050818103600083015261390a81613493565b9050919050565b6000602082019050818103600083015261392a816134b6565b9050919050565b6000602082019050818103600083015261394a816134d9565b9050919050565b6000602082019050818103600083015261396a816134fc565b9050919050565b6000602082019050818103600083015261398a8161351f565b9050919050565b600060208201905081810360008301526139aa81613542565b9050919050565b60006020820190506139c66000830184613574565b92915050565b60006139d66139e7565b90506139e28282613ca8565b919050565b6000604051905090565b600067ffffffffffffffff821115613a0c57613a0b613e3e565b5b613a1582613e81565b9050602081019050919050565b600067ffffffffffffffff821115613a3d57613a3c613e3e565b5b613a4682613e81565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613ada82613bf4565b9150613ae583613bf4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b1a57613b19613d53565b5b828201905092915050565b6000613b3082613bf4565b9150613b3b83613bf4565b925082613b4b57613b4a613d82565b5b828204905092915050565b6000613b6182613bf4565b9150613b6c83613bf4565b925082821015613b7f57613b7e613d53565b5b828203905092915050565b6000613b9582613bd4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613c0982613c10565b9050919050565b6000613c1b82613c22565b9050919050565b6000613c2d82613bd4565b9050919050565b82818337600083830152505050565b60005b83811015613c61578082015181840152602081019050613c46565b83811115613c70576000848401525b50505050565b60006002820490506001821680613c8e57607f821691505b60208210811415613ca257613ca1613db1565b5b50919050565b613cb182613e81565b810181811067ffffffffffffffff82111715613cd057613ccf613e3e565b5b80604052505050565b6000613ce482613bf4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d1757613d16613d53565b5b600182019050919050565b6000613d2d82613bf4565b9150613d3883613bf4565b925082613d4857613d47613d82565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e6f2073616d7572616900000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f20617661696c61626c65206b6174616e6173000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f5061757365000000000000000000000000000000000000000000000000000000600082015250565b7f4d6178206c696d69740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f53616c6520656e64000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565647320323000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61448781613b8a565b811461449257600080fd5b50565b61449e81613b9c565b81146144a957600080fd5b50565b6144b581613ba8565b81146144c057600080fd5b50565b6144cc81613bf4565b81146144d757600080fd5b5056fea26469706673582212204f56c62cf5477df78c0d2d52ecd7d69118013117a4009eeca4b53101ed2b3a5764736f6c63430008070033

Deployed Bytecode Sourcemap

138:2515:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2448:71:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;198:36:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1534:111:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1210:253:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5120:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1598:333:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1717:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1492:100:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;237:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:235:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;370:85:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:11;;;;;;;;;;;;;:::i;:::-;;2327:111:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2525:121;;;:::i;:::-;;966:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2511:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1941:376:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:290:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2679:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;541:815:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;909:222:4;1011:4;1049:35;1034:50;;;:11;:50;;;;:90;;;;1088:36;1112:11;1088:23;:36::i;:::-;1034:90;1027:97;;909:222;;;:::o;2448:71:5:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2509:3:5::1;2500:6;;:12;;;;;;;;;;;;;;;;;;2448:71:::0;:::o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;198:36:5:-;230:4;198:36;:::o;3398:401:3:-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;1534:111:4:-;1595:7;1621:10;:17;;;;1614:24;;1534:111;:::o;4724:330:3:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1430:12;:19;1443:5;1430:19;;;;;;;;;;;;;;;:26;1450:5;1430:26;;;;;;;;;;;;1423:33;;1210:253;;;;:::o;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;1598:333:5:-;1659:16;1687:15;1705:17;1715:6;1705:9;:17::i;:::-;1687:35;;1732:25;1774:10;1760:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732:53;;1799:6;1795:105;1815:10;1811:1;:14;1795:105;;;1859:30;1879:6;1887:1;1859:19;:30::i;:::-;1845:8;1854:1;1845:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;1827:3;;;;;:::i;:::-;;;;1795:105;;;;1916:8;1909:15;;;;1598:333;;;:::o;1717:230:4:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;;1916:24;;1717:230;;;:::o;1492:100:5:-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1578:7:5::1;1562:13;:23;;;;;;;;;;;;:::i;:::-;;1492:100:::0;:::o;237:25::-;;;;;;;;;;;;;:::o;2052:235:3:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;370:85:5:-;412:42;370:85;:::o;1790:205:3:-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;1598:92:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2327:111:5:-;2389:4;2412:8;:18;2421:8;2412:18;;;;;;;;;;;;;;;;;;;;;2405:25;;2327:111;;;:::o;2525:121::-;1189:12:11;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2599:10:5::1;2591:24;;:47;2616:21;2591:47;;;;;;;;;;;;;;;;;;;;;;;2583:56;;;::::0;::::1;;2525:121::o:0;966:85:11:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;1941:376:5:-;2011:7;2030:15;412:42;2048:23;;;2072:6;2048:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2030:49;;2089:14;2117:6;2126:1;2117:10;;2113:175;2133:10;2129:1;:14;2113:175;;;2167:8;:58;412:42;2176:33;;;2210:10;2222:1;2176:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2167:58;;;;;;;;;;;;;;;;;;;;;2163:115;;2262:1;2253:6;:10;;;;:::i;:::-;2244:19;;2163:115;2145:3;;;;;:::i;:::-;;;;2113:175;;;;2304:6;2297:13;;;;1941:376;;;:::o;4144:290:3:-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;5365:320::-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2679:329::-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;4500:162::-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;1839:189:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;541:815:5:-;613:6;;;;;;;;;;;612:7;604:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;657:2;647:6;:12;;639:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;230:4;708:6;692:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;684:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;230:4;758:13;:11;:13::i;:::-;:24;750:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;853:6;813:36;838:10;813:24;:36::i;:::-;:46;;805:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;903:15;412:42;921:23;;;945:10;921:35;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;903:53;;987:1;974:10;:14;966:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;1026:6;1022:319;1042:10;1038:1;:14;1022:319;;;1076:8;:58;412:42;1085:33;;;1119:10;1131:1;1085:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1076:58;;;;;;;;;;;;;;;;;;;;;1075:59;:73;;;;;1147:1;1138:6;:10;1075:73;1072:259;;;1228:4;1167:8;:58;412:42;1176:33;;;1210:10;1222:1;1176:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1167:58;;;;;;;;;;;;:65;;;;;;;;;;;;;;;;;;1250:29;1260:3;1265:13;:11;:13::i;:::-;1250:9;:29::i;:::-;1315:1;1306:6;:10;;;;:::i;:::-;1297:19;;1072:259;1054:3;;;;;:::i;:::-;;;;1022:319;;;;594:762;541:815;;:::o;1431:300:3:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;7157:125:3:-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;11008:171::-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;2034:169:11:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2079:124;2034:169;:::o;6547:307:3:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;1370:112:5:-;1430:13;1462;1455:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1370:112;:::o;275:703:12:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;8114:108:3:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;763:155:2:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2543:572:4:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;2758:1;2742:18;;:4;:18;;;2738:183;;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;2837:10;;:4;:10;;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;2833:88;2738:183;2948:1;2934:16;;:2;:16;;;2930:179;;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;3032:10;;:2;:10;;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;:::-;3028:81;2930:179;2543:572;;;:::o;11732:778:3:-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:606;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12193:1;12176:6;:13;:18;12172:266;;;12218:60;;;;;;;;;;:::i;:::-;;;;;;;;12172:266;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;12069:41;;;12059:51;;;:6;:51;;;;12052:58;;;;;11898:606;12489:4;12482:11;;11732:778;;;;;;;:::o;8443:311::-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;13066:122::-;;;;:::o;3821:161:4:-;3924:10;:17;;;;3897:15;:24;3913:7;3897:24;;;;;;;;;;;:44;;;;3951:10;3967:7;3951:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:161;:::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4861:51;;4922:18;4943:17;:26;4961:7;4943:26;;;;;;;;;;;;4922:47;;5087:14;5073:10;:28;5069:323;;5117:19;5139:12;:18;5152:4;5139:18;;;;;;;;;;;;;;;:34;5158:14;5139:34;;;;;;;;;;;;5117:56;;5221:11;5188:12;:18;5201:4;5188:18;;;;;;;;;;;;;;;:30;5207:10;5188:30;;;;;;;;;;;:44;;;;5337:10;5304:17;:30;5322:11;5304:30;;;;;;;;;;;:43;;;;5103:289;5069:323;5485:17;:26;5503:7;5485:26;;;;;;;;;;;5478:33;;;5528:12;:18;5541:4;5528:18;;;;;;;;;;;;;;;:34;5547:14;5528:34;;;;;;;;;;;5521:41;;;4680:889;;4599:970;;:::o;5857:1061::-;6106:22;6151:1;6131:10;:17;;;;:21;;;;:::i;:::-;6106:46;;6162:18;6183:15;:24;6199:7;6183:24;;;;;;;;;;;;6162:45;;6529:19;6551:10;6562:14;6551:26;;;;;;;;:::i;:::-;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6723:10;6692:15;:28;6708:11;6692:28;;;;;;;;;;;:41;;;;6861:15;:24;6877:7;6861:24;;;;;;;;;;;6854:31;;;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;3493:37;;3567:7;3540:12;:16;3553:2;3540:16;;;;;;;;;;;;;;;:24;3557:6;3540:24;;;;;;;;;;;:34;;;;3613:6;3584:17;:26;3602:7;3584:26;;;;;;;;;;;:35;;;;3483:143;3409:217;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;9076:372:3:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:143::-;2334:5;2365:6;2359:13;2350:22;;2381:33;2408:5;2381:33;:::i;:::-;2277:143;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:474::-;2829:6;2837;2886:2;2874:9;2865:7;2861:23;2857:32;2854:119;;;2892:79;;:::i;:::-;2854:119;3012:1;3037:53;3082:7;3073:6;3062:9;3058:22;3037:53;:::i;:::-;3027:63;;2983:117;3139:2;3165:53;3210:7;3201:6;3190:9;3186:22;3165:53;:::i;:::-;3155:63;;3110:118;2761:474;;;;;:::o;3241:619::-;3318:6;3326;3334;3383:2;3371:9;3362:7;3358:23;3354:32;3351:119;;;3389:79;;:::i;:::-;3351:119;3509:1;3534:53;3579:7;3570:6;3559:9;3555:22;3534:53;:::i;:::-;3524:63;;3480:117;3636:2;3662:53;3707:7;3698:6;3687:9;3683:22;3662:53;:::i;:::-;3652:63;;3607:118;3764:2;3790:53;3835:7;3826:6;3815:9;3811:22;3790:53;:::i;:::-;3780:63;;3735:118;3241:619;;;;;:::o;3866:943::-;3961:6;3969;3977;3985;4034:3;4022:9;4013:7;4009:23;4005:33;4002:120;;;4041:79;;:::i;:::-;4002:120;4161:1;4186:53;4231:7;4222:6;4211:9;4207:22;4186:53;:::i;:::-;4176:63;;4132:117;4288:2;4314:53;4359:7;4350:6;4339:9;4335:22;4314:53;:::i;:::-;4304:63;;4259:118;4416:2;4442:53;4487:7;4478:6;4467:9;4463:22;4442:53;:::i;:::-;4432:63;;4387:118;4572:2;4561:9;4557:18;4544:32;4603:18;4595:6;4592:30;4589:117;;;4625:79;;:::i;:::-;4589:117;4730:62;4784:7;4775:6;4764:9;4760:22;4730:62;:::i;:::-;4720:72;;4515:287;3866:943;;;;;;;:::o;4815:468::-;4880:6;4888;4937:2;4925:9;4916:7;4912:23;4908:32;4905:119;;;4943:79;;:::i;:::-;4905:119;5063:1;5088:53;5133:7;5124:6;5113:9;5109:22;5088:53;:::i;:::-;5078:63;;5034:117;5190:2;5216:50;5258:7;5249:6;5238:9;5234:22;5216:50;:::i;:::-;5206:60;;5161:115;4815:468;;;;;:::o;5289:474::-;5357:6;5365;5414:2;5402:9;5393:7;5389:23;5385:32;5382:119;;;5420:79;;:::i;:::-;5382:119;5540:1;5565:53;5610:7;5601:6;5590:9;5586:22;5565:53;:::i;:::-;5555:63;;5511:117;5667:2;5693:53;5738:7;5729:6;5718:9;5714:22;5693:53;:::i;:::-;5683:63;;5638:118;5289:474;;;;;:::o;5769:323::-;5825:6;5874:2;5862:9;5853:7;5849:23;5845:32;5842:119;;;5880:79;;:::i;:::-;5842:119;6000:1;6025:50;6067:7;6058:6;6047:9;6043:22;6025:50;:::i;:::-;6015:60;;5971:114;5769:323;;;;:::o;6098:327::-;6156:6;6205:2;6193:9;6184:7;6180:23;6176:32;6173:119;;;6211:79;;:::i;:::-;6173:119;6331:1;6356:52;6400:7;6391:6;6380:9;6376:22;6356:52;:::i;:::-;6346:62;;6302:116;6098:327;;;;:::o;6431:349::-;6500:6;6549:2;6537:9;6528:7;6524:23;6520:32;6517:119;;;6555:79;;:::i;:::-;6517:119;6675:1;6700:63;6755:7;6746:6;6735:9;6731:22;6700:63;:::i;:::-;6690:73;;6646:127;6431:349;;;;:::o;6786:509::-;6855:6;6904:2;6892:9;6883:7;6879:23;6875:32;6872:119;;;6910:79;;:::i;:::-;6872:119;7058:1;7047:9;7043:17;7030:31;7088:18;7080:6;7077:30;7074:117;;;7110:79;;:::i;:::-;7074:117;7215:63;7270:7;7261:6;7250:9;7246:22;7215:63;:::i;:::-;7205:73;;7001:287;6786:509;;;;:::o;7301:329::-;7360:6;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7535:1;7560:53;7605:7;7596:6;7585:9;7581:22;7560:53;:::i;:::-;7550:63;;7506:117;7301:329;;;;:::o;7636:351::-;7706:6;7755:2;7743:9;7734:7;7730:23;7726:32;7723:119;;;7761:79;;:::i;:::-;7723:119;7881:1;7906:64;7962:7;7953:6;7942:9;7938:22;7906:64;:::i;:::-;7896:74;;7852:128;7636:351;;;;:::o;7993:179::-;8062:10;8083:46;8125:3;8117:6;8083:46;:::i;:::-;8161:4;8156:3;8152:14;8138:28;;7993:179;;;;:::o;8178:118::-;8265:24;8283:5;8265:24;:::i;:::-;8260:3;8253:37;8178:118;;:::o;8332:732::-;8451:3;8480:54;8528:5;8480:54;:::i;:::-;8550:86;8629:6;8624:3;8550:86;:::i;:::-;8543:93;;8660:56;8710:5;8660:56;:::i;:::-;8739:7;8770:1;8755:284;8780:6;8777:1;8774:13;8755:284;;;8856:6;8850:13;8883:63;8942:3;8927:13;8883:63;:::i;:::-;8876:70;;8969:60;9022:6;8969:60;:::i;:::-;8959:70;;8815:224;8802:1;8799;8795:9;8790:14;;8755:284;;;8759:14;9055:3;9048:10;;8456:608;;;8332:732;;;;:::o;9070:109::-;9151:21;9166:5;9151:21;:::i;:::-;9146:3;9139:34;9070:109;;:::o;9185:360::-;9271:3;9299:38;9331:5;9299:38;:::i;:::-;9353:70;9416:6;9411:3;9353:70;:::i;:::-;9346:77;;9432:52;9477:6;9472:3;9465:4;9458:5;9454:16;9432:52;:::i;:::-;9509:29;9531:6;9509:29;:::i;:::-;9504:3;9500:39;9493:46;;9275:270;9185:360;;;;:::o;9551:157::-;9651:50;9695:5;9651:50;:::i;:::-;9646:3;9639:63;9551:157;;:::o;9714:364::-;9802:3;9830:39;9863:5;9830:39;:::i;:::-;9885:71;9949:6;9944:3;9885:71;:::i;:::-;9878:78;;9965:52;10010:6;10005:3;9998:4;9991:5;9987:16;9965:52;:::i;:::-;10042:29;10064:6;10042:29;:::i;:::-;10037:3;10033:39;10026:46;;9806:272;9714:364;;;;:::o;10084:377::-;10190:3;10218:39;10251:5;10218:39;:::i;:::-;10273:89;10355:6;10350:3;10273:89;:::i;:::-;10266:96;;10371:52;10416:6;10411:3;10404:4;10397:5;10393:16;10371:52;:::i;:::-;10448:6;10443:3;10439:16;10432:23;;10194:267;10084:377;;;;:::o;10467:366::-;10609:3;10630:67;10694:2;10689:3;10630:67;:::i;:::-;10623:74;;10706:93;10795:3;10706:93;:::i;:::-;10824:2;10819:3;10815:12;10808:19;;10467:366;;;:::o;10839:::-;10981:3;11002:67;11066:2;11061:3;11002:67;:::i;:::-;10995:74;;11078:93;11167:3;11078:93;:::i;:::-;11196:2;11191:3;11187:12;11180:19;;10839:366;;;:::o;11211:::-;11353:3;11374:67;11438:2;11433:3;11374:67;:::i;:::-;11367:74;;11450:93;11539:3;11450:93;:::i;:::-;11568:2;11563:3;11559:12;11552:19;;11211:366;;;:::o;11583:::-;11725:3;11746:67;11810:2;11805:3;11746:67;:::i;:::-;11739:74;;11822:93;11911:3;11822:93;:::i;:::-;11940:2;11935:3;11931:12;11924:19;;11583:366;;;:::o;11955:::-;12097:3;12118:67;12182:2;12177:3;12118:67;:::i;:::-;12111:74;;12194:93;12283:3;12194:93;:::i;:::-;12312:2;12307:3;12303:12;12296:19;;11955:366;;;:::o;12327:::-;12469:3;12490:67;12554:2;12549:3;12490:67;:::i;:::-;12483:74;;12566:93;12655:3;12566:93;:::i;:::-;12684:2;12679:3;12675:12;12668:19;;12327:366;;;:::o;12699:::-;12841:3;12862:67;12926:2;12921:3;12862:67;:::i;:::-;12855:74;;12938:93;13027:3;12938:93;:::i;:::-;13056:2;13051:3;13047:12;13040:19;;12699:366;;;:::o;13071:::-;13213:3;13234:67;13298:2;13293:3;13234:67;:::i;:::-;13227:74;;13310:93;13399:3;13310:93;:::i;:::-;13428:2;13423:3;13419:12;13412:19;;13071:366;;;:::o;13443:365::-;13585:3;13606:66;13670:1;13665:3;13606:66;:::i;:::-;13599:73;;13681:93;13770:3;13681:93;:::i;:::-;13799:2;13794:3;13790:12;13783:19;;13443:365;;;:::o;13814:::-;13956:3;13977:66;14041:1;14036:3;13977:66;:::i;:::-;13970:73;;14052:93;14141:3;14052:93;:::i;:::-;14170:2;14165:3;14161:12;14154:19;;13814:365;;;:::o;14185:366::-;14327:3;14348:67;14412:2;14407:3;14348:67;:::i;:::-;14341:74;;14424:93;14513:3;14424:93;:::i;:::-;14542:2;14537:3;14533:12;14526:19;;14185:366;;;:::o;14557:::-;14699:3;14720:67;14784:2;14779:3;14720:67;:::i;:::-;14713:74;;14796:93;14885:3;14796:93;:::i;:::-;14914:2;14909:3;14905:12;14898:19;;14557:366;;;:::o;14929:::-;15071:3;15092:67;15156:2;15151:3;15092:67;:::i;:::-;15085:74;;15168:93;15257:3;15168:93;:::i;:::-;15286:2;15281:3;15277:12;15270:19;;14929:366;;;:::o;15301:::-;15443:3;15464:67;15528:2;15523:3;15464:67;:::i;:::-;15457:74;;15540:93;15629:3;15540:93;:::i;:::-;15658:2;15653:3;15649:12;15642:19;;15301:366;;;:::o;15673:::-;15815:3;15836:67;15900:2;15895:3;15836:67;:::i;:::-;15829:74;;15912:93;16001:3;15912:93;:::i;:::-;16030:2;16025:3;16021:12;16014:19;;15673:366;;;:::o;16045:365::-;16187:3;16208:66;16272:1;16267:3;16208:66;:::i;:::-;16201:73;;16283:93;16372:3;16283:93;:::i;:::-;16401:2;16396:3;16392:12;16385:19;;16045:365;;;:::o;16416:366::-;16558:3;16579:67;16643:2;16638:3;16579:67;:::i;:::-;16572:74;;16655:93;16744:3;16655:93;:::i;:::-;16773:2;16768:3;16764:12;16757:19;;16416:366;;;:::o;16788:::-;16930:3;16951:67;17015:2;17010:3;16951:67;:::i;:::-;16944:74;;17027:93;17116:3;17027:93;:::i;:::-;17145:2;17140:3;17136:12;17129:19;;16788:366;;;:::o;17160:::-;17302:3;17323:67;17387:2;17382:3;17323:67;:::i;:::-;17316:74;;17399:93;17488:3;17399:93;:::i;:::-;17517:2;17512:3;17508:12;17501:19;;17160:366;;;:::o;17532:::-;17674:3;17695:67;17759:2;17754:3;17695:67;:::i;:::-;17688:74;;17771:93;17860:3;17771:93;:::i;:::-;17889:2;17884:3;17880:12;17873:19;;17532:366;;;:::o;17904:::-;18046:3;18067:67;18131:2;18126:3;18067:67;:::i;:::-;18060:74;;18143:93;18232:3;18143:93;:::i;:::-;18261:2;18256:3;18252:12;18245:19;;17904:366;;;:::o;18276:::-;18418:3;18439:67;18503:2;18498:3;18439:67;:::i;:::-;18432:74;;18515:93;18604:3;18515:93;:::i;:::-;18633:2;18628:3;18624:12;18617:19;;18276:366;;;:::o;18648:::-;18790:3;18811:67;18875:2;18870:3;18811:67;:::i;:::-;18804:74;;18887:93;18976:3;18887:93;:::i;:::-;19005:2;19000:3;18996:12;18989:19;;18648:366;;;:::o;19020:::-;19162:3;19183:67;19247:2;19242:3;19183:67;:::i;:::-;19176:74;;19259:93;19348:3;19259:93;:::i;:::-;19377:2;19372:3;19368:12;19361:19;;19020:366;;;:::o;19392:108::-;19469:24;19487:5;19469:24;:::i;:::-;19464:3;19457:37;19392:108;;:::o;19506:118::-;19593:24;19611:5;19593:24;:::i;:::-;19588:3;19581:37;19506:118;;:::o;19630:435::-;19810:3;19832:95;19923:3;19914:6;19832:95;:::i;:::-;19825:102;;19944:95;20035:3;20026:6;19944:95;:::i;:::-;19937:102;;20056:3;20049:10;;19630:435;;;;;:::o;20071:222::-;20164:4;20202:2;20191:9;20187:18;20179:26;;20215:71;20283:1;20272:9;20268:17;20259:6;20215:71;:::i;:::-;20071:222;;;;:::o;20299:640::-;20494:4;20532:3;20521:9;20517:19;20509:27;;20546:71;20614:1;20603:9;20599:17;20590:6;20546:71;:::i;:::-;20627:72;20695:2;20684:9;20680:18;20671:6;20627:72;:::i;:::-;20709;20777:2;20766:9;20762:18;20753:6;20709:72;:::i;:::-;20828:9;20822:4;20818:20;20813:2;20802:9;20798:18;20791:48;20856:76;20927:4;20918:6;20856:76;:::i;:::-;20848:84;;20299:640;;;;;;;:::o;20945:332::-;21066:4;21104:2;21093:9;21089:18;21081:26;;21117:71;21185:1;21174:9;21170:17;21161:6;21117:71;:::i;:::-;21198:72;21266:2;21255:9;21251:18;21242:6;21198:72;:::i;:::-;20945:332;;;;;:::o;21283:373::-;21426:4;21464:2;21453:9;21449:18;21441:26;;21513:9;21507:4;21503:20;21499:1;21488:9;21484:17;21477:47;21541:108;21644:4;21635:6;21541:108;:::i;:::-;21533:116;;21283:373;;;;:::o;21662:210::-;21749:4;21787:2;21776:9;21772:18;21764:26;;21800:65;21862:1;21851:9;21847:17;21838:6;21800:65;:::i;:::-;21662:210;;;;:::o;21878:248::-;21984:4;22022:2;22011:9;22007:18;21999:26;;22035:84;22116:1;22105:9;22101:17;22092:6;22035:84;:::i;:::-;21878:248;;;;:::o;22132:313::-;22245:4;22283:2;22272:9;22268:18;22260:26;;22332:9;22326:4;22322:20;22318:1;22307:9;22303:17;22296:47;22360:78;22433:4;22424:6;22360:78;:::i;:::-;22352:86;;22132:313;;;;:::o;22451:419::-;22617:4;22655:2;22644:9;22640:18;22632:26;;22704:9;22698:4;22694:20;22690:1;22679:9;22675:17;22668:47;22732:131;22858:4;22732:131;:::i;:::-;22724:139;;22451:419;;;:::o;22876:::-;23042:4;23080:2;23069:9;23065:18;23057:26;;23129:9;23123:4;23119:20;23115:1;23104:9;23100:17;23093:47;23157:131;23283:4;23157:131;:::i;:::-;23149:139;;22876:419;;;:::o;23301:::-;23467:4;23505:2;23494:9;23490:18;23482:26;;23554:9;23548:4;23544:20;23540:1;23529:9;23525:17;23518:47;23582:131;23708:4;23582:131;:::i;:::-;23574:139;;23301:419;;;:::o;23726:::-;23892:4;23930:2;23919:9;23915:18;23907:26;;23979:9;23973:4;23969:20;23965:1;23954:9;23950:17;23943:47;24007:131;24133:4;24007:131;:::i;:::-;23999:139;;23726:419;;;:::o;24151:::-;24317:4;24355:2;24344:9;24340:18;24332:26;;24404:9;24398:4;24394:20;24390:1;24379:9;24375:17;24368:47;24432:131;24558:4;24432:131;:::i;:::-;24424:139;;24151:419;;;:::o;24576:::-;24742:4;24780:2;24769:9;24765:18;24757:26;;24829:9;24823:4;24819:20;24815:1;24804:9;24800:17;24793:47;24857:131;24983:4;24857:131;:::i;:::-;24849:139;;24576:419;;;:::o;25001:::-;25167:4;25205:2;25194:9;25190:18;25182:26;;25254:9;25248:4;25244:20;25240:1;25229:9;25225:17;25218:47;25282:131;25408:4;25282:131;:::i;:::-;25274:139;;25001:419;;;:::o;25426:::-;25592:4;25630:2;25619:9;25615:18;25607:26;;25679:9;25673:4;25669:20;25665:1;25654:9;25650:17;25643:47;25707:131;25833:4;25707:131;:::i;:::-;25699:139;;25426:419;;;:::o;25851:::-;26017:4;26055:2;26044:9;26040:18;26032:26;;26104:9;26098:4;26094:20;26090:1;26079:9;26075:17;26068:47;26132:131;26258:4;26132:131;:::i;:::-;26124:139;;25851:419;;;:::o;26276:::-;26442:4;26480:2;26469:9;26465:18;26457:26;;26529:9;26523:4;26519:20;26515:1;26504:9;26500:17;26493:47;26557:131;26683:4;26557:131;:::i;:::-;26549:139;;26276:419;;;:::o;26701:::-;26867:4;26905:2;26894:9;26890:18;26882:26;;26954:9;26948:4;26944:20;26940:1;26929:9;26925:17;26918:47;26982:131;27108:4;26982:131;:::i;:::-;26974:139;;26701:419;;;:::o;27126:::-;27292:4;27330:2;27319:9;27315:18;27307:26;;27379:9;27373:4;27369:20;27365:1;27354:9;27350:17;27343:47;27407:131;27533:4;27407:131;:::i;:::-;27399:139;;27126:419;;;:::o;27551:::-;27717:4;27755:2;27744:9;27740:18;27732:26;;27804:9;27798:4;27794:20;27790:1;27779:9;27775:17;27768:47;27832:131;27958:4;27832:131;:::i;:::-;27824:139;;27551:419;;;:::o;27976:::-;28142:4;28180:2;28169:9;28165:18;28157:26;;28229:9;28223:4;28219:20;28215:1;28204:9;28200:17;28193:47;28257:131;28383:4;28257:131;:::i;:::-;28249:139;;27976:419;;;:::o;28401:::-;28567:4;28605:2;28594:9;28590:18;28582:26;;28654:9;28648:4;28644:20;28640:1;28629:9;28625:17;28618:47;28682:131;28808:4;28682:131;:::i;:::-;28674:139;;28401:419;;;:::o;28826:::-;28992:4;29030:2;29019:9;29015:18;29007:26;;29079:9;29073:4;29069:20;29065:1;29054:9;29050:17;29043:47;29107:131;29233:4;29107:131;:::i;:::-;29099:139;;28826:419;;;:::o;29251:::-;29417:4;29455:2;29444:9;29440:18;29432:26;;29504:9;29498:4;29494:20;29490:1;29479:9;29475:17;29468:47;29532:131;29658:4;29532:131;:::i;:::-;29524:139;;29251:419;;;:::o;29676:::-;29842:4;29880:2;29869:9;29865:18;29857:26;;29929:9;29923:4;29919:20;29915:1;29904:9;29900:17;29893:47;29957:131;30083:4;29957:131;:::i;:::-;29949:139;;29676:419;;;:::o;30101:::-;30267:4;30305:2;30294:9;30290:18;30282:26;;30354:9;30348:4;30344:20;30340:1;30329:9;30325:17;30318:47;30382:131;30508:4;30382:131;:::i;:::-;30374:139;;30101:419;;;:::o;30526:::-;30692:4;30730:2;30719:9;30715:18;30707:26;;30779:9;30773:4;30769:20;30765:1;30754:9;30750:17;30743:47;30807:131;30933:4;30807:131;:::i;:::-;30799:139;;30526:419;;;:::o;30951:::-;31117:4;31155:2;31144:9;31140:18;31132:26;;31204:9;31198:4;31194:20;31190:1;31179:9;31175:17;31168:47;31232:131;31358:4;31232:131;:::i;:::-;31224:139;;30951:419;;;:::o;31376:::-;31542:4;31580:2;31569:9;31565:18;31557:26;;31629:9;31623:4;31619:20;31615:1;31604:9;31600:17;31593:47;31657:131;31783:4;31657:131;:::i;:::-;31649:139;;31376:419;;;:::o;31801:::-;31967:4;32005:2;31994:9;31990:18;31982:26;;32054:9;32048:4;32044:20;32040:1;32029:9;32025:17;32018:47;32082:131;32208:4;32082:131;:::i;:::-;32074:139;;31801:419;;;:::o;32226:::-;32392:4;32430:2;32419:9;32415:18;32407:26;;32479:9;32473:4;32469:20;32465:1;32454:9;32450:17;32443:47;32507:131;32633:4;32507:131;:::i;:::-;32499:139;;32226:419;;;:::o;32651:222::-;32744:4;32782:2;32771:9;32767:18;32759:26;;32795:71;32863:1;32852:9;32848:17;32839:6;32795:71;:::i;:::-;32651:222;;;;:::o;32879:129::-;32913:6;32940:20;;:::i;:::-;32930:30;;32969:33;32997:4;32989:6;32969:33;:::i;:::-;32879:129;;;:::o;33014:75::-;33047:6;33080:2;33074:9;33064:19;;33014:75;:::o;33095:307::-;33156:4;33246:18;33238:6;33235:30;33232:56;;;33268:18;;:::i;:::-;33232:56;33306:29;33328:6;33306:29;:::i;:::-;33298:37;;33390:4;33384;33380:15;33372:23;;33095:307;;;:::o;33408:308::-;33470:4;33560:18;33552:6;33549:30;33546:56;;;33582:18;;:::i;:::-;33546:56;33620:29;33642:6;33620:29;:::i;:::-;33612:37;;33704:4;33698;33694:15;33686:23;;33408:308;;;:::o;33722:132::-;33789:4;33812:3;33804:11;;33842:4;33837:3;33833:14;33825:22;;33722:132;;;:::o;33860:114::-;33927:6;33961:5;33955:12;33945:22;;33860:114;;;:::o;33980:98::-;34031:6;34065:5;34059:12;34049:22;;33980:98;;;:::o;34084:99::-;34136:6;34170:5;34164:12;34154:22;;34084:99;;;:::o;34189:113::-;34259:4;34291;34286:3;34282:14;34274:22;;34189:113;;;:::o;34308:184::-;34407:11;34441:6;34436:3;34429:19;34481:4;34476:3;34472:14;34457:29;;34308:184;;;;:::o;34498:168::-;34581:11;34615:6;34610:3;34603:19;34655:4;34650:3;34646:14;34631:29;;34498:168;;;;:::o;34672:169::-;34756:11;34790:6;34785:3;34778:19;34830:4;34825:3;34821:14;34806:29;;34672:169;;;;:::o;34847:148::-;34949:11;34986:3;34971:18;;34847:148;;;;:::o;35001:305::-;35041:3;35060:20;35078:1;35060:20;:::i;:::-;35055:25;;35094:20;35112:1;35094:20;:::i;:::-;35089:25;;35248:1;35180:66;35176:74;35173:1;35170:81;35167:107;;;35254:18;;:::i;:::-;35167:107;35298:1;35295;35291:9;35284:16;;35001:305;;;;:::o;35312:185::-;35352:1;35369:20;35387:1;35369:20;:::i;:::-;35364:25;;35403:20;35421:1;35403:20;:::i;:::-;35398:25;;35442:1;35432:35;;35447:18;;:::i;:::-;35432:35;35489:1;35486;35482:9;35477:14;;35312:185;;;;:::o;35503:191::-;35543:4;35563:20;35581:1;35563:20;:::i;:::-;35558:25;;35597:20;35615:1;35597:20;:::i;:::-;35592:25;;35636:1;35633;35630:8;35627:34;;;35641:18;;:::i;:::-;35627:34;35686:1;35683;35679:9;35671:17;;35503:191;;;;:::o;35700:96::-;35737:7;35766:24;35784:5;35766:24;:::i;:::-;35755:35;;35700:96;;;:::o;35802:90::-;35836:7;35879:5;35872:13;35865:21;35854:32;;35802:90;;;:::o;35898:149::-;35934:7;35974:66;35967:5;35963:78;35952:89;;35898:149;;;:::o;36053:126::-;36090:7;36130:42;36123:5;36119:54;36108:65;;36053:126;;;:::o;36185:77::-;36222:7;36251:5;36240:16;;36185:77;;;:::o;36268:139::-;36331:9;36364:37;36395:5;36364:37;:::i;:::-;36351:50;;36268:139;;;:::o;36413:126::-;36463:9;36496:37;36527:5;36496:37;:::i;:::-;36483:50;;36413:126;;;:::o;36545:113::-;36595:9;36628:24;36646:5;36628:24;:::i;:::-;36615:37;;36545:113;;;:::o;36664:154::-;36748:6;36743:3;36738;36725:30;36810:1;36801:6;36796:3;36792:16;36785:27;36664:154;;;:::o;36824:307::-;36892:1;36902:113;36916:6;36913:1;36910:13;36902:113;;;37001:1;36996:3;36992:11;36986:18;36982:1;36977:3;36973:11;36966:39;36938:2;36935:1;36931:10;36926:15;;36902:113;;;37033:6;37030:1;37027:13;37024:101;;;37113:1;37104:6;37099:3;37095:16;37088:27;37024:101;36873:258;36824:307;;;:::o;37137:320::-;37181:6;37218:1;37212:4;37208:12;37198:22;;37265:1;37259:4;37255:12;37286:18;37276:81;;37342:4;37334:6;37330:17;37320:27;;37276:81;37404:2;37396:6;37393:14;37373:18;37370:38;37367:84;;;37423:18;;:::i;:::-;37367:84;37188:269;37137:320;;;:::o;37463:281::-;37546:27;37568:4;37546:27;:::i;:::-;37538:6;37534:40;37676:6;37664:10;37661:22;37640:18;37628:10;37625:34;37622:62;37619:88;;;37687:18;;:::i;:::-;37619:88;37727:10;37723:2;37716:22;37506:238;37463:281;;:::o;37750:233::-;37789:3;37812:24;37830:5;37812:24;:::i;:::-;37803:33;;37858:66;37851:5;37848:77;37845:103;;;37928:18;;:::i;:::-;37845:103;37975:1;37968:5;37964:13;37957:20;;37750:233;;;:::o;37989:176::-;38021:1;38038:20;38056:1;38038:20;:::i;:::-;38033:25;;38072:20;38090:1;38072:20;:::i;:::-;38067:25;;38111:1;38101:35;;38116:18;;:::i;:::-;38101:35;38157:1;38154;38150:9;38145:14;;37989:176;;;;:::o;38171:180::-;38219:77;38216:1;38209:88;38316:4;38313:1;38306:15;38340:4;38337:1;38330:15;38357:180;38405:77;38402:1;38395:88;38502:4;38499:1;38492:15;38526:4;38523:1;38516:15;38543:180;38591:77;38588:1;38581:88;38688:4;38685:1;38678:15;38712:4;38709:1;38702:15;38729:180;38777:77;38774:1;38767:88;38874:4;38871:1;38864:15;38898:4;38895:1;38888:15;38915:180;38963:77;38960:1;38953:88;39060:4;39057:1;39050:15;39084:4;39081:1;39074:15;39101:180;39149:77;39146:1;39139:88;39246:4;39243:1;39236:15;39270:4;39267:1;39260:15;39287:117;39396:1;39393;39386:12;39410:117;39519:1;39516;39509:12;39533:117;39642:1;39639;39632:12;39656:117;39765:1;39762;39755:12;39779:102;39820:6;39871:2;39867:7;39862:2;39855:5;39851:14;39847:28;39837:38;;39779:102;;;:::o;39887:160::-;40027:12;40023:1;40015:6;40011:14;40004:36;39887:160;:::o;40053:230::-;40193:34;40189:1;40181:6;40177:14;40170:58;40262:13;40257:2;40249:6;40245:15;40238:38;40053:230;:::o;40289:237::-;40429:34;40425:1;40417:6;40413:14;40406:58;40498:20;40493:2;40485:6;40481:15;40474:45;40289:237;:::o;40532:225::-;40672:34;40668:1;40660:6;40656:14;40649:58;40741:8;40736:2;40728:6;40724:15;40717:33;40532:225;:::o;40763:178::-;40903:30;40899:1;40891:6;40887:14;40880:54;40763:178;:::o;40947:170::-;41087:22;41083:1;41075:6;41071:14;41064:46;40947:170;:::o;41123:223::-;41263:34;41259:1;41251:6;41247:14;41240:58;41332:6;41327:2;41319:6;41315:15;41308:31;41123:223;:::o;41352:175::-;41492:27;41488:1;41480:6;41476:14;41469:51;41352:175;:::o;41533:155::-;41673:7;41669:1;41661:6;41657:14;41650:31;41533:155;:::o;41694:159::-;41834:11;41830:1;41822:6;41818:14;41811:35;41694:159;:::o;41859:231::-;41999:34;41995:1;41987:6;41983:14;41976:58;42068:14;42063:2;42055:6;42051:15;42044:39;41859:231;:::o;42096:243::-;42236:34;42232:1;42224:6;42220:14;42213:58;42305:26;42300:2;42292:6;42288:15;42281:51;42096:243;:::o;42345:229::-;42485:34;42481:1;42473:6;42469:14;42462:58;42554:12;42549:2;42541:6;42537:15;42530:37;42345:229;:::o;42580:228::-;42720:34;42716:1;42708:6;42704:14;42697:58;42789:11;42784:2;42776:6;42772:15;42765:36;42580:228;:::o;42814:182::-;42954:34;42950:1;42942:6;42938:14;42931:58;42814:182;:::o;43002:158::-;43142:10;43138:1;43130:6;43126:14;43119:34;43002:158;:::o;43166:231::-;43306:34;43302:1;43294:6;43290:14;43283:58;43375:14;43370:2;43362:6;43358:15;43351:39;43166:231;:::o;43403:182::-;43543:34;43539:1;43531:6;43527:14;43520:58;43403:182;:::o;43591:228::-;43731:34;43727:1;43719:6;43715:14;43708:58;43800:11;43795:2;43787:6;43783:15;43776:36;43591:228;:::o;43825:234::-;43965:34;43961:1;43953:6;43949:14;43942:58;44034:17;44029:2;44021:6;44017:15;44010:42;43825:234;:::o;44065:220::-;44205:34;44201:1;44193:6;44189:14;44182:58;44274:3;44269:2;44261:6;44257:15;44250:28;44065:220;:::o;44291:160::-;44431:12;44427:1;44419:6;44415:14;44408:36;44291:160;:::o;44457:236::-;44597:34;44593:1;44585:6;44581:14;44574:58;44666:19;44661:2;44653:6;44649:15;44642:44;44457:236;:::o;44699:231::-;44839:34;44835:1;44827:6;44823:14;44816:58;44908:14;44903:2;44895:6;44891:15;44884:39;44699:231;:::o;44936:122::-;45009:24;45027:5;45009:24;:::i;:::-;45002:5;44999:35;44989:63;;45048:1;45045;45038:12;44989:63;44936:122;:::o;45064:116::-;45134:21;45149:5;45134:21;:::i;:::-;45127:5;45124:32;45114:60;;45170:1;45167;45160:12;45114:60;45064:116;:::o;45186:120::-;45258:23;45275:5;45258:23;:::i;:::-;45251:5;45248:34;45238:62;;45296:1;45293;45286:12;45238:62;45186:120;:::o;45312:122::-;45385:24;45403:5;45385:24;:::i;:::-;45378:5;45375:35;45365:63;;45424:1;45421;45414:12;45365:63;45312:122;:::o

Swarm Source

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