ETH Price: $2,524.60 (-0.54%)

Token

LS_Book_Token (LSB)
 

Overview

Max Total Supply

78 LSB

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LSB
0x2996b35C9fC9c0FcA14548C8BC2332365E480408
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:
LS_Book_Token

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 12 of 14: minter.sol
// SPDX-License-Identifier: MIT
// @author: Exotic Technology LTD




pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ownable.sol";
import "./ERC721enumerable.sol";



 
 
 
contract LS_Book_Token is Ownable, ERC721, ERC721Enumerable {
    
    
    
    bool public saleIsActive = false;

    uint256 private  MAX_TOKEN; 
    
    uint256  public royalty = 100;

    uint256 public SALE_START = 0;

    address public LVScontract;

    string private _baseURIextended;

    string public PROVENANCE;
 

    mapping(address => uint) public minters;
    
    mapping(address => bool) private senders;
    
    mapping(uint => bool) private claimedLvs;
    mapping(uint => bool) private claimedXoxo;

    
    constructor(uint _max) ERC721("LS_Book_Token", "LSB") {
       
        require(_max > 0,"max 0");
        _baseURIextended = "https://xoxonft.io/meta/ls_book_token/"; //cover

        senders[msg.sender] = true; // add owner


        MAX_TOKEN = _max;
    }

 

   function addSender(address _address) public onlyOwner  {
        
        require(_address != address(0));
        senders[_address] = true;
       
    }
    
    function removeSender(address _address) public onlyOwner {
        require(_address != address(0));
        senders[_address] = false;
        
    }


     function updateLvsAddress(address _contract)public {
        require(senders[_msgSender()]);
        LVScontract = _contract;
    }

 



   function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view override  returns (
        address receiver,
        uint256 royaltyAmount
    ){
        require(_exists(_tokenId));
        return (owner(), uint256(royalty * _salePrice / 1000));

    }


    function flipSaleState() public  {
        require(senders[_msgSender()]);
        saleIsActive = !saleIsActive;
    }

    

    function updateRoyalty(uint newRoyalty) public onlyOwner {
        royalty = newRoyalty ;
    }


    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
            super._beforeTokenTransfer(from, to, tokenId);
        }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
            return super.supportsInterface(interfaceId);
        }

    function setBaseURI(string memory baseURI_)  external {
             require(senders[_msgSender()]);
            _baseURIextended = baseURI_;
        }

    function _baseURI() internal view virtual override returns (string memory) {
            return _baseURIextended;
        }

    function setProvenance(string memory provenance) public onlyOwner {
            PROVENANCE = provenance;
        }



    function getSaleState() public view returns (bool) {
            return saleIsActive;
    }


   function updateMax(uint _max) public  {
            require(senders[_msgSender()]);
            
            uint256 ts = totalSupply();
            
            require(_max >= ts,"too low");

            MAX_TOKEN = _max;

        }
 
    


    function claimed(uint _tokenId)public view returns(bool){
        
        return claimedLvs[_tokenId]; 

    }

    
    function Claim () public {
        
        require(saleIsActive, "closed!");

        uint claimerBalance =  IERC721(LVScontract).balanceOf(_msgSender()); // check LVS balance for owner
        
        require(claimerBalance > 0,"NO LVS");

        uint256 ts = totalSupply();

        require(ts + claimerBalance <= MAX_TOKEN, "maxTotal");

        for (uint i = 0; i < claimerBalance; i++){ // add token to claimed list
               
            uint claimedLvsToken = IERC721Enumerable(LVScontract).tokenOfOwnerByIndex(_msgSender(),i);

            require(!claimedLvs[claimedLvsToken],"Claimed");
            claimedLvs[claimedLvsToken] = true;
            require(!_exists(claimedLvsToken), "already_minted");
             _safeMint(_msgSender(), claimedLvsToken);
            
        }

        
     

    }

    function mintSingle(uint _tokenId, address _target)public{
        require(senders[_msgSender()]);

        uint256 ts = totalSupply();
        require(ts + 1 <= MAX_TOKEN);
        require(!_exists(_tokenId), "already_minted");

        _safeMint(_target, _tokenId);
            
        

           
    }

    function burn(uint256 tokenId) external  {
        require(senders[_msgSender()]);
        require(ERC721.ownerOf(tokenId) == _msgSender(), "ERC721: transfer from incorrect owner");
        
        _burn(tokenId);
    }

    

    function withdraw(address _beneficiary) public onlyOwner {
        uint balance = address(this).balance;
        payable(_beneficiary).transfer(balance);
    }


    function transferOwnership(address newOwner) public override onlyOwner {
        require(newOwner != address(0), "address");
       
        _transferOwnership(newOwner);

    }
    
}   

/*                                                                   
                               %%%%%*       /%%%%*                              
                         %%%                         %%                         
                     .%%                                 %%                     
                   %%                                       %                   
                 %%                                           %                 
               %%                                               %               
             .%     @@@@@@@@@@@@@@@@@@@@@               @@@@                    
            %%      @@@                @@@             @@@         ,            
            %       @@@                  @@@         @@@                        
           %%       &&&                   &@@@     @@@              %           
           %        &&&                     @@@@ @@@                            
          ,%        &&&&&&&&&&&&&&&&&&&%%(.   @@@@@                             
           %        %%%                      @@@@@@@                            
           %        %%%                    @@@@   @@@@                          
           %%       %%%                  @@@@       @@@             %           
            %%      %%%                 @@@           @@@          %            
             %%     %%%               @@@               @@@       %             
              %%    %%%%%%%%%%%%%%%%@@@                  @@@@    %              
                %%                                             %                
                  %%                                         %                  
                    %%                                     %                    
                       %%%                             %%                       
                            %%%                   %%#                           
                                    #%%%%%%%                 

*/

File 1 of 14: address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 14: context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 14: 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 14: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./ERC165.sol";
import "./IERC721.sol";
import "./IERC721receiver.sol";
import "./IERC721metadata.sol";
import "./IERC2981.sol";
import "./address.sol";
import "./context.sol";
import "./strings.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, IERC2981 {
    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 ||
            interfaceId == type(IERC2981).interfaceId ||
            interfaceId == type(IERC165).interfaceId;
    }

    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view virtual override returns (
        address receiver,
        uint256 royaltyAmount
    ){

    }

    /**
     * @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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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 {}
        
    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 5 of 14: 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 6 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 7 of 14: IERC2981.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

///
/// @dev Interface for the NFT Royalty Standard
///
interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );
}

File 8 of 14: 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 14: 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 14: IERC721metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


interface IERC721Metadata {


  /**
   * @dev Returns a descriptive name for a collection of NFTs in this contract.
   * @return _name Representing name.
   */
  function name()
    external
    view
    returns (string memory _name);

  /**
   * @dev Returns a abbreviated name for a collection of NFTs in this contract.
   * @return _symbol Representing symbol.
   */
  function symbol()
    external
    view
    returns (string memory _symbol);

  /**
   * @dev Returns a distinct Uniform Resource Identifier (URI) for a given asset. It Throws if
   * `_tokenId` is not a valid NFT. URIs are defined in RFC3986. The URI may point to a JSON file
   * that conforms to the "ERC721 Metadata JSON Schema".
   * @return URI of _tokenId.
   */
  function tokenURI(uint256 _tokenId)
    external
    view
    returns (string memory);

}

File 11 of 14: IERC721receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 13 of 14: 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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 14 of 14: strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"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":"Claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"LVScontract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"internalType":"address","name":"_target","type":"address"}],"name":"mintSingle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeSender","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","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":"_contract","type":"address"}],"name":"updateLvsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"updateMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRoyalty","type":"uint256"}],"name":"updateRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b60006101000a81548160ff0219169083151502179055506064600d556000600e553480156200003657600080fd5b5060405162004f7e38038062004f7e83398181016040528101906200005c91906200038d565b6040518060400160405280600d81526020017f4c535f426f6f6b5f546f6b656e000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c53420000000000000000000000000000000000000000000000000000000000815250620000e8620000dc620001fa60201b60201c565b6200020260201b60201c565b816001908051906020019062000100929190620002c6565b50806002908051906020019062000119929190620002c6565b5050506000811162000162576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015990620003e6565b60405180910390fd5b60405180606001604052806026815260200162004f58602691396010908051906020019062000193929190620002c6565b506001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600c8190555050620004d0565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d49062000423565b90600052602060002090601f016020900481019282620002f8576000855562000344565b82601f106200031357805160ff191683800117855562000344565b8280016001018555821562000344579182015b828111156200034357825182559160200191906001019062000326565b5b50905062000353919062000357565b5090565b5b808211156200037257600081600090555060010162000358565b5090565b6000815190506200038781620004b6565b92915050565b600060208284031215620003a657620003a562000488565b5b6000620003b68482850162000376565b91505092915050565b6000620003ce60058362000408565b9150620003db826200048d565b602082019050919050565b600060208201905081810360008301526200040181620003bf565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200043c57607f821691505b6020821081141562000453576200045262000459565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f6d61782030000000000000000000000000000000000000000000000000000000600082015250565b620004c18162000419565b8114620004cd57600080fd5b50565b614a7880620004e06000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80636352211e1161013b578063b697f531116100b8578063eb8d24441161007c578063eb8d2444146106c6578063eee62166146106e4578063f2fde38b14610700578063f46eccc41461071c578063ffe630b51461074c57610248565b8063b697f531146105fe578063b88d4fde1461061a578063c87b56dd14610636578063dbe7e3bd14610666578063e985e9c51461069657610248565b80638e605ee5116100ff5780638e605ee51461056e5780638fffd8b51461058c57806395d89b41146105a8578063a22cb465146105c6578063b2f87643146105e257610248565b80636352211e146104c85780636373a6b1146104f857806370a0823114610516578063715018a6146105465780638da5cb5b1461055057610248565b80632a55205a116101c957806342966c681161018d57806342966c6814610428578063444a1cec146104445780634f6ccce71461046057806351cff8d91461049057806355f804b3146104ac57610248565b80632a55205a146103975780632f745c59146103c85780633158952e146103f857806334918dfd1461040257806342842e0e1461040c57610248565b806319708af51161021057806319708af514610305578063226730301461032157806323b872dd1461033f57806325bdb2a81461035b57806329ee566c1461037957610248565b806301ffc9a71461024d57806306fdde031461027d578063081812fc1461029b578063095ea7b3146102cb57806318160ddd146102e7575b600080fd5b610267600480360381019061026291906135ce565b610768565b6040516102749190613c17565b60405180910390f35b61028561077a565b6040516102929190613c32565b60405180910390f35b6102b560048036038101906102b09190613671565b61080c565b6040516102c29190613b87565b60405180910390f35b6102e560048036038101906102e0919061358e565b610891565b005b6102ef6109a9565b6040516102fc9190613f54565b60405180910390f35b61031f600480360381019061031a91906136cb565b6109b6565b005b610329610a92565b6040516103369190613f54565b60405180910390f35b61035960048036038101906103549190613478565b610a98565b005b610363610af8565b6040516103709190613c17565b60405180910390f35b610381610b0f565b60405161038e9190613f54565b60405180910390f35b6103b160048036038101906103ac919061370b565b610b15565b6040516103bf929190613bee565b60405180910390f35b6103e260048036038101906103dd919061358e565b610b58565b6040516103ef9190613f54565b60405180910390f35b610400610bfd565b005b61040a610f64565b005b61042660048036038101906104219190613478565b610fed565b005b610442600480360381019061043d9190613671565b61100d565b005b61045e60048036038101906104599190613671565b6110f3565b005b61047a60048036038101906104759190613671565b6111aa565b6040516104879190613f54565b60405180910390f35b6104aa60048036038101906104a5919061340b565b61121b565b005b6104c660048036038101906104c19190613628565b6112e7565b005b6104e260048036038101906104dd9190613671565b61135e565b6040516104ef9190613b87565b60405180910390f35b610500611410565b60405161050d9190613c32565b60405180910390f35b610530600480360381019061052b919061340b565b61149e565b60405161053d9190613f54565b60405180910390f35b61054e611556565b005b6105586115de565b6040516105659190613b87565b60405180910390f35b610576611607565b6040516105839190613b87565b60405180910390f35b6105a660048036038101906105a19190613671565b61162d565b005b6105b06116b3565b6040516105bd9190613c32565b60405180910390f35b6105e060048036038101906105db919061354e565b611745565b005b6105fc60048036038101906105f7919061340b565b61175b565b005b6106186004803603810190610613919061340b565b61186c565b005b610634600480360381019061062f91906134cb565b61197d565b005b610650600480360381019061064b9190613671565b6119df565b60405161065d9190613c32565b60405180910390f35b610680600480360381019061067b9190613671565b611a86565b60405161068d9190613c17565b60405180910390f35b6106b060048036038101906106ab9190613438565b611ab0565b6040516106bd9190613c17565b60405180910390f35b6106ce611b44565b6040516106db9190613c17565b60405180910390f35b6106fe60048036038101906106f9919061340b565b611b57565b005b61071a6004803603810190610715919061340b565b611bf8565b005b6107366004803603810190610731919061340b565b611cf0565b6040516107439190613f54565b60405180910390f35b61076660048036038101906107619190613628565b611d08565b005b600061077382611d9e565b9050919050565b60606001805461078990614204565b80601f01602080910402602001604051908101604052809291908181526020018280546107b590614204565b80156108025780601f106107d757610100808354040283529160200191610802565b820191906000526020600020905b8154815290600101906020018083116107e557829003601f168201915b5050505050905090565b600061081782611e18565b610856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084d90613e54565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089c8261135e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490613ed4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092c611e84565b73ffffffffffffffffffffffffffffffffffffffff16148061095b575061095a81610955611e84565b611ab0565b5b61099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190613db4565b60405180910390fd5b6109a48383611e8c565b505050565b6000600980549050905090565b601360006109c2611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a1357600080fd5b6000610a1d6109a9565b9050600c54600182610a2f9190614039565b1115610a3a57600080fd5b610a4383611e18565b15610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613e14565b60405180910390fd5b610a8d8284611f45565b505050565b600e5481565b610aa9610aa3611e84565b82611f63565b610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf90613f14565b60405180910390fd5b610af3838383612041565b505050565b6000600b60009054906101000a900460ff16905090565b600d5481565b600080610b2184611e18565b610b2a57600080fd5b610b326115de565b6103e884600d54610b4391906140c0565b610b4d919061408f565b915091509250929050565b6000610b638361149e565b8210610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90613c74565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b60009054906101000a900460ff16610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390613c54565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231610c94611e84565b6040518263ffffffff1660e01b8152600401610cb09190613b87565b60206040518083038186803b158015610cc857600080fd5b505afa158015610cdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d00919061369e565b905060008111610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613d54565b60405180910390fd5b6000610d4f6109a9565b9050600c548282610d609190614039565b1115610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890613d74565b60405180910390fd5b60005b82811015610f5f576000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59610df4611e84565b846040518363ffffffff1660e01b8152600401610e12929190613bee565b60206040518083038186803b158015610e2a57600080fd5b505afa158015610e3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e62919061369e565b90506014600082815260200190815260200160002060009054906101000a900460ff1615610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90613eb4565b60405180910390fd5b60016014600083815260200190815260200160002060006101000a81548160ff021916908315150217905550610efa81611e18565b15610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613e14565b60405180910390fd5b610f4b610f45611e84565b82611f45565b508080610f5790614267565b915050610da4565b505050565b60136000610f70611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fc157600080fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6110088383836040518060200160405280600081525061197d565b505050565b60136000611019611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661106a57600080fd5b611072611e84565b73ffffffffffffffffffffffffffffffffffffffff166110918261135e565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613cb4565b60405180910390fd5b6110f0816122a8565b50565b601360006110ff611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661115057600080fd5b600061115a6109a9565b90508082101561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690613ef4565b60405180910390fd5b81600c819055505050565b60006111b46109a9565b82106111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613f34565b60405180910390fd5b600982815481106112095761120861439d565b5b90600052602060002001549050919050565b611223611e84565b73ffffffffffffffffffffffffffffffffffffffff166112416115de565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90613e74565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112e2573d6000803e3d6000fd5b505050565b601360006112f3611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661134457600080fd5b806010908051906020019061135a92919061320a565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90613df4565b60405180910390fd5b80915050919050565b6011805461141d90614204565b80601f016020809104026020016040519081016040528092919081815260200182805461144990614204565b80156114965780601f1061146b57610100808354040283529160200191611496565b820191906000526020600020905b81548152906001019060200180831161147957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613dd4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61155e611e84565b73ffffffffffffffffffffffffffffffffffffffff1661157c6115de565b73ffffffffffffffffffffffffffffffffffffffff16146115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990613e74565b60405180910390fd5b6115dc60006123c5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611635611e84565b73ffffffffffffffffffffffffffffffffffffffff166116536115de565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090613e74565b60405180910390fd5b80600d8190555050565b6060600280546116c290614204565b80601f01602080910402602001604051908101604052809291908181526020018280546116ee90614204565b801561173b5780601f106117105761010080835404028352916020019161173b565b820191906000526020600020905b81548152906001019060200180831161171e57829003601f168201915b5050505050905090565b611757611750611e84565b8383612489565b5050565b611763611e84565b73ffffffffffffffffffffffffffffffffffffffff166117816115de565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90613e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181157600080fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611874611e84565b73ffffffffffffffffffffffffffffffffffffffff166118926115de565b73ffffffffffffffffffffffffffffffffffffffff16146118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561192257600080fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61198e611988611e84565b83611f63565b6119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490613f14565b60405180910390fd5b6119d9848484846125f6565b50505050565b60606119ea82611e18565b611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090613e94565b60405180910390fd5b6000611a33612652565b90506000815111611a535760405180602001604052806000815250611a7e565b80611a5d846126e4565b604051602001611a6e929190613b63565b6040516020818303038152906040525b915050919050565b60006014600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b60136000611b63611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bb457600080fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c00611e84565b73ffffffffffffffffffffffffffffffffffffffff16611c1e6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90613e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613cf4565b60405180910390fd5b611ced816123c5565b50565b60126020528060005260406000206000915090505481565b611d10611e84565b73ffffffffffffffffffffffffffffffffffffffff16611d2e6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90613e74565b60405180910390fd5b8060119080519060200190611d9a92919061320a565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e115750611e1082612845565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eff8361135e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f5f8282604051806020016040528060008152506129e7565b5050565b6000611f6e82611e18565b611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490613d94565b60405180910390fd5b6000611fb88361135e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202757508373ffffffffffffffffffffffffffffffffffffffff1661200f8461080c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203857506120378185611ab0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120618261135e565b73ffffffffffffffffffffffffffffffffffffffff16146120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae90613cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613d14565b60405180910390fd5b612132838383612a42565b61213d600082611e8c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218d919061411a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e49190614039565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122a3838383612a52565b505050565b60006122b38261135e565b90506122c181600084612a42565b6122cc600083611e8c565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461231c919061411a565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c181600084612a52565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef90613d34565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125e99190613c17565b60405180910390a3505050565b612601848484612041565b61260d84848484612a57565b61264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390613c94565b60405180910390fd5b50505050565b60606010805461266190614204565b80601f016020809104026020016040519081016040528092919081815260200182805461268d90614204565b80156126da5780601f106126af576101008083540402835291602001916126da565b820191906000526020600020905b8154815290600101906020018083116126bd57829003601f168201915b5050505050905090565b6060600082141561272c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612840565b600082905060005b6000821461275e57808061274790614267565b915050600a82612757919061408f565b9150612734565b60008167ffffffffffffffff81111561277a576127796143cc565b5b6040519080825280601f01601f1916602001820160405280156127ac5781602001600182028036833780820191505090505b5090505b60008514612839576001826127c5919061411a565b9150600a856127d491906142b0565b60306127e09190614039565b60f81b8183815181106127f6576127f561439d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612832919061408f565b94506127b0565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061291057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061297857507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129e057507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6129f18383612bee565b6129fe6000848484612a57565b612a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3490613c94565b60405180910390fd5b505050565b612a4d838383612dc8565b505050565b505050565b6000612a788473ffffffffffffffffffffffffffffffffffffffff16612edc565b15612be1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa1611e84565b8786866040518563ffffffff1660e01b8152600401612ac39493929190613ba2565b602060405180830381600087803b158015612add57600080fd5b505af1925050508015612b0e57506040513d601f19601f82011682018060405250810190612b0b91906135fb565b60015b612b91573d8060008114612b3e576040519150601f19603f3d011682016040523d82523d6000602084013e612b43565b606091505b50600081511415612b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8090613c94565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612be6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5590613e34565b60405180910390fd5b612c6781611e18565b15612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e90613cd4565b60405180910390fd5b612cb360008383612a42565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d039190614039565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dc460008383612a52565b5050565b612dd3838383612eff565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e1657612e1181612f04565b612e55565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e5457612e538382612f4d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e9857612e93816130ba565b612ed7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ed657612ed5828261318b565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f5a8461149e565b612f64919061411a565b9050600060086000848152602001908152602001600020549050818114613049576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506130ce919061411a565b90506000600a60008481526020019081526020016000205490506000600983815481106130fe576130fd61439d565b5b9060005260206000200154905080600983815481106131205761311f61439d565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061316f5761316e61436e565b5b6001900381819060005260206000200160009055905550505050565b60006131968361149e565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b82805461321690614204565b90600052602060002090601f016020900481019282613238576000855561327f565b82601f1061325157805160ff191683800117855561327f565b8280016001018555821561327f579182015b8281111561327e578251825591602001919060010190613263565b5b50905061328c9190613290565b5090565b5b808211156132a9576000816000905550600101613291565b5090565b60006132c06132bb84613f94565b613f6f565b9050828152602081018484840111156132dc576132db614400565b5b6132e78482856141c2565b509392505050565b60006133026132fd84613fc5565b613f6f565b90508281526020810184848401111561331e5761331d614400565b5b6133298482856141c2565b509392505050565b600081359050613340816149e6565b92915050565b600081359050613355816149fd565b92915050565b60008135905061336a81614a14565b92915050565b60008151905061337f81614a14565b92915050565b600082601f83011261339a576133996143fb565b5b81356133aa8482602086016132ad565b91505092915050565b600082601f8301126133c8576133c76143fb565b5b81356133d88482602086016132ef565b91505092915050565b6000813590506133f081614a2b565b92915050565b60008151905061340581614a2b565b92915050565b6000602082840312156134215761342061440a565b5b600061342f84828501613331565b91505092915050565b6000806040838503121561344f5761344e61440a565b5b600061345d85828601613331565b925050602061346e85828601613331565b9150509250929050565b6000806000606084860312156134915761349061440a565b5b600061349f86828701613331565b93505060206134b086828701613331565b92505060406134c1868287016133e1565b9150509250925092565b600080600080608085870312156134e5576134e461440a565b5b60006134f387828801613331565b945050602061350487828801613331565b9350506040613515878288016133e1565b925050606085013567ffffffffffffffff81111561353657613535614405565b5b61354287828801613385565b91505092959194509250565b600080604083850312156135655761356461440a565b5b600061357385828601613331565b925050602061358485828601613346565b9150509250929050565b600080604083850312156135a5576135a461440a565b5b60006135b385828601613331565b92505060206135c4858286016133e1565b9150509250929050565b6000602082840312156135e4576135e361440a565b5b60006135f28482850161335b565b91505092915050565b6000602082840312156136115761361061440a565b5b600061361f84828501613370565b91505092915050565b60006020828403121561363e5761363d61440a565b5b600082013567ffffffffffffffff81111561365c5761365b614405565b5b613668848285016133b3565b91505092915050565b6000602082840312156136875761368661440a565b5b6000613695848285016133e1565b91505092915050565b6000602082840312156136b4576136b361440a565b5b60006136c2848285016133f6565b91505092915050565b600080604083850312156136e2576136e161440a565b5b60006136f0858286016133e1565b925050602061370185828601613331565b9150509250929050565b600080604083850312156137225761372161440a565b5b6000613730858286016133e1565b9250506020613741858286016133e1565b9150509250929050565b6137548161414e565b82525050565b61376381614160565b82525050565b600061377482613ff6565b61377e818561400c565b935061378e8185602086016141d1565b6137978161440f565b840191505092915050565b60006137ad82614001565b6137b7818561401d565b93506137c78185602086016141d1565b6137d08161440f565b840191505092915050565b60006137e682614001565b6137f0818561402e565b93506138008185602086016141d1565b80840191505092915050565b600061381960078361401d565b915061382482614420565b602082019050919050565b600061383c602b8361401d565b915061384782614449565b604082019050919050565b600061385f60328361401d565b915061386a82614498565b604082019050919050565b600061388260258361401d565b915061388d826144e7565b604082019050919050565b60006138a5601c8361401d565b91506138b082614536565b602082019050919050565b60006138c860078361401d565b91506138d38261455f565b602082019050919050565b60006138eb60248361401d565b91506138f682614588565b604082019050919050565b600061390e60198361401d565b9150613919826145d7565b602082019050919050565b600061393160068361401d565b915061393c82614600565b602082019050919050565b600061395460088361401d565b915061395f82614629565b602082019050919050565b6000613977602c8361401d565b915061398282614652565b604082019050919050565b600061399a60388361401d565b91506139a5826146a1565b604082019050919050565b60006139bd602a8361401d565b91506139c8826146f0565b604082019050919050565b60006139e060298361401d565b91506139eb8261473f565b604082019050919050565b6000613a03600e8361401d565b9150613a0e8261478e565b602082019050919050565b6000613a2660208361401d565b9150613a31826147b7565b602082019050919050565b6000613a49602c8361401d565b9150613a54826147e0565b604082019050919050565b6000613a6c60208361401d565b9150613a778261482f565b602082019050919050565b6000613a8f602f8361401d565b9150613a9a82614858565b604082019050919050565b6000613ab260078361401d565b9150613abd826148a7565b602082019050919050565b6000613ad560218361401d565b9150613ae0826148d0565b604082019050919050565b6000613af860078361401d565b9150613b038261491f565b602082019050919050565b6000613b1b60318361401d565b9150613b2682614948565b604082019050919050565b6000613b3e602c8361401d565b9150613b4982614997565b604082019050919050565b613b5d816141b8565b82525050565b6000613b6f82856137db565b9150613b7b82846137db565b91508190509392505050565b6000602082019050613b9c600083018461374b565b92915050565b6000608082019050613bb7600083018761374b565b613bc4602083018661374b565b613bd16040830185613b54565b8181036060830152613be38184613769565b905095945050505050565b6000604082019050613c03600083018561374b565b613c106020830184613b54565b9392505050565b6000602082019050613c2c600083018461375a565b92915050565b60006020820190508181036000830152613c4c81846137a2565b905092915050565b60006020820190508181036000830152613c6d8161380c565b9050919050565b60006020820190508181036000830152613c8d8161382f565b9050919050565b60006020820190508181036000830152613cad81613852565b9050919050565b60006020820190508181036000830152613ccd81613875565b9050919050565b60006020820190508181036000830152613ced81613898565b9050919050565b60006020820190508181036000830152613d0d816138bb565b9050919050565b60006020820190508181036000830152613d2d816138de565b9050919050565b60006020820190508181036000830152613d4d81613901565b9050919050565b60006020820190508181036000830152613d6d81613924565b9050919050565b60006020820190508181036000830152613d8d81613947565b9050919050565b60006020820190508181036000830152613dad8161396a565b9050919050565b60006020820190508181036000830152613dcd8161398d565b9050919050565b60006020820190508181036000830152613ded816139b0565b9050919050565b60006020820190508181036000830152613e0d816139d3565b9050919050565b60006020820190508181036000830152613e2d816139f6565b9050919050565b60006020820190508181036000830152613e4d81613a19565b9050919050565b60006020820190508181036000830152613e6d81613a3c565b9050919050565b60006020820190508181036000830152613e8d81613a5f565b9050919050565b60006020820190508181036000830152613ead81613a82565b9050919050565b60006020820190508181036000830152613ecd81613aa5565b9050919050565b60006020820190508181036000830152613eed81613ac8565b9050919050565b60006020820190508181036000830152613f0d81613aeb565b9050919050565b60006020820190508181036000830152613f2d81613b0e565b9050919050565b60006020820190508181036000830152613f4d81613b31565b9050919050565b6000602082019050613f696000830184613b54565b92915050565b6000613f79613f8a565b9050613f858282614236565b919050565b6000604051905090565b600067ffffffffffffffff821115613faf57613fae6143cc565b5b613fb88261440f565b9050602081019050919050565b600067ffffffffffffffff821115613fe057613fdf6143cc565b5b613fe98261440f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614044826141b8565b915061404f836141b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614084576140836142e1565b5b828201905092915050565b600061409a826141b8565b91506140a5836141b8565b9250826140b5576140b4614310565b5b828204905092915050565b60006140cb826141b8565b91506140d6836141b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561410f5761410e6142e1565b5b828202905092915050565b6000614125826141b8565b9150614130836141b8565b925082821015614143576141426142e1565b5b828203905092915050565b600061415982614198565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141ef5780820151818401526020810190506141d4565b838111156141fe576000848401525b50505050565b6000600282049050600182168061421c57607f821691505b602082108114156142305761422f61433f565b5b50919050565b61423f8261440f565b810181811067ffffffffffffffff8211171561425e5761425d6143cc565b5b80604052505050565b6000614272826141b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a5576142a46142e1565b5b600182019050919050565b60006142bb826141b8565b91506142c6836141b8565b9250826142d6576142d5614310565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f636c6f7365642100000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6164647265737300000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e4f204c56530000000000000000000000000000000000000000000000000000600082015250565b7f6d6178546f74616c000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f616c72656164795f6d696e746564000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436c61696d656400000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6f206c6f7700000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6149ef8161414e565b81146149fa57600080fd5b50565b614a0681614160565b8114614a1157600080fd5b50565b614a1d8161416c565b8114614a2857600080fd5b50565b614a34816141b8565b8114614a3f57600080fd5b5056fea2646970667358221220d86013f82f1277cb0d77a9ff6955e12dcb7dacdc7a23c4ffd19844f219ecad5a64736f6c6343000807003368747470733a2f2f786f786f6e66742e696f2f6d6574612f6c735f626f6f6b5f746f6b656e2f0000000000000000000000000000000000000000000000000000000000000065

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c80636352211e1161013b578063b697f531116100b8578063eb8d24441161007c578063eb8d2444146106c6578063eee62166146106e4578063f2fde38b14610700578063f46eccc41461071c578063ffe630b51461074c57610248565b8063b697f531146105fe578063b88d4fde1461061a578063c87b56dd14610636578063dbe7e3bd14610666578063e985e9c51461069657610248565b80638e605ee5116100ff5780638e605ee51461056e5780638fffd8b51461058c57806395d89b41146105a8578063a22cb465146105c6578063b2f87643146105e257610248565b80636352211e146104c85780636373a6b1146104f857806370a0823114610516578063715018a6146105465780638da5cb5b1461055057610248565b80632a55205a116101c957806342966c681161018d57806342966c6814610428578063444a1cec146104445780634f6ccce71461046057806351cff8d91461049057806355f804b3146104ac57610248565b80632a55205a146103975780632f745c59146103c85780633158952e146103f857806334918dfd1461040257806342842e0e1461040c57610248565b806319708af51161021057806319708af514610305578063226730301461032157806323b872dd1461033f57806325bdb2a81461035b57806329ee566c1461037957610248565b806301ffc9a71461024d57806306fdde031461027d578063081812fc1461029b578063095ea7b3146102cb57806318160ddd146102e7575b600080fd5b610267600480360381019061026291906135ce565b610768565b6040516102749190613c17565b60405180910390f35b61028561077a565b6040516102929190613c32565b60405180910390f35b6102b560048036038101906102b09190613671565b61080c565b6040516102c29190613b87565b60405180910390f35b6102e560048036038101906102e0919061358e565b610891565b005b6102ef6109a9565b6040516102fc9190613f54565b60405180910390f35b61031f600480360381019061031a91906136cb565b6109b6565b005b610329610a92565b6040516103369190613f54565b60405180910390f35b61035960048036038101906103549190613478565b610a98565b005b610363610af8565b6040516103709190613c17565b60405180910390f35b610381610b0f565b60405161038e9190613f54565b60405180910390f35b6103b160048036038101906103ac919061370b565b610b15565b6040516103bf929190613bee565b60405180910390f35b6103e260048036038101906103dd919061358e565b610b58565b6040516103ef9190613f54565b60405180910390f35b610400610bfd565b005b61040a610f64565b005b61042660048036038101906104219190613478565b610fed565b005b610442600480360381019061043d9190613671565b61100d565b005b61045e60048036038101906104599190613671565b6110f3565b005b61047a60048036038101906104759190613671565b6111aa565b6040516104879190613f54565b60405180910390f35b6104aa60048036038101906104a5919061340b565b61121b565b005b6104c660048036038101906104c19190613628565b6112e7565b005b6104e260048036038101906104dd9190613671565b61135e565b6040516104ef9190613b87565b60405180910390f35b610500611410565b60405161050d9190613c32565b60405180910390f35b610530600480360381019061052b919061340b565b61149e565b60405161053d9190613f54565b60405180910390f35b61054e611556565b005b6105586115de565b6040516105659190613b87565b60405180910390f35b610576611607565b6040516105839190613b87565b60405180910390f35b6105a660048036038101906105a19190613671565b61162d565b005b6105b06116b3565b6040516105bd9190613c32565b60405180910390f35b6105e060048036038101906105db919061354e565b611745565b005b6105fc60048036038101906105f7919061340b565b61175b565b005b6106186004803603810190610613919061340b565b61186c565b005b610634600480360381019061062f91906134cb565b61197d565b005b610650600480360381019061064b9190613671565b6119df565b60405161065d9190613c32565b60405180910390f35b610680600480360381019061067b9190613671565b611a86565b60405161068d9190613c17565b60405180910390f35b6106b060048036038101906106ab9190613438565b611ab0565b6040516106bd9190613c17565b60405180910390f35b6106ce611b44565b6040516106db9190613c17565b60405180910390f35b6106fe60048036038101906106f9919061340b565b611b57565b005b61071a6004803603810190610715919061340b565b611bf8565b005b6107366004803603810190610731919061340b565b611cf0565b6040516107439190613f54565b60405180910390f35b61076660048036038101906107619190613628565b611d08565b005b600061077382611d9e565b9050919050565b60606001805461078990614204565b80601f01602080910402602001604051908101604052809291908181526020018280546107b590614204565b80156108025780601f106107d757610100808354040283529160200191610802565b820191906000526020600020905b8154815290600101906020018083116107e557829003601f168201915b5050505050905090565b600061081782611e18565b610856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084d90613e54565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061089c8261135e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561090d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090490613ed4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661092c611e84565b73ffffffffffffffffffffffffffffffffffffffff16148061095b575061095a81610955611e84565b611ab0565b5b61099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190613db4565b60405180910390fd5b6109a48383611e8c565b505050565b6000600980549050905090565b601360006109c2611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a1357600080fd5b6000610a1d6109a9565b9050600c54600182610a2f9190614039565b1115610a3a57600080fd5b610a4383611e18565b15610a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7a90613e14565b60405180910390fd5b610a8d8284611f45565b505050565b600e5481565b610aa9610aa3611e84565b82611f63565b610ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adf90613f14565b60405180910390fd5b610af3838383612041565b505050565b6000600b60009054906101000a900460ff16905090565b600d5481565b600080610b2184611e18565b610b2a57600080fd5b610b326115de565b6103e884600d54610b4391906140c0565b610b4d919061408f565b915091509250929050565b6000610b638361149e565b8210610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b90613c74565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600b60009054906101000a900460ff16610c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4390613c54565b60405180910390fd5b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231610c94611e84565b6040518263ffffffff1660e01b8152600401610cb09190613b87565b60206040518083038186803b158015610cc857600080fd5b505afa158015610cdc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d00919061369e565b905060008111610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90613d54565b60405180910390fd5b6000610d4f6109a9565b9050600c548282610d609190614039565b1115610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890613d74565b60405180910390fd5b60005b82811015610f5f576000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632f745c59610df4611e84565b846040518363ffffffff1660e01b8152600401610e12929190613bee565b60206040518083038186803b158015610e2a57600080fd5b505afa158015610e3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e62919061369e565b90506014600082815260200190815260200160002060009054906101000a900460ff1615610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90613eb4565b60405180910390fd5b60016014600083815260200190815260200160002060006101000a81548160ff021916908315150217905550610efa81611e18565b15610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613e14565b60405180910390fd5b610f4b610f45611e84565b82611f45565b508080610f5790614267565b915050610da4565b505050565b60136000610f70611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610fc157600080fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6110088383836040518060200160405280600081525061197d565b505050565b60136000611019611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661106a57600080fd5b611072611e84565b73ffffffffffffffffffffffffffffffffffffffff166110918261135e565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613cb4565b60405180910390fd5b6110f0816122a8565b50565b601360006110ff611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661115057600080fd5b600061115a6109a9565b90508082101561119f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119690613ef4565b60405180910390fd5b81600c819055505050565b60006111b46109a9565b82106111f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ec90613f34565b60405180910390fd5b600982815481106112095761120861439d565b5b90600052602060002001549050919050565b611223611e84565b73ffffffffffffffffffffffffffffffffffffffff166112416115de565b73ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90613e74565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112e2573d6000803e3d6000fd5b505050565b601360006112f3611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661134457600080fd5b806010908051906020019061135a92919061320a565b5050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe90613df4565b60405180910390fd5b80915050919050565b6011805461141d90614204565b80601f016020809104026020016040519081016040528092919081815260200182805461144990614204565b80156114965780601f1061146b57610100808354040283529160200191611496565b820191906000526020600020905b81548152906001019060200180831161147957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561150f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150690613dd4565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61155e611e84565b73ffffffffffffffffffffffffffffffffffffffff1661157c6115de565b73ffffffffffffffffffffffffffffffffffffffff16146115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990613e74565b60405180910390fd5b6115dc60006123c5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611635611e84565b73ffffffffffffffffffffffffffffffffffffffff166116536115de565b73ffffffffffffffffffffffffffffffffffffffff16146116a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a090613e74565b60405180910390fd5b80600d8190555050565b6060600280546116c290614204565b80601f01602080910402602001604051908101604052809291908181526020018280546116ee90614204565b801561173b5780601f106117105761010080835404028352916020019161173b565b820191906000526020600020905b81548152906001019060200180831161171e57829003601f168201915b5050505050905090565b611757611750611e84565b8383612489565b5050565b611763611e84565b73ffffffffffffffffffffffffffffffffffffffff166117816115de565b73ffffffffffffffffffffffffffffffffffffffff16146117d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ce90613e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561181157600080fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611874611e84565b73ffffffffffffffffffffffffffffffffffffffff166118926115de565b73ffffffffffffffffffffffffffffffffffffffff16146118e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118df90613e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561192257600080fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61198e611988611e84565b83611f63565b6119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c490613f14565b60405180910390fd5b6119d9848484846125f6565b50505050565b60606119ea82611e18565b611a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2090613e94565b60405180910390fd5b6000611a33612652565b90506000815111611a535760405180602001604052806000815250611a7e565b80611a5d846126e4565b604051602001611a6e929190613b63565b6040516020818303038152906040525b915050919050565b60006014600083815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60009054906101000a900460ff1681565b60136000611b63611e84565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bb457600080fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c00611e84565b73ffffffffffffffffffffffffffffffffffffffff16611c1e6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90613e74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ce4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdb90613cf4565b60405180910390fd5b611ced816123c5565b50565b60126020528060005260406000206000915090505481565b611d10611e84565b73ffffffffffffffffffffffffffffffffffffffff16611d2e6115de565b73ffffffffffffffffffffffffffffffffffffffff1614611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b90613e74565b60405180910390fd5b8060119080519060200190611d9a92919061320a565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611e115750611e1082612845565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611eff8361135e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f5f8282604051806020016040528060008152506129e7565b5050565b6000611f6e82611e18565b611fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa490613d94565b60405180910390fd5b6000611fb88361135e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202757508373ffffffffffffffffffffffffffffffffffffffff1661200f8461080c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203857506120378185611ab0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166120618261135e565b73ffffffffffffffffffffffffffffffffffffffff16146120b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ae90613cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612127576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211e90613d14565b60405180910390fd5b612132838383612a42565b61213d600082611e8c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218d919061411a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e49190614039565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46122a3838383612a52565b505050565b60006122b38261135e565b90506122c181600084612a42565b6122cc600083611e8c565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461231c919061411a565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123c181600084612a52565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ef90613d34565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125e99190613c17565b60405180910390a3505050565b612601848484612041565b61260d84848484612a57565b61264c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264390613c94565b60405180910390fd5b50505050565b60606010805461266190614204565b80601f016020809104026020016040519081016040528092919081815260200182805461268d90614204565b80156126da5780601f106126af576101008083540402835291602001916126da565b820191906000526020600020905b8154815290600101906020018083116126bd57829003601f168201915b5050505050905090565b6060600082141561272c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612840565b600082905060005b6000821461275e57808061274790614267565b915050600a82612757919061408f565b9150612734565b60008167ffffffffffffffff81111561277a576127796143cc565b5b6040519080825280601f01601f1916602001820160405280156127ac5781602001600182028036833780820191505090505b5090505b60008514612839576001826127c5919061411a565b9150600a856127d491906142b0565b60306127e09190614039565b60f81b8183815181106127f6576127f561439d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612832919061408f565b94506127b0565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061291057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061297857507f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129e057507f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6129f18383612bee565b6129fe6000848484612a57565b612a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3490613c94565b60405180910390fd5b505050565b612a4d838383612dc8565b505050565b505050565b6000612a788473ffffffffffffffffffffffffffffffffffffffff16612edc565b15612be1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aa1611e84565b8786866040518563ffffffff1660e01b8152600401612ac39493929190613ba2565b602060405180830381600087803b158015612add57600080fd5b505af1925050508015612b0e57506040513d601f19601f82011682018060405250810190612b0b91906135fb565b60015b612b91573d8060008114612b3e576040519150601f19603f3d011682016040523d82523d6000602084013e612b43565b606091505b50600081511415612b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8090613c94565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612be6565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5590613e34565b60405180910390fd5b612c6781611e18565b15612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e90613cd4565b60405180910390fd5b612cb360008383612a42565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d039190614039565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dc460008383612a52565b5050565b612dd3838383612eff565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e1657612e1181612f04565b612e55565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612e5457612e538382612f4d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e9857612e93816130ba565b612ed7565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ed657612ed5828261318b565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612f5a8461149e565b612f64919061411a565b9050600060086000848152602001908152602001600020549050818114613049576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506130ce919061411a565b90506000600a60008481526020019081526020016000205490506000600983815481106130fe576130fd61439d565b5b9060005260206000200154905080600983815481106131205761311f61439d565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061316f5761316e61436e565b5b6001900381819060005260206000200160009055905550505050565b60006131968361149e565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b82805461321690614204565b90600052602060002090601f016020900481019282613238576000855561327f565b82601f1061325157805160ff191683800117855561327f565b8280016001018555821561327f579182015b8281111561327e578251825591602001919060010190613263565b5b50905061328c9190613290565b5090565b5b808211156132a9576000816000905550600101613291565b5090565b60006132c06132bb84613f94565b613f6f565b9050828152602081018484840111156132dc576132db614400565b5b6132e78482856141c2565b509392505050565b60006133026132fd84613fc5565b613f6f565b90508281526020810184848401111561331e5761331d614400565b5b6133298482856141c2565b509392505050565b600081359050613340816149e6565b92915050565b600081359050613355816149fd565b92915050565b60008135905061336a81614a14565b92915050565b60008151905061337f81614a14565b92915050565b600082601f83011261339a576133996143fb565b5b81356133aa8482602086016132ad565b91505092915050565b600082601f8301126133c8576133c76143fb565b5b81356133d88482602086016132ef565b91505092915050565b6000813590506133f081614a2b565b92915050565b60008151905061340581614a2b565b92915050565b6000602082840312156134215761342061440a565b5b600061342f84828501613331565b91505092915050565b6000806040838503121561344f5761344e61440a565b5b600061345d85828601613331565b925050602061346e85828601613331565b9150509250929050565b6000806000606084860312156134915761349061440a565b5b600061349f86828701613331565b93505060206134b086828701613331565b92505060406134c1868287016133e1565b9150509250925092565b600080600080608085870312156134e5576134e461440a565b5b60006134f387828801613331565b945050602061350487828801613331565b9350506040613515878288016133e1565b925050606085013567ffffffffffffffff81111561353657613535614405565b5b61354287828801613385565b91505092959194509250565b600080604083850312156135655761356461440a565b5b600061357385828601613331565b925050602061358485828601613346565b9150509250929050565b600080604083850312156135a5576135a461440a565b5b60006135b385828601613331565b92505060206135c4858286016133e1565b9150509250929050565b6000602082840312156135e4576135e361440a565b5b60006135f28482850161335b565b91505092915050565b6000602082840312156136115761361061440a565b5b600061361f84828501613370565b91505092915050565b60006020828403121561363e5761363d61440a565b5b600082013567ffffffffffffffff81111561365c5761365b614405565b5b613668848285016133b3565b91505092915050565b6000602082840312156136875761368661440a565b5b6000613695848285016133e1565b91505092915050565b6000602082840312156136b4576136b361440a565b5b60006136c2848285016133f6565b91505092915050565b600080604083850312156136e2576136e161440a565b5b60006136f0858286016133e1565b925050602061370185828601613331565b9150509250929050565b600080604083850312156137225761372161440a565b5b6000613730858286016133e1565b9250506020613741858286016133e1565b9150509250929050565b6137548161414e565b82525050565b61376381614160565b82525050565b600061377482613ff6565b61377e818561400c565b935061378e8185602086016141d1565b6137978161440f565b840191505092915050565b60006137ad82614001565b6137b7818561401d565b93506137c78185602086016141d1565b6137d08161440f565b840191505092915050565b60006137e682614001565b6137f0818561402e565b93506138008185602086016141d1565b80840191505092915050565b600061381960078361401d565b915061382482614420565b602082019050919050565b600061383c602b8361401d565b915061384782614449565b604082019050919050565b600061385f60328361401d565b915061386a82614498565b604082019050919050565b600061388260258361401d565b915061388d826144e7565b604082019050919050565b60006138a5601c8361401d565b91506138b082614536565b602082019050919050565b60006138c860078361401d565b91506138d38261455f565b602082019050919050565b60006138eb60248361401d565b91506138f682614588565b604082019050919050565b600061390e60198361401d565b9150613919826145d7565b602082019050919050565b600061393160068361401d565b915061393c82614600565b602082019050919050565b600061395460088361401d565b915061395f82614629565b602082019050919050565b6000613977602c8361401d565b915061398282614652565b604082019050919050565b600061399a60388361401d565b91506139a5826146a1565b604082019050919050565b60006139bd602a8361401d565b91506139c8826146f0565b604082019050919050565b60006139e060298361401d565b91506139eb8261473f565b604082019050919050565b6000613a03600e8361401d565b9150613a0e8261478e565b602082019050919050565b6000613a2660208361401d565b9150613a31826147b7565b602082019050919050565b6000613a49602c8361401d565b9150613a54826147e0565b604082019050919050565b6000613a6c60208361401d565b9150613a778261482f565b602082019050919050565b6000613a8f602f8361401d565b9150613a9a82614858565b604082019050919050565b6000613ab260078361401d565b9150613abd826148a7565b602082019050919050565b6000613ad560218361401d565b9150613ae0826148d0565b604082019050919050565b6000613af860078361401d565b9150613b038261491f565b602082019050919050565b6000613b1b60318361401d565b9150613b2682614948565b604082019050919050565b6000613b3e602c8361401d565b9150613b4982614997565b604082019050919050565b613b5d816141b8565b82525050565b6000613b6f82856137db565b9150613b7b82846137db565b91508190509392505050565b6000602082019050613b9c600083018461374b565b92915050565b6000608082019050613bb7600083018761374b565b613bc4602083018661374b565b613bd16040830185613b54565b8181036060830152613be38184613769565b905095945050505050565b6000604082019050613c03600083018561374b565b613c106020830184613b54565b9392505050565b6000602082019050613c2c600083018461375a565b92915050565b60006020820190508181036000830152613c4c81846137a2565b905092915050565b60006020820190508181036000830152613c6d8161380c565b9050919050565b60006020820190508181036000830152613c8d8161382f565b9050919050565b60006020820190508181036000830152613cad81613852565b9050919050565b60006020820190508181036000830152613ccd81613875565b9050919050565b60006020820190508181036000830152613ced81613898565b9050919050565b60006020820190508181036000830152613d0d816138bb565b9050919050565b60006020820190508181036000830152613d2d816138de565b9050919050565b60006020820190508181036000830152613d4d81613901565b9050919050565b60006020820190508181036000830152613d6d81613924565b9050919050565b60006020820190508181036000830152613d8d81613947565b9050919050565b60006020820190508181036000830152613dad8161396a565b9050919050565b60006020820190508181036000830152613dcd8161398d565b9050919050565b60006020820190508181036000830152613ded816139b0565b9050919050565b60006020820190508181036000830152613e0d816139d3565b9050919050565b60006020820190508181036000830152613e2d816139f6565b9050919050565b60006020820190508181036000830152613e4d81613a19565b9050919050565b60006020820190508181036000830152613e6d81613a3c565b9050919050565b60006020820190508181036000830152613e8d81613a5f565b9050919050565b60006020820190508181036000830152613ead81613a82565b9050919050565b60006020820190508181036000830152613ecd81613aa5565b9050919050565b60006020820190508181036000830152613eed81613ac8565b9050919050565b60006020820190508181036000830152613f0d81613aeb565b9050919050565b60006020820190508181036000830152613f2d81613b0e565b9050919050565b60006020820190508181036000830152613f4d81613b31565b9050919050565b6000602082019050613f696000830184613b54565b92915050565b6000613f79613f8a565b9050613f858282614236565b919050565b6000604051905090565b600067ffffffffffffffff821115613faf57613fae6143cc565b5b613fb88261440f565b9050602081019050919050565b600067ffffffffffffffff821115613fe057613fdf6143cc565b5b613fe98261440f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614044826141b8565b915061404f836141b8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614084576140836142e1565b5b828201905092915050565b600061409a826141b8565b91506140a5836141b8565b9250826140b5576140b4614310565b5b828204905092915050565b60006140cb826141b8565b91506140d6836141b8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561410f5761410e6142e1565b5b828202905092915050565b6000614125826141b8565b9150614130836141b8565b925082821015614143576141426142e1565b5b828203905092915050565b600061415982614198565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141ef5780820151818401526020810190506141d4565b838111156141fe576000848401525b50505050565b6000600282049050600182168061421c57607f821691505b602082108114156142305761422f61433f565b5b50919050565b61423f8261440f565b810181811067ffffffffffffffff8211171561425e5761425d6143cc565b5b80604052505050565b6000614272826141b8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142a5576142a46142e1565b5b600182019050919050565b60006142bb826141b8565b91506142c6836141b8565b9250826142d6576142d5614310565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f636c6f7365642100000000000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6164647265737300000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4e4f204c56530000000000000000000000000000000000000000000000000000600082015250565b7f6d6178546f74616c000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f616c72656164795f6d696e746564000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f436c61696d656400000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f746f6f206c6f7700000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6149ef8161414e565b81146149fa57600080fd5b50565b614a0681614160565b8114614a1157600080fd5b50565b614a1d8161416c565b8114614a2857600080fd5b50565b614a34816141b8565b8114614a3f57600080fd5b5056fea2646970667358221220d86013f82f1277cb0d77a9ff6955e12dcb7dacdc7a23c4ffd19844f219ecad5a64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000065

-----Decoded View---------------
Arg [0] : _max (uint256): 101

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000065


Deployed Bytecode Sourcemap

184:4758:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2163:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2708:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4220:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3758:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1536:111:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4046:308:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;378:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4947:330:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2754:91:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;342:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1447:284;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;1212:253:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3221:819:11;;;:::i;:::-;;1738:118;;;:::i;:::-;;5343:179:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4360:220:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2851:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1719:230:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4592:159:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2346:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2411:235:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;485:24:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2149:205:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1608:101:12;;;:::i;:::-;;976:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;414:26:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1868:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2870:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4504:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1149:149:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;985:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5588:320:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3039:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3099:111:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4723:162:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;265:32:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1306:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4758:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;518:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2632:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2163:177;2266:4;2293:36;2317:11;2293:23;:36::i;:::-;2286:43;;2163:177;;;:::o;2708:98:1:-;2762:13;2794:5;2787:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2708:98;:::o;4220:217::-;4296:7;4323:16;4331:7;4323;:16::i;:::-;4315:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4406:15;:24;4422:7;4406:24;;;;;;;;;;;;;;;;;;;;;4399:31;;4220:217;;;:::o;3758:401::-;3838:13;3854:23;3869:7;3854:14;:23::i;:::-;3838:39;;3901:5;3895:11;;:2;:11;;;;3887:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3992:5;3976:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;4001:37;4018:5;4025:12;:10;:12::i;:::-;4001:16;:37::i;:::-;3976:62;3955:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;4131:21;4140:2;4144:7;4131:8;:21::i;:::-;3828:331;3758:401;;:::o;1536:111:2:-;1597:7;1623:10;:17;;;;1616:24;;1536:111;:::o;4046:308:11:-;4121:7;:21;4129:12;:10;:12::i;:::-;4121:21;;;;;;;;;;;;;;;;;;;;;;;;;4113:30;;;;;;4154:10;4167:13;:11;:13::i;:::-;4154:26;;4208:9;;4203:1;4198:2;:6;;;;:::i;:::-;:19;;4190:28;;;;;;4237:17;4245:8;4237:7;:17::i;:::-;4236:18;4228:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;4284:28;4294:7;4303:8;4284:9;:28::i;:::-;4103:251;4046:308;;:::o;378:29::-;;;;:::o;4947:330:1:-;5136:41;5155:12;:10;:12::i;:::-;5169:7;5136:18;:41::i;:::-;5128:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5242:28;5252:4;5258:2;5262:7;5242:9;:28::i;:::-;4947:330;;;:::o;2754:91:11:-;2799:4;2826:12;;;;;;;;;;;2819:19;;2754:91;:::o;342:29::-;;;;:::o;1447:284::-;1570:16;1596:21;1641:17;1649:8;1641:7;:17::i;:::-;1633:26;;;;;;1677:7;:5;:7::i;:::-;1717:4;1704:10;1694:7;;:20;;;;:::i;:::-;:27;;;;:::i;:::-;1669:54;;;;1447:284;;;;;:::o;1212:253:2:-;1309:7;1344:23;1361:5;1344:16;:23::i;:::-;1336:5;:31;1328:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1432:12;:19;1445:5;1432:19;;;;;;;;;;;;;;;:26;1452:5;1432:26;;;;;;;;;;;;1425:33;;1212:253;;;;:::o;3221:819:11:-;3273:12;;;;;;;;;;;3265:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;3308:19;3339:11;;;;;;;;;;;3331:30;;;3362:12;:10;:12::i;:::-;3331:44;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3308:67;;3450:1;3433:14;:18;3425:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;3472:10;3485:13;:11;:13::i;:::-;3472:26;;3540:9;;3522:14;3517:2;:19;;;;:::i;:::-;:32;;3509:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;3578:6;3573:444;3594:14;3590:1;:18;3573:444;;;3673:20;3714:11;;;;;;;;;;;3696:50;;;3747:12;:10;:12::i;:::-;3760:1;3696:66;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3673:89;;3786:10;:27;3797:15;3786:27;;;;;;;;;;;;;;;;;;;;;3785:28;3777:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;3868:4;3838:10;:27;3849:15;3838:27;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;3895:24;3903:15;3895:7;:24::i;:::-;3894:25;3886:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;3953:40;3963:12;:10;:12::i;:::-;3977:15;3953:9;:40::i;:::-;3614:403;3610:3;;;;;:::i;:::-;;;;3573:444;;;;3246:794;;3221:819::o;1738:118::-;1789:7;:21;1797:12;:10;:12::i;:::-;1789:21;;;;;;;;;;;;;;;;;;;;;;;;;1781:30;;;;;;1837:12;;;;;;;;;;;1836:13;1821:12;;:28;;;;;;;;;;;;;;;;;;1738:118::o;5343:179:1:-;5476:39;5493:4;5499:2;5503:7;5476:39;;;;;;;;;;;;:16;:39::i;:::-;5343:179;;;:::o;4360:220:11:-;4419:7;:21;4427:12;:10;:12::i;:::-;4419:21;;;;;;;;;;;;;;;;;;;;;;;;;4411:30;;;;;;4486:12;:10;:12::i;:::-;4459:39;;:23;4474:7;4459:14;:23::i;:::-;:39;;;4451:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;4559:14;4565:7;4559:5;:14::i;:::-;4360:220;:::o;2851:234::-;2911:7;:21;2919:12;:10;:12::i;:::-;2911:21;;;;;;;;;;;;;;;;;;;;;;;;;2903:30;;;;;;2960:10;2973:13;:11;:13::i;:::-;2960:26;;3029:2;3021:4;:10;;3013:29;;;;;;;;;;;;:::i;:::-;;;;;;;;;3069:4;3057:9;:16;;;;2889:196;2851:234;:::o;1719:230:2:-;1794:7;1829:30;:28;:30::i;:::-;1821:5;:38;1813:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1925:10;1936:5;1925:17;;;;;;;;:::i;:::-;;;;;;;;;;1918:24;;1719:230;;;:::o;4592:159:11:-;1199:12:12;:10;:12::i;:::-;1188:23;;:7;:5;:7::i;:::-;:23;;;1180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4659:12:11::1;4674:21;4659:36;;4713:12;4705:30;;:39;4736:7;4705:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;4649:102;4592:159:::0;:::o;2346:151::-;2423:7;:21;2431:12;:10;:12::i;:::-;2423:21;;;;;;;;;;;;;;;;;;;;;;;;;2415:30;;;;;;2478:8;2459:16;:27;;;;;;;;;;;;:::i;:::-;;2346:151;:::o;2411:235:1:-;2483:7;2502:13;2518:7;:16;2526:7;2518:16;;;;;;;;;;;;;;;;;;;;;2502:32;;2569:1;2552:19;;:5;:19;;;;2544:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2634:5;2627:12;;;2411:235;;;:::o;485:24:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2149:205:1:-;2221:7;2265:1;2248:19;;:5;:19;;;;2240:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2331:9;:16;2341:5;2331:16;;;;;;;;;;;;;;;;2324:23;;2149:205;;;:::o;1608:101:12:-;1199:12;:10;:12::i;:::-;1188:23;;:7;:5;:7::i;:::-;:23;;;1180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1672:30:::1;1699:1;1672:18;:30::i;:::-;1608:101::o:0;976:85::-;1022:7;1048:6;;;;;;;;;;;1041:13;;976:85;:::o;414:26:11:-;;;;;;;;;;;;;:::o;1868:95::-;1199:12:12;:10;:12::i;:::-;1188:23;;:7;:5;:7::i;:::-;:23;;;1180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1945:10:11::1;1935:7;:20;;;;1868:95:::0;:::o;2870:102:1:-;2926:13;2958:7;2951:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2870:102;:::o;4504:153::-;4598:52;4617:12;:10;:12::i;:::-;4631:8;4641;4598:18;:52::i;:::-;4504:153;;:::o;1149:149:11:-;1199:12:12;:10;:12::i;:::-;1188:23;;:7;:5;:7::i;:::-;:23;;;1180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1244:1:11::1;1224:22;;:8;:22;;;;1216:31;;;::::0;::::1;;1277:5;1257:7;:17;1265:8;1257:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;1149:149:::0;:::o;985:154::-;1199:12:12;:10;:12::i;:::-;1188:23;;:7;:5;:7::i;:::-;:23;;;1180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1087:1:11::1;1067:22;;:8;:22;;;;1059:31;;;::::0;::::1;;1120:4;1100:7;:17;1108:8;1100:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;985:154:::0;:::o;5588:320:1:-;5757:41;5776:12;:10;:12::i;:::-;5790:7;5757:18;:41::i;:::-;5749:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5862:39;5876:4;5882:2;5886:7;5895:5;5862:13;:39::i;:::-;5588:320;;;;:::o;3039:329::-;3112:13;3145:16;3153:7;3145;:16::i;:::-;3137:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3224:21;3248:10;:8;:10::i;:::-;3224:34;;3299:1;3281:7;3275:21;:25;:86;;;;;;;;;;;;;;;;;3327:7;3336:18;:7;:16;:18::i;:::-;3310:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3275:86;3268:93;;;3039:329;;;:::o;3099:111:11:-;3150:4;3181:10;:20;3192:8;3181:20;;;;;;;;;;;;;;;;;;;;;3174:27;;3099:111;;;:::o;4723:162:1:-;4820:4;4843:18;:25;4862:5;4843:25;;;;;;;;;;;;;;;:35;4869:8;4843:35;;;;;;;;;;;;;;;;;;;;;;;;;4836:42;;4723:162;;;;:::o;265:32:11:-;;;;;;;;;;;;;:::o;1306:131::-;1375:7;:21;1383:12;:10;:12::i;:::-;1375:21;;;;;;;;;;;;;;;;;;;;;;;;;1367:30;;;;;;1421:9;1407:11;;:23;;;;;;;;;;;;;;;;;;1306:131;:::o;4758:177::-;1199:12:12;:10;:12::i;:::-;1188:23;;:7;:5;:7::i;:::-;:23;;;1180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4867:1:11::1;4847:22;;:8;:22;;;;4839:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;4899:28;4918:8;4899:18;:28::i;:::-;4758:177:::0;:::o;518:39::-;;;;;;;;;;;;;;;;;:::o;2632:114::-;1199:12:12;:10;:12::i;:::-;1188:23;;:7;:5;:7::i;:::-;:23;;;1180:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2725:10:11::1;2712;:23;;;;;;;;;;;;:::i;:::-;;2632:114:::0;:::o;911:222:2:-;1013:4;1051:35;1036:50;;;:11;:50;;;;:90;;;;1090:36;1114:11;1090:23;:36::i;:::-;1036:90;1029:97;;911:222;;;:::o;7380:125:1:-;7445:4;7496:1;7468:30;;:7;:16;7476:7;7468:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7461:37;;7380:125;;;:::o;640:96:10:-;693:7;719:10;712:17;;640:96;:::o;11389:171:1:-;11490:2;11463:15;:24;11479:7;11463:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11545:7;11541:2;11507:46;;11516:23;11531:7;11516:14;:23::i;:::-;11507:46;;;;;;;;;;;;11389:171;;:::o;8337:108::-;8412:26;8422:2;8426:7;8412:26;;;;;;;;;;;;:9;:26::i;:::-;8337:108;;:::o;7663:344::-;7756:4;7780:16;7788:7;7780;:16::i;:::-;7772:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7855:13;7871:23;7886:7;7871:14;:23::i;:::-;7855:39;;7923:5;7912:16;;:7;:16;;;:51;;;;7956:7;7932:31;;:20;7944:7;7932:11;:20::i;:::-;:31;;;7912:51;:87;;;;7967:32;7984:5;7991:7;7967:16;:32::i;:::-;7912:87;7904:96;;;7663:344;;;;:::o;10673:605::-;10827:4;10800:31;;:23;10815:7;10800:14;:23::i;:::-;:31;;;10792:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10905:1;10891:16;;:2;:16;;;;10883:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10959:39;10980:4;10986:2;10990:7;10959:20;:39::i;:::-;11060:29;11077:1;11081:7;11060:8;:29::i;:::-;11119:1;11100:9;:15;11110:4;11100:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11147:1;11130:9;:13;11140:2;11130:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11177:2;11158:7;:16;11166:7;11158:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11214:7;11210:2;11195:27;;11204:4;11195:27;;;;;;;;;;;;11233:38;11253:4;11259:2;11263:7;11233:19;:38::i;:::-;10673:605;;;:::o;9943:406::-;10002:13;10018:23;10033:7;10018:14;:23::i;:::-;10002:39;;10052:48;10073:5;10088:1;10092:7;10052:20;:48::i;:::-;10138:29;10155:1;10159:7;10138:8;:29::i;:::-;10198:1;10178:9;:16;10188:5;10178:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;10216:7;:16;10224:7;10216:16;;;;;;;;;;;;10209:23;;;;;;;;;;;10276:7;10272:1;10248:36;;10257:5;10248:36;;;;;;;;;;;;10295:47;10315:5;10330:1;10334:7;10295:19;:47::i;:::-;9992:357;9943:406;:::o;2210:187:12:-;2283:16;2302:6;;;;;;;;;;;2283:25;;2327:8;2318:6;;:17;;;;;;;;;;;;;;;;;;2381:8;2350:40;;2371:8;2350:40;;;;;;;;;;;;2273:124;2210:187;:::o;11695:307:1:-;11845:8;11836:17;;:5;:17;;;;11828:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11931:8;11893:18;:25;11912:5;11893:25;;;;;;;;;;;;;;;:35;11919:8;11893:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11976:8;11954:41;;11969:5;11954:41;;;11986:8;11954:41;;;;;;:::i;:::-;;;;;;;;11695:307;;;:::o;6770:::-;6921:28;6931:4;6937:2;6941:7;6921:9;:28::i;:::-;6967:48;6990:4;6996:2;7000:7;7009:5;6967:22;:48::i;:::-;6959:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6770:307;;;;:::o;2503:123:11:-;2563:13;2599:16;2592:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2503:123;:::o;328:703:13:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;1532:361:1:-;1634:4;1684:25;1669:40;;;:11;:40;;;;:104;;;;1740:33;1725:48;;;:11;:48;;;;1669:104;:161;;;;1804:26;1789:41;;;:11;:41;;;;1669:161;:217;;;;1861:25;1846:40;;;:11;:40;;;;1669:217;1650:236;;1532:361;;;:::o;8666:311::-;8791:18;8797:2;8801:7;8791:5;:18::i;:::-;8840:54;8871:1;8875:2;8879:7;8888:5;8840:22;:54::i;:::-;8819:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8666:311;;;:::o;1970:187:11:-;2101:45;2128:4;2134:2;2138:7;2101:26;:45::i;:::-;1970:187;;;:::o;14397:121:1:-;;;;:::o;12555:778::-;12705:4;12725:15;:2;:13;;;:15::i;:::-;12721:606;;;12776:2;12760:36;;;12797:12;:10;:12::i;:::-;12811:4;12817:7;12826:5;12760:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12756:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13016:1;12999:6;:13;:18;12995:266;;;13041:60;;;;;;;;;;:::i;:::-;;;;;;;;12995:266;13213:6;13207:13;13198:6;13194:2;13190:15;13183:38;12756:519;12892:41;;;12882:51;;;:6;:51;;;;12875:58;;;;;12721:606;13312:4;13305:11;;12555:778;;;;;;;:::o;9299:427::-;9392:1;9378:16;;:2;:16;;;;9370:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9450:16;9458:7;9450;:16::i;:::-;9449:17;9441:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9510:45;9539:1;9543:2;9547:7;9510:20;:45::i;:::-;9583:1;9566:9;:13;9576:2;9566:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9613:2;9594:7;:16;9602:7;9594:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9656:7;9652:2;9631:33;;9648:1;9631:33;;;;;;;;;;;;9675:44;9703:1;9707:2;9711:7;9675:19;:44::i;:::-;9299:427;;:::o;2545:572:2:-;2684:45;2711:4;2717:2;2721:7;2684:26;:45::i;:::-;2760:1;2744:18;;:4;:18;;;2740:183;;;2778:40;2810:7;2778:31;:40::i;:::-;2740:183;;;2847:2;2839:10;;:4;:10;;;2835:88;;2865:47;2898:4;2904:7;2865:32;:47::i;:::-;2835:88;2740:183;2950:1;2936:16;;:2;:16;;;2932:179;;;2968:45;3005:7;2968:36;:45::i;:::-;2932:179;;;3040:4;3034:10;;:2;:10;;;3030:81;;3060:40;3088:2;3092:7;3060:27;:40::i;:::-;3030:81;2932:179;2545:572;;;:::o;1160:320:9:-;1220:4;1472:1;1450:7;:19;;;:23;1443:30;;1160:320;;;:::o;13895:122:1:-;;;;:::o;3823:161:2:-;3926:10;:17;;;;3899:15;:24;3915:7;3899:24;;;;;;;;;;;:44;;;;3953:10;3969:7;3953:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3823:161;:::o;4601:970::-;4863:22;4913:1;4888:22;4905:4;4888:16;:22::i;:::-;:26;;;;:::i;:::-;4863:51;;4924:18;4945:17;:26;4963:7;4945:26;;;;;;;;;;;;4924:47;;5089:14;5075:10;:28;5071:323;;5119:19;5141:12;:18;5154:4;5141:18;;;;;;;;;;;;;;;:34;5160:14;5141:34;;;;;;;;;;;;5119:56;;5223:11;5190:12;:18;5203:4;5190:18;;;;;;;;;;;;;;;:30;5209:10;5190:30;;;;;;;;;;;:44;;;;5339:10;5306:17;:30;5324:11;5306:30;;;;;;;;;;;:43;;;;5105:289;5071:323;5487:17;:26;5505:7;5487:26;;;;;;;;;;;5480:33;;;5530:12;:18;5543:4;5530:18;;;;;;;;;;;;;;;:34;5549:14;5530:34;;;;;;;;;;;5523:41;;;4682:889;;4601:970;;:::o;5859:1061::-;6108:22;6153:1;6133:10;:17;;;;:21;;;;:::i;:::-;6108:46;;6164:18;6185:15;:24;6201:7;6185:24;;;;;;;;;;;;6164:45;;6531:19;6553:10;6564:14;6553:26;;;;;;;;:::i;:::-;;;;;;;;;;6531:48;;6615:11;6590:10;6601;6590:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6725:10;6694:15;:28;6710:11;6694:28;;;;;;;;;;;:41;;;;6863:15;:24;6879:7;6863:24;;;;;;;;;;;6856:31;;;6897:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5930:990;;;5859:1061;:::o;3411:217::-;3495:14;3512:20;3529:2;3512:16;:20::i;:::-;3495:37;;3569:7;3542:12;:16;3555:2;3542:16;;;;;;;;;;;;;;;:24;3559:6;3542:24;;;;;;;;;;;:34;;;;3615:6;3586:17;:26;3604:7;3586:26;;;;;;;;;;;:35;;;;3485:143;3411:217;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:14:-;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:327::-;5827:6;5876:2;5864:9;5855:7;5851:23;5847:32;5844:119;;;5882:79;;:::i;:::-;5844:119;6002:1;6027:52;6071:7;6062:6;6051:9;6047:22;6027:52;:::i;:::-;6017:62;;5973:116;5769:327;;;;:::o;6102:349::-;6171:6;6220:2;6208:9;6199:7;6195:23;6191:32;6188:119;;;6226:79;;:::i;:::-;6188:119;6346:1;6371:63;6426:7;6417:6;6406:9;6402:22;6371:63;:::i;:::-;6361:73;;6317:127;6102:349;;;;:::o;6457:509::-;6526:6;6575:2;6563:9;6554:7;6550:23;6546:32;6543:119;;;6581:79;;:::i;:::-;6543:119;6729:1;6718:9;6714:17;6701:31;6759:18;6751:6;6748:30;6745:117;;;6781:79;;:::i;:::-;6745:117;6886:63;6941:7;6932:6;6921:9;6917:22;6886:63;:::i;:::-;6876:73;;6672:287;6457:509;;;;:::o;6972:329::-;7031:6;7080:2;7068:9;7059:7;7055:23;7051:32;7048:119;;;7086:79;;:::i;:::-;7048:119;7206:1;7231:53;7276:7;7267:6;7256:9;7252:22;7231:53;:::i;:::-;7221:63;;7177:117;6972:329;;;;:::o;7307:351::-;7377:6;7426:2;7414:9;7405:7;7401:23;7397:32;7394:119;;;7432:79;;:::i;:::-;7394:119;7552:1;7577:64;7633:7;7624:6;7613:9;7609:22;7577:64;:::i;:::-;7567:74;;7523:128;7307:351;;;;:::o;7664:474::-;7732:6;7740;7789:2;7777:9;7768:7;7764:23;7760:32;7757:119;;;7795:79;;:::i;:::-;7757:119;7915:1;7940:53;7985:7;7976:6;7965:9;7961:22;7940:53;:::i;:::-;7930:63;;7886:117;8042:2;8068:53;8113:7;8104:6;8093:9;8089:22;8068:53;:::i;:::-;8058:63;;8013:118;7664:474;;;;;:::o;8144:::-;8212:6;8220;8269:2;8257:9;8248:7;8244:23;8240:32;8237:119;;;8275:79;;:::i;:::-;8237:119;8395:1;8420:53;8465:7;8456:6;8445:9;8441:22;8420:53;:::i;:::-;8410:63;;8366:117;8522:2;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8493:118;8144:474;;;;;:::o;8624:118::-;8711:24;8729:5;8711:24;:::i;:::-;8706:3;8699:37;8624:118;;:::o;8748:109::-;8829:21;8844:5;8829:21;:::i;:::-;8824:3;8817:34;8748:109;;:::o;8863:360::-;8949:3;8977:38;9009:5;8977:38;:::i;:::-;9031:70;9094:6;9089:3;9031:70;:::i;:::-;9024:77;;9110:52;9155:6;9150:3;9143:4;9136:5;9132:16;9110:52;:::i;:::-;9187:29;9209:6;9187:29;:::i;:::-;9182:3;9178:39;9171:46;;8953:270;8863:360;;;;:::o;9229:364::-;9317:3;9345:39;9378:5;9345:39;:::i;:::-;9400:71;9464:6;9459:3;9400:71;:::i;:::-;9393:78;;9480:52;9525:6;9520:3;9513:4;9506:5;9502:16;9480:52;:::i;:::-;9557:29;9579:6;9557:29;:::i;:::-;9552:3;9548:39;9541:46;;9321:272;9229:364;;;;:::o;9599:377::-;9705:3;9733:39;9766:5;9733:39;:::i;:::-;9788:89;9870:6;9865:3;9788:89;:::i;:::-;9781:96;;9886:52;9931:6;9926:3;9919:4;9912:5;9908:16;9886:52;:::i;:::-;9963:6;9958:3;9954:16;9947:23;;9709:267;9599:377;;;;:::o;9982:365::-;10124:3;10145:66;10209:1;10204:3;10145:66;:::i;:::-;10138:73;;10220:93;10309:3;10220:93;:::i;:::-;10338:2;10333:3;10329:12;10322:19;;9982:365;;;:::o;10353:366::-;10495:3;10516:67;10580:2;10575:3;10516:67;:::i;:::-;10509:74;;10592:93;10681:3;10592:93;:::i;:::-;10710:2;10705:3;10701:12;10694:19;;10353:366;;;:::o;10725:::-;10867:3;10888:67;10952:2;10947:3;10888:67;:::i;:::-;10881:74;;10964:93;11053:3;10964:93;:::i;:::-;11082:2;11077:3;11073:12;11066:19;;10725:366;;;:::o;11097:::-;11239:3;11260:67;11324:2;11319:3;11260:67;:::i;:::-;11253:74;;11336:93;11425:3;11336:93;:::i;:::-;11454:2;11449:3;11445:12;11438:19;;11097:366;;;:::o;11469:::-;11611:3;11632:67;11696:2;11691:3;11632:67;:::i;:::-;11625:74;;11708:93;11797:3;11708:93;:::i;:::-;11826:2;11821:3;11817:12;11810:19;;11469:366;;;:::o;11841:365::-;11983:3;12004:66;12068:1;12063:3;12004:66;:::i;:::-;11997:73;;12079:93;12168:3;12079:93;:::i;:::-;12197:2;12192:3;12188:12;12181:19;;11841:365;;;:::o;12212:366::-;12354:3;12375:67;12439:2;12434:3;12375:67;:::i;:::-;12368:74;;12451:93;12540:3;12451:93;:::i;:::-;12569:2;12564:3;12560:12;12553:19;;12212:366;;;:::o;12584:::-;12726:3;12747:67;12811:2;12806:3;12747:67;:::i;:::-;12740:74;;12823:93;12912:3;12823:93;:::i;:::-;12941:2;12936:3;12932:12;12925:19;;12584:366;;;:::o;12956:365::-;13098:3;13119:66;13183:1;13178:3;13119:66;:::i;:::-;13112:73;;13194:93;13283:3;13194:93;:::i;:::-;13312:2;13307:3;13303:12;13296:19;;12956:365;;;:::o;13327:::-;13469:3;13490:66;13554:1;13549:3;13490:66;:::i;:::-;13483:73;;13565:93;13654:3;13565:93;:::i;:::-;13683:2;13678:3;13674:12;13667:19;;13327:365;;;:::o;13698:366::-;13840:3;13861:67;13925:2;13920:3;13861:67;:::i;:::-;13854:74;;13937:93;14026:3;13937:93;:::i;:::-;14055:2;14050:3;14046:12;14039:19;;13698:366;;;:::o;14070:::-;14212:3;14233:67;14297:2;14292:3;14233:67;:::i;:::-;14226:74;;14309:93;14398:3;14309:93;:::i;:::-;14427:2;14422:3;14418:12;14411:19;;14070:366;;;:::o;14442:::-;14584:3;14605:67;14669:2;14664:3;14605:67;:::i;:::-;14598:74;;14681:93;14770:3;14681:93;:::i;:::-;14799:2;14794:3;14790:12;14783:19;;14442:366;;;:::o;14814:::-;14956:3;14977:67;15041:2;15036:3;14977:67;:::i;:::-;14970:74;;15053:93;15142:3;15053:93;:::i;:::-;15171:2;15166:3;15162:12;15155:19;;14814:366;;;:::o;15186:::-;15328:3;15349:67;15413:2;15408:3;15349:67;:::i;:::-;15342:74;;15425:93;15514:3;15425:93;:::i;:::-;15543:2;15538:3;15534:12;15527:19;;15186:366;;;:::o;15558:::-;15700:3;15721:67;15785:2;15780:3;15721:67;:::i;:::-;15714:74;;15797:93;15886:3;15797:93;:::i;:::-;15915:2;15910:3;15906:12;15899:19;;15558:366;;;:::o;15930:::-;16072:3;16093:67;16157:2;16152:3;16093:67;:::i;:::-;16086:74;;16169:93;16258:3;16169:93;:::i;:::-;16287:2;16282:3;16278:12;16271:19;;15930:366;;;:::o;16302:::-;16444:3;16465:67;16529:2;16524:3;16465:67;:::i;:::-;16458:74;;16541:93;16630:3;16541:93;:::i;:::-;16659:2;16654:3;16650:12;16643:19;;16302:366;;;:::o;16674:::-;16816:3;16837:67;16901:2;16896:3;16837:67;:::i;:::-;16830:74;;16913:93;17002:3;16913:93;:::i;:::-;17031:2;17026:3;17022:12;17015:19;;16674:366;;;:::o;17046:365::-;17188:3;17209:66;17273:1;17268:3;17209:66;:::i;:::-;17202:73;;17284:93;17373:3;17284:93;:::i;:::-;17402:2;17397:3;17393:12;17386:19;;17046:365;;;:::o;17417:366::-;17559:3;17580:67;17644:2;17639:3;17580:67;:::i;:::-;17573:74;;17656:93;17745:3;17656:93;:::i;:::-;17774:2;17769:3;17765:12;17758:19;;17417:366;;;:::o;17789:365::-;17931:3;17952:66;18016:1;18011:3;17952:66;:::i;:::-;17945:73;;18027:93;18116:3;18027:93;:::i;:::-;18145:2;18140:3;18136:12;18129:19;;17789:365;;;:::o;18160:366::-;18302:3;18323:67;18387:2;18382:3;18323:67;:::i;:::-;18316:74;;18399:93;18488:3;18399:93;:::i;:::-;18517:2;18512:3;18508:12;18501:19;;18160:366;;;:::o;18532:::-;18674:3;18695:67;18759:2;18754:3;18695:67;:::i;:::-;18688:74;;18771:93;18860:3;18771:93;:::i;:::-;18889:2;18884:3;18880:12;18873:19;;18532:366;;;:::o;18904:118::-;18991:24;19009:5;18991:24;:::i;:::-;18986:3;18979:37;18904:118;;:::o;19028:435::-;19208:3;19230:95;19321:3;19312:6;19230:95;:::i;:::-;19223:102;;19342:95;19433:3;19424:6;19342:95;:::i;:::-;19335:102;;19454:3;19447:10;;19028:435;;;;;:::o;19469:222::-;19562:4;19600:2;19589:9;19585:18;19577:26;;19613:71;19681:1;19670:9;19666:17;19657:6;19613:71;:::i;:::-;19469:222;;;;:::o;19697:640::-;19892:4;19930:3;19919:9;19915:19;19907:27;;19944:71;20012:1;20001:9;19997:17;19988:6;19944:71;:::i;:::-;20025:72;20093:2;20082:9;20078:18;20069:6;20025:72;:::i;:::-;20107;20175:2;20164:9;20160:18;20151:6;20107:72;:::i;:::-;20226:9;20220:4;20216:20;20211:2;20200:9;20196:18;20189:48;20254:76;20325:4;20316:6;20254:76;:::i;:::-;20246:84;;19697:640;;;;;;;:::o;20343:332::-;20464:4;20502:2;20491:9;20487:18;20479:26;;20515:71;20583:1;20572:9;20568:17;20559:6;20515:71;:::i;:::-;20596:72;20664:2;20653:9;20649:18;20640:6;20596:72;:::i;:::-;20343:332;;;;;:::o;20681:210::-;20768:4;20806:2;20795:9;20791:18;20783:26;;20819:65;20881:1;20870:9;20866:17;20857:6;20819:65;:::i;:::-;20681:210;;;;:::o;20897:313::-;21010:4;21048:2;21037:9;21033:18;21025:26;;21097:9;21091:4;21087:20;21083:1;21072:9;21068:17;21061:47;21125:78;21198:4;21189:6;21125:78;:::i;:::-;21117:86;;20897:313;;;;:::o;21216:419::-;21382:4;21420:2;21409:9;21405:18;21397:26;;21469:9;21463:4;21459:20;21455:1;21444:9;21440:17;21433:47;21497:131;21623:4;21497:131;:::i;:::-;21489:139;;21216:419;;;:::o;21641:::-;21807:4;21845:2;21834:9;21830:18;21822:26;;21894:9;21888:4;21884:20;21880:1;21869:9;21865:17;21858:47;21922:131;22048:4;21922:131;:::i;:::-;21914:139;;21641:419;;;:::o;22066:::-;22232:4;22270:2;22259:9;22255:18;22247:26;;22319:9;22313:4;22309:20;22305:1;22294:9;22290:17;22283:47;22347:131;22473:4;22347:131;:::i;:::-;22339:139;;22066:419;;;:::o;22491:::-;22657:4;22695:2;22684:9;22680:18;22672:26;;22744:9;22738:4;22734:20;22730:1;22719:9;22715:17;22708:47;22772:131;22898:4;22772:131;:::i;:::-;22764:139;;22491:419;;;:::o;22916:::-;23082:4;23120:2;23109:9;23105:18;23097:26;;23169:9;23163:4;23159:20;23155:1;23144:9;23140:17;23133:47;23197:131;23323:4;23197:131;:::i;:::-;23189:139;;22916:419;;;:::o;23341:::-;23507:4;23545:2;23534:9;23530:18;23522:26;;23594:9;23588:4;23584:20;23580:1;23569:9;23565:17;23558:47;23622:131;23748:4;23622:131;:::i;:::-;23614:139;;23341:419;;;:::o;23766:::-;23932:4;23970:2;23959:9;23955:18;23947:26;;24019:9;24013:4;24009:20;24005:1;23994:9;23990:17;23983:47;24047:131;24173:4;24047:131;:::i;:::-;24039:139;;23766:419;;;:::o;24191:::-;24357:4;24395:2;24384:9;24380:18;24372:26;;24444:9;24438:4;24434:20;24430:1;24419:9;24415:17;24408:47;24472:131;24598:4;24472:131;:::i;:::-;24464:139;;24191:419;;;:::o;24616:::-;24782:4;24820:2;24809:9;24805:18;24797:26;;24869:9;24863:4;24859:20;24855:1;24844:9;24840:17;24833:47;24897:131;25023:4;24897:131;:::i;:::-;24889:139;;24616:419;;;:::o;25041:::-;25207:4;25245:2;25234:9;25230:18;25222:26;;25294:9;25288:4;25284:20;25280:1;25269:9;25265:17;25258:47;25322:131;25448:4;25322:131;:::i;:::-;25314:139;;25041:419;;;:::o;25466:::-;25632:4;25670:2;25659:9;25655:18;25647:26;;25719:9;25713:4;25709:20;25705:1;25694:9;25690:17;25683:47;25747:131;25873:4;25747:131;:::i;:::-;25739:139;;25466:419;;;:::o;25891:::-;26057:4;26095:2;26084:9;26080:18;26072:26;;26144:9;26138:4;26134:20;26130:1;26119:9;26115:17;26108:47;26172:131;26298:4;26172:131;:::i;:::-;26164:139;;25891:419;;;:::o;26316:::-;26482:4;26520:2;26509:9;26505:18;26497:26;;26569:9;26563:4;26559:20;26555:1;26544:9;26540:17;26533:47;26597:131;26723:4;26597:131;:::i;:::-;26589:139;;26316:419;;;:::o;26741:::-;26907:4;26945:2;26934:9;26930:18;26922:26;;26994:9;26988:4;26984:20;26980:1;26969:9;26965:17;26958:47;27022:131;27148:4;27022:131;:::i;:::-;27014:139;;26741:419;;;:::o;27166:::-;27332:4;27370:2;27359:9;27355:18;27347:26;;27419:9;27413:4;27409:20;27405:1;27394:9;27390:17;27383:47;27447:131;27573:4;27447:131;:::i;:::-;27439:139;;27166:419;;;:::o;27591:::-;27757:4;27795:2;27784:9;27780:18;27772:26;;27844:9;27838:4;27834:20;27830:1;27819:9;27815:17;27808:47;27872:131;27998:4;27872:131;:::i;:::-;27864:139;;27591:419;;;:::o;28016:::-;28182:4;28220:2;28209:9;28205:18;28197:26;;28269:9;28263:4;28259:20;28255:1;28244:9;28240:17;28233:47;28297:131;28423:4;28297:131;:::i;:::-;28289:139;;28016:419;;;:::o;28441:::-;28607:4;28645:2;28634:9;28630:18;28622:26;;28694:9;28688:4;28684:20;28680:1;28669:9;28665:17;28658:47;28722:131;28848:4;28722:131;:::i;:::-;28714:139;;28441:419;;;:::o;28866:::-;29032:4;29070:2;29059:9;29055:18;29047:26;;29119:9;29113:4;29109:20;29105:1;29094:9;29090:17;29083:47;29147:131;29273:4;29147:131;:::i;:::-;29139:139;;28866:419;;;:::o;29291:::-;29457:4;29495:2;29484:9;29480:18;29472:26;;29544:9;29538:4;29534:20;29530:1;29519:9;29515:17;29508:47;29572:131;29698:4;29572:131;:::i;:::-;29564:139;;29291:419;;;:::o;29716:::-;29882:4;29920:2;29909:9;29905:18;29897:26;;29969:9;29963:4;29959:20;29955:1;29944:9;29940:17;29933:47;29997:131;30123:4;29997:131;:::i;:::-;29989:139;;29716:419;;;:::o;30141:::-;30307:4;30345:2;30334:9;30330:18;30322:26;;30394:9;30388:4;30384:20;30380:1;30369:9;30365:17;30358:47;30422:131;30548:4;30422:131;:::i;:::-;30414:139;;30141:419;;;:::o;30566:::-;30732:4;30770:2;30759:9;30755:18;30747:26;;30819:9;30813:4;30809:20;30805:1;30794:9;30790:17;30783:47;30847:131;30973:4;30847:131;:::i;:::-;30839:139;;30566:419;;;:::o;30991:::-;31157:4;31195:2;31184:9;31180:18;31172:26;;31244:9;31238:4;31234:20;31230:1;31219:9;31215:17;31208:47;31272:131;31398:4;31272:131;:::i;:::-;31264:139;;30991:419;;;:::o;31416:222::-;31509:4;31547:2;31536:9;31532:18;31524:26;;31560:71;31628:1;31617:9;31613:17;31604:6;31560:71;:::i;:::-;31416:222;;;;:::o;31644:129::-;31678:6;31705:20;;:::i;:::-;31695:30;;31734:33;31762:4;31754:6;31734:33;:::i;:::-;31644:129;;;:::o;31779:75::-;31812:6;31845:2;31839:9;31829:19;;31779:75;:::o;31860:307::-;31921:4;32011:18;32003:6;32000:30;31997:56;;;32033:18;;:::i;:::-;31997:56;32071:29;32093:6;32071:29;:::i;:::-;32063:37;;32155:4;32149;32145:15;32137:23;;31860:307;;;:::o;32173:308::-;32235:4;32325:18;32317:6;32314:30;32311:56;;;32347:18;;:::i;:::-;32311:56;32385:29;32407:6;32385:29;:::i;:::-;32377:37;;32469:4;32463;32459:15;32451:23;;32173:308;;;:::o;32487:98::-;32538:6;32572:5;32566:12;32556:22;;32487:98;;;:::o;32591:99::-;32643:6;32677:5;32671:12;32661:22;;32591:99;;;:::o;32696:168::-;32779:11;32813:6;32808:3;32801:19;32853:4;32848:3;32844:14;32829:29;;32696:168;;;;:::o;32870:169::-;32954:11;32988:6;32983:3;32976:19;33028:4;33023:3;33019:14;33004:29;;32870:169;;;;:::o;33045:148::-;33147:11;33184:3;33169:18;;33045:148;;;;:::o;33199:305::-;33239:3;33258:20;33276:1;33258:20;:::i;:::-;33253:25;;33292:20;33310:1;33292:20;:::i;:::-;33287:25;;33446:1;33378:66;33374:74;33371:1;33368:81;33365:107;;;33452:18;;:::i;:::-;33365:107;33496:1;33493;33489:9;33482:16;;33199:305;;;;:::o;33510:185::-;33550:1;33567:20;33585:1;33567:20;:::i;:::-;33562:25;;33601:20;33619:1;33601:20;:::i;:::-;33596:25;;33640:1;33630:35;;33645:18;;:::i;:::-;33630:35;33687:1;33684;33680:9;33675:14;;33510:185;;;;:::o;33701:348::-;33741:7;33764:20;33782:1;33764:20;:::i;:::-;33759:25;;33798:20;33816:1;33798:20;:::i;:::-;33793:25;;33986:1;33918:66;33914:74;33911:1;33908:81;33903:1;33896:9;33889:17;33885:105;33882:131;;;33993:18;;:::i;:::-;33882:131;34041:1;34038;34034:9;34023:20;;33701:348;;;;:::o;34055:191::-;34095:4;34115:20;34133:1;34115:20;:::i;:::-;34110:25;;34149:20;34167:1;34149:20;:::i;:::-;34144:25;;34188:1;34185;34182:8;34179:34;;;34193:18;;:::i;:::-;34179:34;34238:1;34235;34231:9;34223:17;;34055:191;;;;:::o;34252:96::-;34289:7;34318:24;34336:5;34318:24;:::i;:::-;34307:35;;34252:96;;;:::o;34354:90::-;34388:7;34431:5;34424:13;34417:21;34406:32;;34354:90;;;:::o;34450:149::-;34486:7;34526:66;34519:5;34515:78;34504:89;;34450:149;;;:::o;34605:126::-;34642:7;34682:42;34675:5;34671:54;34660:65;;34605:126;;;:::o;34737:77::-;34774:7;34803:5;34792:16;;34737:77;;;:::o;34820:154::-;34904:6;34899:3;34894;34881:30;34966:1;34957:6;34952:3;34948:16;34941:27;34820:154;;;:::o;34980:307::-;35048:1;35058:113;35072:6;35069:1;35066:13;35058:113;;;35157:1;35152:3;35148:11;35142:18;35138:1;35133:3;35129:11;35122:39;35094:2;35091:1;35087:10;35082:15;;35058:113;;;35189:6;35186:1;35183:13;35180:101;;;35269:1;35260:6;35255:3;35251:16;35244:27;35180:101;35029:258;34980:307;;;:::o;35293:320::-;35337:6;35374:1;35368:4;35364:12;35354:22;;35421:1;35415:4;35411:12;35442:18;35432:81;;35498:4;35490:6;35486:17;35476:27;;35432:81;35560:2;35552:6;35549:14;35529:18;35526:38;35523:84;;;35579:18;;:::i;:::-;35523:84;35344:269;35293:320;;;:::o;35619:281::-;35702:27;35724:4;35702:27;:::i;:::-;35694:6;35690:40;35832:6;35820:10;35817:22;35796:18;35784:10;35781:34;35778:62;35775:88;;;35843:18;;:::i;:::-;35775:88;35883:10;35879:2;35872:22;35662:238;35619:281;;:::o;35906:233::-;35945:3;35968:24;35986:5;35968:24;:::i;:::-;35959:33;;36014:66;36007:5;36004:77;36001:103;;;36084:18;;:::i;:::-;36001:103;36131:1;36124:5;36120:13;36113:20;;35906:233;;;:::o;36145:176::-;36177:1;36194:20;36212:1;36194:20;:::i;:::-;36189:25;;36228:20;36246:1;36228:20;:::i;:::-;36223:25;;36267:1;36257:35;;36272:18;;:::i;:::-;36257:35;36313:1;36310;36306:9;36301:14;;36145:176;;;;:::o;36327:180::-;36375:77;36372:1;36365:88;36472:4;36469:1;36462:15;36496:4;36493:1;36486:15;36513:180;36561:77;36558:1;36551:88;36658:4;36655:1;36648:15;36682:4;36679:1;36672:15;36699:180;36747:77;36744:1;36737:88;36844:4;36841:1;36834:15;36868:4;36865:1;36858:15;36885:180;36933:77;36930:1;36923:88;37030:4;37027:1;37020:15;37054:4;37051:1;37044:15;37071:180;37119:77;37116:1;37109:88;37216:4;37213:1;37206:15;37240:4;37237:1;37230:15;37257:180;37305:77;37302:1;37295:88;37402:4;37399:1;37392:15;37426:4;37423:1;37416:15;37443:117;37552:1;37549;37542:12;37566:117;37675:1;37672;37665:12;37689:117;37798:1;37795;37788:12;37812:117;37921:1;37918;37911:12;37935:102;37976:6;38027:2;38023:7;38018:2;38011:5;38007:14;38003:28;37993:38;;37935:102;;;:::o;38043:157::-;38183:9;38179:1;38171:6;38167:14;38160:33;38043:157;:::o;38206:230::-;38346:34;38342:1;38334:6;38330:14;38323:58;38415:13;38410:2;38402:6;38398:15;38391:38;38206:230;:::o;38442:237::-;38582:34;38578:1;38570:6;38566:14;38559:58;38651:20;38646:2;38638:6;38634:15;38627:45;38442:237;:::o;38685:224::-;38825:34;38821:1;38813:6;38809:14;38802:58;38894:7;38889:2;38881:6;38877:15;38870:32;38685:224;:::o;38915:178::-;39055:30;39051:1;39043:6;39039:14;39032:54;38915:178;:::o;39099:157::-;39239:9;39235:1;39227:6;39223:14;39216:33;39099:157;:::o;39262:223::-;39402:34;39398:1;39390:6;39386:14;39379:58;39471:6;39466:2;39458:6;39454:15;39447:31;39262:223;:::o;39491:175::-;39631:27;39627:1;39619:6;39615:14;39608:51;39491:175;:::o;39672:156::-;39812:8;39808:1;39800:6;39796:14;39789:32;39672:156;:::o;39834:158::-;39974:10;39970:1;39962:6;39958:14;39951:34;39834:158;:::o;39998:231::-;40138:34;40134:1;40126:6;40122:14;40115:58;40207:14;40202:2;40194:6;40190:15;40183:39;39998:231;:::o;40235:243::-;40375:34;40371:1;40363:6;40359:14;40352:58;40444:26;40439:2;40431:6;40427:15;40420:51;40235:243;:::o;40484:229::-;40624:34;40620:1;40612:6;40608:14;40601:58;40693:12;40688:2;40680:6;40676:15;40669:37;40484:229;:::o;40719:228::-;40859:34;40855:1;40847:6;40843:14;40836:58;40928:11;40923:2;40915:6;40911:15;40904:36;40719:228;:::o;40953:164::-;41093:16;41089:1;41081:6;41077:14;41070:40;40953:164;:::o;41123:182::-;41263:34;41259:1;41251:6;41247:14;41240:58;41123:182;:::o;41311:231::-;41451:34;41447:1;41439:6;41435:14;41428:58;41520:14;41515:2;41507:6;41503:15;41496:39;41311:231;:::o;41548:182::-;41688:34;41684:1;41676:6;41672:14;41665:58;41548:182;:::o;41736:234::-;41876:34;41872:1;41864:6;41860:14;41853:58;41945:17;41940:2;41932:6;41928:15;41921:42;41736:234;:::o;41976:157::-;42116:9;42112:1;42104:6;42100:14;42093:33;41976:157;:::o;42139:220::-;42279:34;42275:1;42267:6;42263:14;42256:58;42348:3;42343:2;42335:6;42331:15;42324:28;42139:220;:::o;42365:157::-;42505:9;42501:1;42493:6;42489:14;42482:33;42365:157;:::o;42528:236::-;42668:34;42664:1;42656:6;42652:14;42645:58;42737:19;42732:2;42724:6;42720:15;42713:44;42528:236;:::o;42770:231::-;42910:34;42906:1;42898:6;42894:14;42887:58;42979:14;42974:2;42966:6;42962:15;42955:39;42770:231;:::o;43007:122::-;43080:24;43098:5;43080:24;:::i;:::-;43073:5;43070:35;43060:63;;43119:1;43116;43109:12;43060:63;43007:122;:::o;43135:116::-;43205:21;43220:5;43205:21;:::i;:::-;43198:5;43195:32;43185:60;;43241:1;43238;43231:12;43185:60;43135:116;:::o;43257:120::-;43329:23;43346:5;43329:23;:::i;:::-;43322:5;43319:34;43309:62;;43367:1;43364;43357:12;43309:62;43257:120;:::o;43383:122::-;43456:24;43474:5;43456:24;:::i;:::-;43449:5;43446:35;43436:63;;43495:1;43492;43485:12;43436:63;43383:122;:::o

Swarm Source

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