ETH Price: $2,672.29 (+1.33%)

Token

The Sloth Tribe (SLOTHS)
 

Overview

Max Total Supply

961 SLOTHS

Holders

548

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SLOTHS
0xcb729fa0233908c375484e4bce5ed9214c787f06
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:
Sloth

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1500 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 13 of 14: Sloth.sol
pragma solidity ^0.8.4;
                                          
import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract Sloth is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public giftedAmount;
    uint256 public publicAmountMinted;
    uint256 public privateAmountMinted;
    uint256 public presalePurchaseLimit = 5;
    bool public presaleLive;
    bool public saleLive;
    bool public evolutionLive;
    bool public locked;

    bool public revealed = false; 

    uint256 public constant SLZ_GIFT = 200;
    uint256 public constant SLZ_PRIVATE = 400;
    uint256 public constant SLZ_PUBLIC = 8800;
    uint256 public constant SLZ_MAX = SLZ_GIFT + SLZ_PRIVATE + SLZ_PUBLIC;
    uint256 public constant SLZ_PRICE = 0.088 ether;
    uint256 public constant SLZ_PER_MINT = 10;
    
    mapping(address => bool) public presalerList;
    mapping(address => uint256) public presalerListPurchases;
    mapping(uint256 => bool) private evolved;
    
    string private _tokenBaseURI = "ipfs://QmToZAaU483ijUSiQtUyNEj1TsPQFZd2iEMqk1tWnrRWbK";
    string private _tokenEvolvedURI = "";

    constructor() ERC721("The Sloth Tribe", "SLOTHS") { }
    
    modifier notLocked {
        require(!locked, "Contract metadata methods are locked");
        _;
    }
    
    function addToPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            require(!presalerList[entry], "DUPLICATE_ENTRY");

            presalerList[entry] = true;
        }   
    }

    function removeFromPresaleList(address[] calldata entries) external onlyOwner {
        for(uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            
            presalerList[entry] = false;
        }
    }
    
    
    function buy(uint256 tokenQuantity) external payable {
        require(saleLive, "SALE_CLOSED");
        require(!presaleLive, "ONLY_PRESALE");
        require(totalSupply() < SLZ_MAX, "OUT_OF_STOCK");
        require(publicAmountMinted + tokenQuantity <= SLZ_PUBLIC, "EXCEED_PUBLIC");
        require(tokenQuantity <= SLZ_PER_MINT, "EXCEED_SLZ_PER_MINT");
        require(SLZ_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        
        for(uint256 i = 0; i < tokenQuantity; i++) {
            publicAmountMinted++;
            evolved[totalSupply() + 1] = false;
            _safeMint(msg.sender, totalSupply() + 1);
        }
        
    }
    
    function presaleBuy(uint256 tokenQuantity) external payable {
        require(!saleLive && presaleLive, "PRESALE_CLOSED");
        require(presalerList[msg.sender], "NOT_QUALIFIED");
        require(totalSupply() < SLZ_MAX, "OUT_OF_STOCK");
        require(privateAmountMinted + tokenQuantity <= SLZ_PRIVATE, "EXCEED_PRIVATE");
        require(presalerListPurchases[msg.sender] + tokenQuantity <= presalePurchaseLimit, "EXCEED_ALLOC");
        require(SLZ_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        
        for (uint256 i = 0; i < tokenQuantity; i++) {
            privateAmountMinted++;
            presalerListPurchases[msg.sender]++;
            evolved[totalSupply() + 1] = false;
            _safeMint(msg.sender, totalSupply() + 1);
        }
        
    }
    
    function evolve(uint256 tokenId) external payable {
        require(evolutionLive, "EVOLUTION_CLOSED");
        require(ownerOf(tokenId) == msg.sender);
        require(msg.value >= 0 ether);
        evolved[tokenId] = true; 
    }
    
    function send(address[] calldata receivers) external onlyOwner {
        require(totalSupply() + receivers.length <= SLZ_MAX, "MAX_MINT");
        require(giftedAmount + receivers.length <= SLZ_GIFT, "GIFTS_EMPTY");
        
        for (uint256 i = 0; i < receivers.length; i++) {
            giftedAmount++;
            _safeMint(receivers[i], totalSupply() + 1);
        }
    }
    
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
    
    function isPresaler(address addr) external view returns (bool) {
        return presalerList[addr];
    }
    
    function presalePurchasedCount(address addr) external view returns (uint256) {
        return presalerListPurchases[addr];
    }
    
    function lockMetadata() external onlyOwner {
        locked = true;
    }
    
    function togglePresaleStatus() external onlyOwner {
        presaleLive = !presaleLive;
    }
    
    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }
    
    function toggleEvolutionStatus() external onlyOwner {
        evolutionLive = !evolutionLive;
    }
    

    function setBaseURI(string calldata URI) external onlyOwner notLocked {
        _tokenBaseURI = URI;
        revealed = true;
    }
    
    function setEvolvedURI(string calldata URI) external onlyOwner notLocked {
        _tokenEvolvedURI = URI;
    }

    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        
        if (revealed && evolved[tokenId]) {
            return string(abi.encodePacked(_tokenEvolvedURI, tokenId.toString()));
        } 
        else if (revealed) {
            return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
        }else {
            return  _tokenBaseURI;
        }
        
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 3 of 14: ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 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 5 of 14: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

File 8 of 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;

import "./IERC721.sol";

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

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

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

File 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"SLZ_GIFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLZ_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLZ_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLZ_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLZ_PRIVATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLZ_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","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":"tokenQuantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"evolutionLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"evolve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isPresaler","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePurchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"presalePurchasedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalerListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"send","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setEvolvedURI","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":[],"name":"toggleEvolutionStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6005600e55600f805460ff60201b1916905560e060405260356080818152906200360160a03980516200003b916013916020909101906200014f565b506040805160208101918290526000908190526200005c916014916200014f565b503480156200006a57600080fd5b50604080518082018252600f81526e54686520536c6f746820547269626560881b602080830191825283518085019094526006845265534c4f54485360d01b908401528151919291620000c0916000916200014f565b508051620000d69060019060208401906200014f565b505050620000f3620000ed620000f960201b60201c565b620000fd565b62000232565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015d90620001f5565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600181811c908216806200020a57607f821691505b602082108114156200022c57634e487b7160e01b600052602260045260246000fd5b50919050565b6133bf80620002426000396000f3fe6080604052600436106103345760003560e01c80637b6f7768116101b0578063a22cb465116100ec578063d96a094a11610095578063e985e9c51161006f578063e985e9c5146108d5578063f119f5671461091e578063f2fde38b14610931578063f47430701461095157600080fd5b8063d96a094a1461088e578063e081b781146108a1578063e3bcd0bc146108c057600080fd5b8063b88d4fde116100c6578063b88d4fde1461082d578063c87b56dd1461084d578063cf3090121461086d57600080fd5b8063a22cb465146107d7578063abb1b2ac146107f7578063b179e0601461080d57600080fd5b8063940f1ada11610159578063989bdbb611610133578063989bdbb61461072c5780639bf80316146107415780639cf2e8d61461076e5780639e273b2f1461079e57600080fd5b8063940f1ada146106ec57806395d89b4114610702578063978124f81461071757600080fd5b8063815f7bbd1161018a578063815f7bbd146106a157806383a9e049146106b45780638da5cb5b146106ce57600080fd5b80637b6f77681461064c5780637bffb4ce1461066c5780637f7557fa1461068157600080fd5b806334151de21161027f57806355f804b3116102285780636352211e116102025780636352211e146105d757806370a08231146105f7578063715018a6146106175780637204a3c91461062c57600080fd5b806355f804b31461056b57806359a12ad51461058b5780635ce7af1f146105a157600080fd5b806342842e0e1161025957806342842e0e146105095780634f6ccce714610529578063518302271461054957600080fd5b806334151de2146104c35780633ccfd60b146104d85780633cdcc5f7146104ed57600080fd5b80630bd09654116102e157806323b872dd116102bb57806323b872dd14610463578063298c0733146104835780632f745c59146104a357600080fd5b80630bd096541461042257806318160ddd146104385780631b57190e1461044d57600080fd5b806307b8e3fa1161031257806307b8e3fa146103a7578063081812fc146103ca578063095ea7b31461040257600080fd5b806301ffc9a714610339578063049c5c491461036e57806306fdde0314610385575b600080fd5b34801561034557600080fd5b5061035961035436600461301c565b610967565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b506103836109ab565b005b34801561039157600080fd5b5061039a610a27565b60405161036591906131fa565b3480156103b357600080fd5b506103bc600a81565b604051908152602001610365565b3480156103d657600080fd5b506103ea6103e53660046130b6565b610ab9565b6040516001600160a01b039091168152602001610365565b34801561040e57600080fd5b5061038361041d366004612f7d565b610b5f565b34801561042e57600080fd5b506103bc61226081565b34801561044457600080fd5b506008546103bc565b34801561045957600080fd5b506103bc600b5481565b34801561046f57600080fd5b5061038361047e366004612e29565b610c91565b34801561048f57600080fd5b5061038361049e366004612fa7565b610d18565b3480156104af57600080fd5b506103bc6104be366004612f7d565b610ebd565b3480156104cf57600080fd5b506103bc610f65565b3480156104e457600080fd5b50610383610f82565b3480156104f957600080fd5b506103bc670138a388a43c000081565b34801561051557600080fd5b50610383610524366004612e29565b61100b565b34801561053557600080fd5b506103bc6105443660046130b6565b611026565b34801561055557600080fd5b50600f5461035990640100000000900460ff1681565b34801561057757600080fd5b50610383610586366004613056565b6110ca565b34801561059757600080fd5b506103bc600d5481565b3480156105ad57600080fd5b506103bc6105bc366004612dd4565b6001600160a01b031660009081526011602052604090205490565b3480156105e357600080fd5b506103ea6105f23660046130b6565b6111b0565b34801561060357600080fd5b506103bc610612366004612dd4565b61123b565b34801561062357600080fd5b506103836112d5565b34801561063857600080fd5b50610383610647366004612fa7565b61133b565b34801561065857600080fd5b50610383610667366004613056565b6114be565b34801561067857600080fd5b5061038361158a565b34801561068d57600080fd5b50600f546103599062010000900460ff1681565b6103836106af3660046130b6565b6115f8565b3480156106c057600080fd5b50600f546103599060ff1681565b3480156106da57600080fd5b50600a546001600160a01b03166103ea565b3480156106f857600080fd5b506103bc600c5481565b34801561070e57600080fd5b5061039a6118f0565b34801561072357600080fd5b506103bc60c881565b34801561073857600080fd5b506103836118ff565b34801561074d57600080fd5b506103bc61075c366004612dd4565b60116020526000908152604090205481565b34801561077a57600080fd5b50610359610789366004612dd4565b60106020526000908152604090205460ff1681565b3480156107aa57600080fd5b506103596107b9366004612dd4565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156107e357600080fd5b506103836107f2366004612f41565b61196e565b34801561080357600080fd5b506103bc61019081565b34801561081957600080fd5b50610383610828366004612fa7565b611a33565b34801561083957600080fd5b50610383610848366004612e65565b611b4a565b34801561085957600080fd5b5061039a6108683660046130b6565b611bd8565b34801561087957600080fd5b50600f54610359906301000000900460ff1681565b61038361089c3660046130b6565b611d53565b3480156108ad57600080fd5b50600f5461035990610100900460ff1681565b3480156108cc57600080fd5b50610383611ff1565b3480156108e157600080fd5b506103596108f0366004612df6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61038361092c3660046130b6565b61206a565b34801561093d57600080fd5b5061038361094c366004612dd4565b6120fa565b34801561095d57600080fd5b506103bc600e5481565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109a557506109a5826121d9565b92915050565b600a546001600160a01b03163314610a0a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f805461ff001981166101009182900460ff1615909102179055565b606060008054610a369061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a629061329b565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a01565b506000908152600460205260409020546001600160a01b031690565b6000610b6a826111b0565b9050806001600160a01b0316836001600160a01b03161415610bf45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a01565b336001600160a01b0382161480610c105750610c1081336108f0565b610c825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a01565b610c8c8383612274565b505050565b610c9b33826122ef565b610d0d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a01565b610c8c8383836123f7565b600a546001600160a01b03163314610d725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b612260610d8261019060c861320d565b610d8c919061320d565b81610d9660085490565b610da0919061320d565b1115610dee5760405162461bcd60e51b815260206004820152600860248201527f4d41585f4d494e540000000000000000000000000000000000000000000000006044820152606401610a01565b600b5460c890610dff90839061320d565b1115610e4d5760405162461bcd60e51b815260206004820152600b60248201527f47494654535f454d5054590000000000000000000000000000000000000000006044820152606401610a01565b60005b81811015610c8c57600b8054906000610e68836132d6565b9190505550610eab838383818110610e8257610e82613347565b9050602002016020810190610e979190612dd4565b6008545b610ea690600161320d565b612561565b80610eb5816132d6565b915050610e50565b6000610ec88361123b565b8210610f3c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a01565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b612260610f7561019060c861320d565b610f7f919061320d565b81565b600a546001600160a01b03163314610fdc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b60405133904780156108fc02916000818181858888f19350505050158015611008573d6000803e3d6000fd5b50565b610c8c83838360405180602001604052806000815250611b4a565b600061103160085490565b82106110a55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a01565b600882815481106110b8576110b8613347565b90600052602060002001549050919050565b600a546001600160a01b031633146111245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f546301000000900460ff161561118a5760405162461bcd60e51b8152602060048201526024808201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60448201526318dad95960e21b6064820152608401610a01565b61119660138383612d24565b5050600f805464ff00000000191664010000000017905550565b6000818152600260205260408120546001600160a01b0316806109a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a01565b60006001600160a01b0382166112b95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a01565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461132f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b611339600061257b565b565b600a546001600160a01b031633146113955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b60005b81811015610c8c5760008383838181106113b4576113b4613347565b90506020020160208101906113c99190612dd4565b90506001600160a01b0381166114215760405162461bcd60e51b815260206004820152600c60248201527f4e554c4c5f4144445245535300000000000000000000000000000000000000006044820152606401610a01565b6001600160a01b03811660009081526010602052604090205460ff161561148a5760405162461bcd60e51b815260206004820152600f60248201527f4455504c49434154455f454e54525900000000000000000000000000000000006044820152606401610a01565b6001600160a01b03166000908152601060205260409020805460ff19166001179055806114b6816132d6565b915050611398565b600a546001600160a01b031633146115185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f546301000000900460ff161561157e5760405162461bcd60e51b8152602060048201526024808201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60448201526318dad95960e21b6064820152608401610a01565b610c8c60148383612d24565b600a546001600160a01b031633146115e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f805460ff19811660ff90911615179055565b600f54610100900460ff161580156116125750600f5460ff165b61165e5760405162461bcd60e51b815260206004820152600e60248201527f50524553414c455f434c4f5345440000000000000000000000000000000000006044820152606401610a01565b3360009081526010602052604090205460ff166116bd5760405162461bcd60e51b815260206004820152600d60248201527f4e4f545f5155414c4946494544000000000000000000000000000000000000006044820152606401610a01565b6122606116cd61019060c861320d565b6116d7919061320d565b600854106117275760405162461bcd60e51b815260206004820152600c60248201527f4f55545f4f465f53544f434b00000000000000000000000000000000000000006044820152606401610a01565b61019081600d54611738919061320d565b11156117865760405162461bcd60e51b815260206004820152600e60248201527f4558434545445f505249564154450000000000000000000000000000000000006044820152606401610a01565b600e54336000908152601160205260409020546117a490839061320d565b11156117f25760405162461bcd60e51b815260206004820152600c60248201527f4558434545445f414c4c4f4300000000000000000000000000000000000000006044820152606401610a01565b3461180582670138a388a43c0000613239565b11156118535760405162461bcd60e51b815260206004820152601060248201527f494e53554646494349454e545f455448000000000000000000000000000000006044820152606401610a01565b60005b818110156118ec57600d805490600061186e836132d6565b909155505033600090815260116020526040812080549161188e836132d6565b91905055506000601260006118a260085490565b6118ad90600161320d565b81526020810191909152604001600020805460ff19169115159190911790556008546118da903390610e9b565b806118e4816132d6565b915050611856565b5050565b606060018054610a369061329b565b600a546001600160a01b031633146119595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f805463ff00000019166301000000179055565b6001600160a01b0382163314156119c75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a01565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b60005b81811015610c8c576000838383818110611aac57611aac613347565b9050602002016020810190611ac19190612dd4565b90506001600160a01b038116611b195760405162461bcd60e51b815260206004820152600c60248201527f4e554c4c5f4144445245535300000000000000000000000000000000000000006044820152606401610a01565b6001600160a01b03166000908152601060205260409020805460ff1916905580611b42816132d6565b915050611a90565b611b5433836122ef565b611bc65760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a01565b611bd2848484846125da565b50505050565b6000818152600260205260409020546060906001600160a01b0316611c3f5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a01565b600f54640100000000900460ff168015611c67575060008281526012602052604090205460ff165b15611c9e576014611c7783612663565b604051602001611c88929190613117565b6040516020818303038152906040529050919050565b600f54640100000000900460ff1615611cbc576013611c7783612663565b60138054611cc99061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf59061329b565b8015611d425780601f10611d1757610100808354040283529160200191611d42565b820191906000526020600020905b815481529060010190602001808311611d2557829003601f168201915b50505050509050919050565b919050565b600f54610100900460ff16611daa5760405162461bcd60e51b815260206004820152600b60248201527f53414c455f434c4f5345440000000000000000000000000000000000000000006044820152606401610a01565b600f5460ff1615611dfd5760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f50524553414c4500000000000000000000000000000000000000006044820152606401610a01565b612260611e0d61019060c861320d565b611e17919061320d565b60085410611e675760405162461bcd60e51b815260206004820152600c60248201527f4f55545f4f465f53544f434b00000000000000000000000000000000000000006044820152606401610a01565b61226081600c54611e78919061320d565b1115611ec65760405162461bcd60e51b815260206004820152600d60248201527f4558434545445f5055424c4943000000000000000000000000000000000000006044820152606401610a01565b600a811115611f175760405162461bcd60e51b815260206004820152601360248201527f4558434545445f534c5a5f5045525f4d494e54000000000000000000000000006044820152606401610a01565b34611f2a82670138a388a43c0000613239565b1115611f785760405162461bcd60e51b815260206004820152601060248201527f494e53554646494349454e545f455448000000000000000000000000000000006044820152606401610a01565b60005b818110156118ec57600c8054906000611f93836132d6565b9190505550600060126000611fa760085490565b611fb290600161320d565b81526020810191909152604001600020805460ff1916911515919091179055600854611fdf903390610e9b565b80611fe9816132d6565b915050611f7b565b600a546001600160a01b0316331461204b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f805462ff0000198116620100009182900460ff1615909102179055565b600f5462010000900460ff166120c25760405162461bcd60e51b815260206004820152601060248201527f45564f4c5554494f4e5f434c4f534544000000000000000000000000000000006044820152606401610a01565b336120cc826111b0565b6001600160a01b0316146120df57600080fd5b6000908152601260205260409020805460ff19166001179055565b600a546001600160a01b031633146121545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b6001600160a01b0381166121d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a01565b6110088161257b565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061223c57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109a557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109a5565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906122b6826111b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166123795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a01565b6000612384836111b0565b9050806001600160a01b0316846001600160a01b031614806123bf5750836001600160a01b03166123b484610ab9565b6001600160a01b0316145b806123ef57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661240a826111b0565b6001600160a01b0316146124865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a01565b612491838383612795565b61249c600082612274565b6001600160a01b03831660009081526003602052604081208054600192906124c5908490613258565b90915550506001600160a01b03821660009081526003602052604081208054600192906124f390849061320d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118ec82826040518060200160405280600081525061284d565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6125e58484846123f7565b6125f1848484846128d6565b611bd25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a01565b6060816126a357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156126cd57806126b7816132d6565b91506126c69050600a83613225565b91506126a7565b60008167ffffffffffffffff8111156126e8576126e861335d565b6040519080825280601f01601f191660200182016040528015612712576020820181803683370190505b5090505b84156123ef57612727600183613258565b9150612734600a866132f1565b61273f90603061320d565b60f81b81838151811061275457612754613347565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061278e600a86613225565b9450612716565b6001600160a01b0383166127f0576127eb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612813565b816001600160a01b0316836001600160a01b031614612813576128138382612a39565b6001600160a01b03821661282a57610c8c81612ad6565b826001600160a01b0316826001600160a01b031614610c8c57610c8c8282612b85565b6128578383612bc9565b61286460008484846128d6565b610c8c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a01565b60006001600160a01b0384163b15612a2e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061291a9033908990889088906004016131be565b602060405180830381600087803b15801561293457600080fd5b505af1925050508015612964575060408051601f3d908101601f1916820190925261296191810190613039565b60015b612a14573d808015612992576040519150601f19603f3d011682016040523d82523d6000602084013e612997565b606091505b508051612a0c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123ef565b506001949350505050565b60006001612a468461123b565b612a509190613258565b600083815260076020526040902054909150808214612aa3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612ae890600190613258565b60008381526009602052604081205460088054939450909284908110612b1057612b10613347565b906000526020600020015490508060088381548110612b3157612b31613347565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b6957612b69613331565b6001900381819060005260206000200160009055905550505050565b6000612b908361123b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612c1f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a01565b6000818152600260205260409020546001600160a01b031615612c845760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a01565b612c9060008383612795565b6001600160a01b0382166000908152600360205260408120805460019290612cb990849061320d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612d309061329b565b90600052602060002090601f016020900481019282612d525760008555612d98565b82601f10612d6b5782800160ff19823516178555612d98565b82800160010185558215612d98579182015b82811115612d98578235825591602001919060010190612d7d565b50612da4929150612da8565b5090565b5b80821115612da45760008155600101612da9565b80356001600160a01b0381168114611d4e57600080fd5b600060208284031215612de657600080fd5b612def82612dbd565b9392505050565b60008060408385031215612e0957600080fd5b612e1283612dbd565b9150612e2060208401612dbd565b90509250929050565b600080600060608486031215612e3e57600080fd5b612e4784612dbd565b9250612e5560208501612dbd565b9150604084013590509250925092565b60008060008060808587031215612e7b57600080fd5b612e8485612dbd565b9350612e9260208601612dbd565b925060408501359150606085013567ffffffffffffffff80821115612eb657600080fd5b818701915087601f830112612eca57600080fd5b813581811115612edc57612edc61335d565b604051601f8201601f19908116603f01168101908382118183101715612f0457612f0461335d565b816040528281528a6020848701011115612f1d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612f5457600080fd5b612f5d83612dbd565b915060208301358015158114612f7257600080fd5b809150509250929050565b60008060408385031215612f9057600080fd5b612f9983612dbd565b946020939093013593505050565b60008060208385031215612fba57600080fd5b823567ffffffffffffffff80821115612fd257600080fd5b818501915085601f830112612fe657600080fd5b813581811115612ff557600080fd5b8660208260051b850101111561300a57600080fd5b60209290920196919550909350505050565b60006020828403121561302e57600080fd5b8135612def81613373565b60006020828403121561304b57600080fd5b8151612def81613373565b6000806020838503121561306957600080fd5b823567ffffffffffffffff8082111561308157600080fd5b818501915085601f83011261309557600080fd5b8135818111156130a457600080fd5b86602082850101111561300a57600080fd5b6000602082840312156130c857600080fd5b5035919050565b600081518084526130e781602086016020860161326f565b601f01601f19169290920160200192915050565b6000815161310d81856020860161326f565b9290920192915050565b600080845481600182811c91508083168061313357607f831692505b602080841082141561315357634e487b7160e01b86526022600452602486fd5b8180156131675760018114613178576131a5565b60ff198616895284890196506131a5565b60008b81526020902060005b8681101561319d5781548b820152908501908301613184565b505084890196505b5050505050506131b581856130fb565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526131f060808301846130cf565b9695505050505050565b602081526000612def60208301846130cf565b6000821982111561322057613220613305565b500190565b6000826132345761323461331b565b500490565b600081600019048311821515161561325357613253613305565b500290565b60008282101561326a5761326a613305565b500390565b60005b8381101561328a578181015183820152602001613272565b83811115611bd25750506000910152565b600181811c908216806132af57607f821691505b602082108114156132d057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132ea576132ea613305565b5060010190565b6000826133005761330061331b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461100857600080fdfea26469706673582212202203d90a6320ea6fe3495d2da4341dab7cacd5b6c56c1c2dc78809248c999e0064736f6c63430008070033697066733a2f2f516d546f5a416155343833696a555369517455794e456a3154735051465a643269454d716b3174576e725257624b

Deployed Bytecode

0x6080604052600436106103345760003560e01c80637b6f7768116101b0578063a22cb465116100ec578063d96a094a11610095578063e985e9c51161006f578063e985e9c5146108d5578063f119f5671461091e578063f2fde38b14610931578063f47430701461095157600080fd5b8063d96a094a1461088e578063e081b781146108a1578063e3bcd0bc146108c057600080fd5b8063b88d4fde116100c6578063b88d4fde1461082d578063c87b56dd1461084d578063cf3090121461086d57600080fd5b8063a22cb465146107d7578063abb1b2ac146107f7578063b179e0601461080d57600080fd5b8063940f1ada11610159578063989bdbb611610133578063989bdbb61461072c5780639bf80316146107415780639cf2e8d61461076e5780639e273b2f1461079e57600080fd5b8063940f1ada146106ec57806395d89b4114610702578063978124f81461071757600080fd5b8063815f7bbd1161018a578063815f7bbd146106a157806383a9e049146106b45780638da5cb5b146106ce57600080fd5b80637b6f77681461064c5780637bffb4ce1461066c5780637f7557fa1461068157600080fd5b806334151de21161027f57806355f804b3116102285780636352211e116102025780636352211e146105d757806370a08231146105f7578063715018a6146106175780637204a3c91461062c57600080fd5b806355f804b31461056b57806359a12ad51461058b5780635ce7af1f146105a157600080fd5b806342842e0e1161025957806342842e0e146105095780634f6ccce714610529578063518302271461054957600080fd5b806334151de2146104c35780633ccfd60b146104d85780633cdcc5f7146104ed57600080fd5b80630bd09654116102e157806323b872dd116102bb57806323b872dd14610463578063298c0733146104835780632f745c59146104a357600080fd5b80630bd096541461042257806318160ddd146104385780631b57190e1461044d57600080fd5b806307b8e3fa1161031257806307b8e3fa146103a7578063081812fc146103ca578063095ea7b31461040257600080fd5b806301ffc9a714610339578063049c5c491461036e57806306fdde0314610385575b600080fd5b34801561034557600080fd5b5061035961035436600461301c565b610967565b60405190151581526020015b60405180910390f35b34801561037a57600080fd5b506103836109ab565b005b34801561039157600080fd5b5061039a610a27565b60405161036591906131fa565b3480156103b357600080fd5b506103bc600a81565b604051908152602001610365565b3480156103d657600080fd5b506103ea6103e53660046130b6565b610ab9565b6040516001600160a01b039091168152602001610365565b34801561040e57600080fd5b5061038361041d366004612f7d565b610b5f565b34801561042e57600080fd5b506103bc61226081565b34801561044457600080fd5b506008546103bc565b34801561045957600080fd5b506103bc600b5481565b34801561046f57600080fd5b5061038361047e366004612e29565b610c91565b34801561048f57600080fd5b5061038361049e366004612fa7565b610d18565b3480156104af57600080fd5b506103bc6104be366004612f7d565b610ebd565b3480156104cf57600080fd5b506103bc610f65565b3480156104e457600080fd5b50610383610f82565b3480156104f957600080fd5b506103bc670138a388a43c000081565b34801561051557600080fd5b50610383610524366004612e29565b61100b565b34801561053557600080fd5b506103bc6105443660046130b6565b611026565b34801561055557600080fd5b50600f5461035990640100000000900460ff1681565b34801561057757600080fd5b50610383610586366004613056565b6110ca565b34801561059757600080fd5b506103bc600d5481565b3480156105ad57600080fd5b506103bc6105bc366004612dd4565b6001600160a01b031660009081526011602052604090205490565b3480156105e357600080fd5b506103ea6105f23660046130b6565b6111b0565b34801561060357600080fd5b506103bc610612366004612dd4565b61123b565b34801561062357600080fd5b506103836112d5565b34801561063857600080fd5b50610383610647366004612fa7565b61133b565b34801561065857600080fd5b50610383610667366004613056565b6114be565b34801561067857600080fd5b5061038361158a565b34801561068d57600080fd5b50600f546103599062010000900460ff1681565b6103836106af3660046130b6565b6115f8565b3480156106c057600080fd5b50600f546103599060ff1681565b3480156106da57600080fd5b50600a546001600160a01b03166103ea565b3480156106f857600080fd5b506103bc600c5481565b34801561070e57600080fd5b5061039a6118f0565b34801561072357600080fd5b506103bc60c881565b34801561073857600080fd5b506103836118ff565b34801561074d57600080fd5b506103bc61075c366004612dd4565b60116020526000908152604090205481565b34801561077a57600080fd5b50610359610789366004612dd4565b60106020526000908152604090205460ff1681565b3480156107aa57600080fd5b506103596107b9366004612dd4565b6001600160a01b031660009081526010602052604090205460ff1690565b3480156107e357600080fd5b506103836107f2366004612f41565b61196e565b34801561080357600080fd5b506103bc61019081565b34801561081957600080fd5b50610383610828366004612fa7565b611a33565b34801561083957600080fd5b50610383610848366004612e65565b611b4a565b34801561085957600080fd5b5061039a6108683660046130b6565b611bd8565b34801561087957600080fd5b50600f54610359906301000000900460ff1681565b61038361089c3660046130b6565b611d53565b3480156108ad57600080fd5b50600f5461035990610100900460ff1681565b3480156108cc57600080fd5b50610383611ff1565b3480156108e157600080fd5b506103596108f0366004612df6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61038361092c3660046130b6565b61206a565b34801561093d57600080fd5b5061038361094c366004612dd4565b6120fa565b34801561095d57600080fd5b506103bc600e5481565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109a557506109a5826121d9565b92915050565b600a546001600160a01b03163314610a0a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f805461ff001981166101009182900460ff1615909102179055565b606060008054610a369061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a629061329b565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a01565b506000908152600460205260409020546001600160a01b031690565b6000610b6a826111b0565b9050806001600160a01b0316836001600160a01b03161415610bf45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a01565b336001600160a01b0382161480610c105750610c1081336108f0565b610c825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a01565b610c8c8383612274565b505050565b610c9b33826122ef565b610d0d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a01565b610c8c8383836123f7565b600a546001600160a01b03163314610d725760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b612260610d8261019060c861320d565b610d8c919061320d565b81610d9660085490565b610da0919061320d565b1115610dee5760405162461bcd60e51b815260206004820152600860248201527f4d41585f4d494e540000000000000000000000000000000000000000000000006044820152606401610a01565b600b5460c890610dff90839061320d565b1115610e4d5760405162461bcd60e51b815260206004820152600b60248201527f47494654535f454d5054590000000000000000000000000000000000000000006044820152606401610a01565b60005b81811015610c8c57600b8054906000610e68836132d6565b9190505550610eab838383818110610e8257610e82613347565b9050602002016020810190610e979190612dd4565b6008545b610ea690600161320d565b612561565b80610eb5816132d6565b915050610e50565b6000610ec88361123b565b8210610f3c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a01565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b612260610f7561019060c861320d565b610f7f919061320d565b81565b600a546001600160a01b03163314610fdc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b60405133904780156108fc02916000818181858888f19350505050158015611008573d6000803e3d6000fd5b50565b610c8c83838360405180602001604052806000815250611b4a565b600061103160085490565b82106110a55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a01565b600882815481106110b8576110b8613347565b90600052602060002001549050919050565b600a546001600160a01b031633146111245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f546301000000900460ff161561118a5760405162461bcd60e51b8152602060048201526024808201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60448201526318dad95960e21b6064820152608401610a01565b61119660138383612d24565b5050600f805464ff00000000191664010000000017905550565b6000818152600260205260408120546001600160a01b0316806109a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a01565b60006001600160a01b0382166112b95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a01565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461132f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b611339600061257b565b565b600a546001600160a01b031633146113955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b60005b81811015610c8c5760008383838181106113b4576113b4613347565b90506020020160208101906113c99190612dd4565b90506001600160a01b0381166114215760405162461bcd60e51b815260206004820152600c60248201527f4e554c4c5f4144445245535300000000000000000000000000000000000000006044820152606401610a01565b6001600160a01b03811660009081526010602052604090205460ff161561148a5760405162461bcd60e51b815260206004820152600f60248201527f4455504c49434154455f454e54525900000000000000000000000000000000006044820152606401610a01565b6001600160a01b03166000908152601060205260409020805460ff19166001179055806114b6816132d6565b915050611398565b600a546001600160a01b031633146115185760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f546301000000900460ff161561157e5760405162461bcd60e51b8152602060048201526024808201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60448201526318dad95960e21b6064820152608401610a01565b610c8c60148383612d24565b600a546001600160a01b031633146115e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f805460ff19811660ff90911615179055565b600f54610100900460ff161580156116125750600f5460ff165b61165e5760405162461bcd60e51b815260206004820152600e60248201527f50524553414c455f434c4f5345440000000000000000000000000000000000006044820152606401610a01565b3360009081526010602052604090205460ff166116bd5760405162461bcd60e51b815260206004820152600d60248201527f4e4f545f5155414c4946494544000000000000000000000000000000000000006044820152606401610a01565b6122606116cd61019060c861320d565b6116d7919061320d565b600854106117275760405162461bcd60e51b815260206004820152600c60248201527f4f55545f4f465f53544f434b00000000000000000000000000000000000000006044820152606401610a01565b61019081600d54611738919061320d565b11156117865760405162461bcd60e51b815260206004820152600e60248201527f4558434545445f505249564154450000000000000000000000000000000000006044820152606401610a01565b600e54336000908152601160205260409020546117a490839061320d565b11156117f25760405162461bcd60e51b815260206004820152600c60248201527f4558434545445f414c4c4f4300000000000000000000000000000000000000006044820152606401610a01565b3461180582670138a388a43c0000613239565b11156118535760405162461bcd60e51b815260206004820152601060248201527f494e53554646494349454e545f455448000000000000000000000000000000006044820152606401610a01565b60005b818110156118ec57600d805490600061186e836132d6565b909155505033600090815260116020526040812080549161188e836132d6565b91905055506000601260006118a260085490565b6118ad90600161320d565b81526020810191909152604001600020805460ff19169115159190911790556008546118da903390610e9b565b806118e4816132d6565b915050611856565b5050565b606060018054610a369061329b565b600a546001600160a01b031633146119595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f805463ff00000019166301000000179055565b6001600160a01b0382163314156119c75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a01565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a8d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b60005b81811015610c8c576000838383818110611aac57611aac613347565b9050602002016020810190611ac19190612dd4565b90506001600160a01b038116611b195760405162461bcd60e51b815260206004820152600c60248201527f4e554c4c5f4144445245535300000000000000000000000000000000000000006044820152606401610a01565b6001600160a01b03166000908152601060205260409020805460ff1916905580611b42816132d6565b915050611a90565b611b5433836122ef565b611bc65760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a01565b611bd2848484846125da565b50505050565b6000818152600260205260409020546060906001600160a01b0316611c3f5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a01565b600f54640100000000900460ff168015611c67575060008281526012602052604090205460ff165b15611c9e576014611c7783612663565b604051602001611c88929190613117565b6040516020818303038152906040529050919050565b600f54640100000000900460ff1615611cbc576013611c7783612663565b60138054611cc99061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf59061329b565b8015611d425780601f10611d1757610100808354040283529160200191611d42565b820191906000526020600020905b815481529060010190602001808311611d2557829003601f168201915b50505050509050919050565b919050565b600f54610100900460ff16611daa5760405162461bcd60e51b815260206004820152600b60248201527f53414c455f434c4f5345440000000000000000000000000000000000000000006044820152606401610a01565b600f5460ff1615611dfd5760405162461bcd60e51b815260206004820152600c60248201527f4f4e4c595f50524553414c4500000000000000000000000000000000000000006044820152606401610a01565b612260611e0d61019060c861320d565b611e17919061320d565b60085410611e675760405162461bcd60e51b815260206004820152600c60248201527f4f55545f4f465f53544f434b00000000000000000000000000000000000000006044820152606401610a01565b61226081600c54611e78919061320d565b1115611ec65760405162461bcd60e51b815260206004820152600d60248201527f4558434545445f5055424c4943000000000000000000000000000000000000006044820152606401610a01565b600a811115611f175760405162461bcd60e51b815260206004820152601360248201527f4558434545445f534c5a5f5045525f4d494e54000000000000000000000000006044820152606401610a01565b34611f2a82670138a388a43c0000613239565b1115611f785760405162461bcd60e51b815260206004820152601060248201527f494e53554646494349454e545f455448000000000000000000000000000000006044820152606401610a01565b60005b818110156118ec57600c8054906000611f93836132d6565b9190505550600060126000611fa760085490565b611fb290600161320d565b81526020810191909152604001600020805460ff1916911515919091179055600854611fdf903390610e9b565b80611fe9816132d6565b915050611f7b565b600a546001600160a01b0316331461204b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b600f805462ff0000198116620100009182900460ff1615909102179055565b600f5462010000900460ff166120c25760405162461bcd60e51b815260206004820152601060248201527f45564f4c5554494f4e5f434c4f534544000000000000000000000000000000006044820152606401610a01565b336120cc826111b0565b6001600160a01b0316146120df57600080fd5b6000908152601260205260409020805460ff19166001179055565b600a546001600160a01b031633146121545760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a01565b6001600160a01b0381166121d05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a01565b6110088161257b565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061223c57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109a557507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146109a5565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906122b6826111b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166123795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a01565b6000612384836111b0565b9050806001600160a01b0316846001600160a01b031614806123bf5750836001600160a01b03166123b484610ab9565b6001600160a01b0316145b806123ef57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661240a826111b0565b6001600160a01b0316146124865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a01565b612491838383612795565b61249c600082612274565b6001600160a01b03831660009081526003602052604081208054600192906124c5908490613258565b90915550506001600160a01b03821660009081526003602052604081208054600192906124f390849061320d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118ec82826040518060200160405280600081525061284d565b600a80546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6125e58484846123f7565b6125f1848484846128d6565b611bd25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a01565b6060816126a357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156126cd57806126b7816132d6565b91506126c69050600a83613225565b91506126a7565b60008167ffffffffffffffff8111156126e8576126e861335d565b6040519080825280601f01601f191660200182016040528015612712576020820181803683370190505b5090505b84156123ef57612727600183613258565b9150612734600a866132f1565b61273f90603061320d565b60f81b81838151811061275457612754613347565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061278e600a86613225565b9450612716565b6001600160a01b0383166127f0576127eb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612813565b816001600160a01b0316836001600160a01b031614612813576128138382612a39565b6001600160a01b03821661282a57610c8c81612ad6565b826001600160a01b0316826001600160a01b031614610c8c57610c8c8282612b85565b6128578383612bc9565b61286460008484846128d6565b610c8c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a01565b60006001600160a01b0384163b15612a2e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061291a9033908990889088906004016131be565b602060405180830381600087803b15801561293457600080fd5b505af1925050508015612964575060408051601f3d908101601f1916820190925261296191810190613039565b60015b612a14573d808015612992576040519150601f19603f3d011682016040523d82523d6000602084013e612997565b606091505b508051612a0c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a01565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506123ef565b506001949350505050565b60006001612a468461123b565b612a509190613258565b600083815260076020526040902054909150808214612aa3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612ae890600190613258565b60008381526009602052604081205460088054939450909284908110612b1057612b10613347565b906000526020600020015490508060088381548110612b3157612b31613347565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612b6957612b69613331565b6001900381819060005260206000200160009055905550505050565b6000612b908361123b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612c1f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a01565b6000818152600260205260409020546001600160a01b031615612c845760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a01565b612c9060008383612795565b6001600160a01b0382166000908152600360205260408120805460019290612cb990849061320d565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612d309061329b565b90600052602060002090601f016020900481019282612d525760008555612d98565b82601f10612d6b5782800160ff19823516178555612d98565b82800160010185558215612d98579182015b82811115612d98578235825591602001919060010190612d7d565b50612da4929150612da8565b5090565b5b80821115612da45760008155600101612da9565b80356001600160a01b0381168114611d4e57600080fd5b600060208284031215612de657600080fd5b612def82612dbd565b9392505050565b60008060408385031215612e0957600080fd5b612e1283612dbd565b9150612e2060208401612dbd565b90509250929050565b600080600060608486031215612e3e57600080fd5b612e4784612dbd565b9250612e5560208501612dbd565b9150604084013590509250925092565b60008060008060808587031215612e7b57600080fd5b612e8485612dbd565b9350612e9260208601612dbd565b925060408501359150606085013567ffffffffffffffff80821115612eb657600080fd5b818701915087601f830112612eca57600080fd5b813581811115612edc57612edc61335d565b604051601f8201601f19908116603f01168101908382118183101715612f0457612f0461335d565b816040528281528a6020848701011115612f1d57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612f5457600080fd5b612f5d83612dbd565b915060208301358015158114612f7257600080fd5b809150509250929050565b60008060408385031215612f9057600080fd5b612f9983612dbd565b946020939093013593505050565b60008060208385031215612fba57600080fd5b823567ffffffffffffffff80821115612fd257600080fd5b818501915085601f830112612fe657600080fd5b813581811115612ff557600080fd5b8660208260051b850101111561300a57600080fd5b60209290920196919550909350505050565b60006020828403121561302e57600080fd5b8135612def81613373565b60006020828403121561304b57600080fd5b8151612def81613373565b6000806020838503121561306957600080fd5b823567ffffffffffffffff8082111561308157600080fd5b818501915085601f83011261309557600080fd5b8135818111156130a457600080fd5b86602082850101111561300a57600080fd5b6000602082840312156130c857600080fd5b5035919050565b600081518084526130e781602086016020860161326f565b601f01601f19169290920160200192915050565b6000815161310d81856020860161326f565b9290920192915050565b600080845481600182811c91508083168061313357607f831692505b602080841082141561315357634e487b7160e01b86526022600452602486fd5b8180156131675760018114613178576131a5565b60ff198616895284890196506131a5565b60008b81526020902060005b8681101561319d5781548b820152908501908301613184565b505084890196505b5050505050506131b581856130fb565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526131f060808301846130cf565b9695505050505050565b602081526000612def60208301846130cf565b6000821982111561322057613220613305565b500190565b6000826132345761323461331b565b500490565b600081600019048311821515161561325357613253613305565b500290565b60008282101561326a5761326a613305565b500390565b60005b8381101561328a578181015183820152602001613272565b83811115611bd25750506000910152565b600181811c908216806132af57607f821691505b602082108114156132d057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132ea576132ea613305565b5060010190565b6000826133005761330061331b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461100857600080fdfea26469706673582212202203d90a6320ea6fe3495d2da4341dab7cacd5b6c56c1c2dc78809248c999e0064736f6c63430008070033

Deployed Bytecode Sourcemap

154:5610:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;937:224:5;;;;;;;;;;-1:-1:-1;937:224:5;;;;;:::i;:::-;;:::i;:::-;;;7264:14:14;;7257:22;7239:41;;7227:2;7212:18;937:224:5;;;;;;;;4777:86:12;;;;;;;;;;;;;:::i;:::-;;2426:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;825:41:12:-;;;;;;;;;;;;864:2;825:41;;;;;19944:25:14;;;19932:2;19917:18;825:41:12;19798:177:14;3985:221:4;;;;;;;;;;-1:-1:-1;3985:221:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6516:55:14;;;6498:74;;6486:2;6471:18;3985:221:4;6352:226:14;3508:411:4;;;;;;;;;;-1:-1:-1;3508:411:4;;;;;:::i;:::-;;:::i;647:41:12:-;;;;;;;;;;;;684:4;647:41;;1577:113:5;;;;;;;;;;-1:-1:-1;1665:10:5;:17;1577:113;;239:27:12;;;;;;;;;;;;;;;;4875:339:4;;;;;;;;;;-1:-1:-1;4875:339:4;;;;;:::i;:::-;;:::i;3800:389:12:-;;;;;;;;;;-1:-1:-1;3800:389:12;;;;;:::i;:::-;;:::i;1245:256:5:-;;;;;;;;;;-1:-1:-1;1245:256:5;;;;;:::i;:::-;;:::i;695:69:12:-;;;;;;;;;;;;;:::i;4201:109::-;;;;;;;;;;;;;:::i;771:47::-;;;;;;;;;;;;807:11;771:47;;5285:185:4;;;;;;;;;;-1:-1:-1;5285:185:4;;;;;:::i;:::-;;:::i;1767:233:5:-;;;;;;;;;;-1:-1:-1;1767:233:5;;;;;:::i;:::-;;:::i;516:28:12:-;;;;;;;;;;-1:-1:-1;516:28:12;;;;;;;;;;;4990:134;;;;;;;;;;-1:-1:-1;4990:134:12;;;;;:::i;:::-;;:::i;313:34::-;;;;;;;;;;;;;;;;4441:130;;;;;;;;;;-1:-1:-1;4441:130:12;;;;;:::i;:::-;-1:-1:-1;;;;;4536:27:12;4509:7;4536:27;;;:21;:27;;;;;;;4441:130;2120:239:4;;;;;;;;;;-1:-1:-1;2120:239:4;;;;;:::i;:::-;;:::i;1850:208::-;;;;;;;;;;-1:-1:-1;1850:208:4;;;;;:::i;:::-;;:::i;1650:94:11:-;;;;;;;;;;;;;:::i;1367:356:12:-;;;;;;;;;;-1:-1:-1;1367:356:12;;;;;:::i;:::-;;:::i;5136:114::-;;;;;;;;;;-1:-1:-1;5136:114:12;;;;;:::i;:::-;;:::i;4670:95::-;;;;;;;;;;;;;:::i;457:25::-;;;;;;;;;;-1:-1:-1;457:25:12;;;;;;;;;;;2739:801;;;;;;:::i;:::-;;:::i;400:23::-;;;;;;;;;;-1:-1:-1;400:23:12;;;;;;;;999:87:11;;;;;;;;;;-1:-1:-1;1072:6:11;;-1:-1:-1;;;;;1072:6:11;999:87;;273:33:12;;;;;;;;;;;;;;;;2595:104:4;;;;;;;;;;;;;:::i;554:38:12:-;;;;;;;;;;;;589:3;554:38;;4583:75;;;;;;;;;;;;;:::i;930:56::-;;;;;;;;;;-1:-1:-1;930:56:12;;;;;:::i;:::-;;;;;;;;;;;;;;879:44;;;;;;;;;;-1:-1:-1;879:44:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;4322:107;;;;;;;;;;-1:-1:-1;4322:107:12;;;;;:::i;:::-;-1:-1:-1;;;;;4403:18:12;4379:4;4403:18;;;:12;:18;;;;;;;;;4322:107;4278:295:4;;;;;;;;;;-1:-1:-1;4278:295:4;;;;;:::i;:::-;;:::i;599:41:12:-;;;;;;;;;;;;637:3;599:41;;1731:308;;;;;;;;;;-1:-1:-1;1731:308:12;;;;;:::i;:::-;;:::i;5541:328:4:-;;;;;;;;;;-1:-1:-1;5541:328:4;;;;;:::i;:::-;;:::i;5258:503:12:-;;;;;;;;;;-1:-1:-1;5258:503:12;;;;;:::i;:::-;;:::i;489:18::-;;;;;;;;;;-1:-1:-1;489:18:12;;;;;;;;;;;2057:670;;;;;;:::i;:::-;;:::i;430:20::-;;;;;;;;;;-1:-1:-1;430:20:12;;;;;;;;;;;4875:101;;;;;;;;;;;;;:::i;4644:164:4:-;;;;;;;;;;-1:-1:-1;4644:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164;3552:236:12;;;;;;:::i;:::-;;:::i;1899:192:11:-;;;;;;;;;;-1:-1:-1;1899:192:11;;;;;:::i;:::-;;:::i;354:39:12:-;;;;;;;;;;;;;;;;937:224:5;1039:4;-1:-1:-1;;;;;;1063:50:5;;1078:35;1063:50;;:90;;;1117:36;1141:11;1117:23;:36::i;:::-;1056:97;937:224;-1:-1:-1;;937:224:5:o;4777:86:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;;;;;;;;;4847:8:12::1;::::0;;-1:-1:-1;;4835:20:12;::::1;4847:8;::::0;;;::::1;;;4846:9;4835:20:::0;;::::1;;::::0;;4777:86::o;2426:100:4:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;4081:73;;;;-1:-1:-1;;;4081:73:4;;14765:2:14;4081:73:4;;;14747:21:14;14804:2;14784:18;;;14777:30;14843:34;14823:18;;;14816:62;14914:14;14894:18;;;14887:42;14946:19;;4081:73:4;14563:408:14;4081:73:4;-1:-1:-1;4174:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:4;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:4;:2;-1:-1:-1;;;;;3647:11:4;;;3639:57;;;;-1:-1:-1;;;3639:57:4;;17396:2:14;3639:57:4;;;17378:21:14;17435:2;17415:18;;;17408:30;17474:34;17454:18;;;17447:62;17545:3;17525:18;;;17518:31;17566:19;;3639:57:4;17194:397:14;3639:57:4;682:10:1;-1:-1:-1;;;;;3731:21:4;;;;:62;;-1:-1:-1;3756:37:4;3773:5;682:10:1;4644:164:4;:::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:4;;12477:2:14;3709:168:4;;;12459:21:14;12516:2;12496:18;;;12489:30;12555:34;12535:18;;;12528:62;12626:26;12606:18;;;12599:54;12670:19;;3709:168:4;12275:420:14;3709:168:4;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;4875:339::-;5070:41;682:10:1;5103:7:4;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:4;;18140:2:14;5062:103:4;;;18122:21:14;18179:2;18159:18;;;18152:30;18218:34;18198:18;;;18191:62;18289:19;18269:18;;;18262:47;18326:19;;5062:103:4;17938:413:14;5062:103:4;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;3800:389:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;684:4:12::1;729:22;637:3;589;729:22;:::i;:::-;:35;;;;:::i;:::-;3898:9:::0;3882:13:::1;1665:10:5::0;:17;;1577:113;3882:13:12::1;:32;;;;:::i;:::-;:43;;3874:64;;;::::0;-1:-1:-1;;;3874:64:12;;14068:2:14;3874:64:12::1;::::0;::::1;14050:21:14::0;14107:1;14087:18;;;14080:29;14145:10;14125:18;;;14118:38;14173:18;;3874:64:12::1;13866:331:14::0;3874:64:12::1;3957:12;::::0;589:3:::1;::::0;3957:31:::1;::::0;3972:9;;3957:31:::1;:::i;:::-;:43;;3949:67;;;::::0;-1:-1:-1;;;3949:67:12;;15539:2:14;3949:67:12::1;::::0;::::1;15521:21:14::0;15578:2;15558:18;;;15551:30;15617:13;15597:18;;;15590:41;15648:18;;3949:67:12::1;15337:335:14::0;3949:67:12::1;4042:9;4037:145;4057:20:::0;;::::1;4037:145;;;4099:12;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;4128:42;4138:9;;4148:1;4138:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1665:10:5::0;:17;4152:13:12::1;:17;::::0;4168:1:::1;4152:17;:::i;:::-;4128:9;:42::i;:::-;4079:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4037:145;;1245:256:5::0;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:5;;8401:2:14;1362:87:5;;;8383:21:14;8440:2;8420:18;;;8413:30;8479:34;8459:18;;;8452:62;8550:13;8530:18;;;8523:41;8581:19;;1362:87:5;8199:407:14;1362:87:5;-1:-1:-1;;;;;;1467:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;695:69:12:-;684:4;729:22;637:3;589;729:22;:::i;:::-;:35;;;;:::i;:::-;695:69;:::o;4201:109::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;4251:51:12::1;::::0;4259:10:::1;::::0;4280:21:::1;4251:51:::0;::::1;;;::::0;::::1;::::0;;;4280:21;4259:10;4251:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;4201:109::o:0;5285:185:4:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;1767:233:5:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:5;;18558:2:14;1862:95:5;;;18540:21:14;18597:2;18577:18;;;18570:30;18636:34;18616:18;;;18609:62;18707:14;18687:18;;;18680:42;18739:19;;1862:95:5;18356:408:14;1862:95:5;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;4990:134:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;1288:6:12::1;::::0;;;::::1;;;1287:7;1279:56;;;::::0;-1:-1:-1;;;1279:56:12;;16289:2:14;1279:56:12::1;::::0;::::1;16271:21:14::0;16328:2;16308:18;;;16301:30;16367:34;16347:18;;;16340:62;-1:-1:-1;;;16418:18:14;;;16411:34;16462:19;;1279:56:12::1;16087:400:14::0;1279:56:12::1;5071:19:::2;:13;5087:3:::0;;5071:19:::2;:::i;:::-;-1:-1:-1::0;;5101:8:12::2;:15:::0;;-1:-1:-1;;5101:15:12::2;::::0;::::2;::::0;;-1:-1:-1;4990:134:12:o;2120:239:4:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:4;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:4;;13658:2:14;2255:73:4;;;13640:21:14;13697:2;13677:18;;;13670:30;13736:34;13716:18;;;13709:62;13807:11;13787:18;;;13780:39;13836:19;;2255:73:4;13456:405:14;1850:208:4;1922:7;-1:-1:-1;;;;;1950:19:4;;1942:74;;;;-1:-1:-1;;;1942:74:4;;13247:2:14;1942:74:4;;;13229:21:14;13286:2;13266:18;;;13259:30;13325:34;13305:18;;;13298:62;13396:12;13376:18;;;13369:40;13426:19;;1942:74:4;13045:406:14;1942:74:4;-1:-1:-1;;;;;;2034:16:4;;;;;:9;:16;;;;;;;1850:208::o;1650:94:11:-;1072:6;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;1367:356:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;1455:9:12::1;1451:262;1470:18:::0;;::::1;1451:262;;;1510:13;1526:7;;1534:1;1526:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1510:26:::0;-1:-1:-1;;;;;;1559:19:12;::::1;1551:44;;;::::0;-1:-1:-1;;;1551:44:12;;8060:2:14;1551:44:12::1;::::0;::::1;8042:21:14::0;8099:2;8079:18;;;8072:30;8138:14;8118:18;;;8111:42;8170:18;;1551:44:12::1;7858:336:14::0;1551:44:12::1;-1:-1:-1::0;;;;;1619:19:12;::::1;;::::0;;;:12:::1;:19;::::0;;;;;::::1;;1618:20;1610:48;;;::::0;-1:-1:-1;;;1610:48:12;;11792:2:14;1610:48:12::1;::::0;::::1;11774:21:14::0;11831:2;11811:18;;;11804:30;11870:17;11850:18;;;11843:45;11905:18;;1610:48:12::1;11590:339:14::0;1610:48:12::1;-1:-1:-1::0;;;;;1675:19:12::1;;::::0;;;:12:::1;:19;::::0;;;;:26;;-1:-1:-1;;1675:26:12::1;1697:4;1675:26;::::0;;1490:3;::::1;::::0;::::1;:::i;:::-;;;;1451:262;;5136:114:::0;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;1288:6:12::1;::::0;;;::::1;;;1287:7;1279:56;;;::::0;-1:-1:-1;;;1279:56:12;;16289:2:14;1279:56:12::1;::::0;::::1;16271:21:14::0;16328:2;16308:18;;;16301:30;16367:34;16347:18;;;16340:62;-1:-1:-1;;;16418:18:14;;;16411:34;16462:19;;1279:56:12::1;16087:400:14::0;1279:56:12::1;5220:22:::2;:16;5239:3:::0;;5220:22:::2;:::i;4670:95::-:0;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;4746:11:12::1;::::0;;-1:-1:-1;;4731:26:12;::::1;4746:11;::::0;;::::1;4745:12;4731:26;::::0;;4670:95::o;2739:801::-;2819:8;;;;;;;2818:9;:24;;;;-1:-1:-1;2831:11:12;;;;2818:24;2810:51;;;;-1:-1:-1;;;2810:51:12;;7717:2:14;2810:51:12;;;7699:21:14;7756:2;7736:18;;;7729:30;7795:16;7775:18;;;7768:44;7829:18;;2810:51:12;7515:338:14;2810:51:12;2893:10;2880:24;;;;:12;:24;;;;;;;;2872:50;;;;-1:-1:-1;;;2872:50:12;;16694:2:14;2872:50:12;;;16676:21:14;16733:2;16713:18;;;16706:30;16772:15;16752:18;;;16745:43;16805:18;;2872:50:12;16492:337:14;2872:50:12;684:4;729:22;637:3;589;729:22;:::i;:::-;:35;;;;:::i;:::-;1665:10:5;:17;2941:23:12;2933:48;;;;-1:-1:-1;;;2933:48:12;;10350:2:14;2933:48:12;;;10332:21:14;10389:2;10369:18;;;10362:30;10428:14;10408:18;;;10401:42;10460:18;;2933:48:12;10148:336:14;2933:48:12;637:3;3022:13;3000:19;;:35;;;;:::i;:::-;:50;;2992:77;;;;-1:-1:-1;;;2992:77:12;;18971:2:14;2992:77:12;;;18953:21:14;19010:2;18990:18;;;18983:30;19049:16;19029:18;;;19022:44;19083:18;;2992:77:12;18769:338:14;2992:77:12;3141:20;;3110:10;3088:33;;;;:21;:33;;;;;;:49;;3124:13;;3088:49;:::i;:::-;:73;;3080:98;;;;-1:-1:-1;;;3080:98:12;;19314:2:14;3080:98:12;;;19296:21:14;19353:2;19333:18;;;19326:30;19392:14;19372:18;;;19365:42;19424:18;;3080:98:12;19112:336:14;3080:98:12;3226:9;3197:25;3209:13;807:11;3197:25;:::i;:::-;:38;;3189:67;;;;-1:-1:-1;;;3189:67:12;;19655:2:14;3189:67:12;;;19637:21:14;19694:2;19674:18;;;19667:30;19733:18;19713;;;19706:46;19769:18;;3189:67:12;19453:340:14;3189:67:12;3282:9;3277:246;3301:13;3297:1;:17;3277:246;;;3336:19;:21;;;:19;:21;;;:::i;:::-;;;;-1:-1:-1;;3394:10:12;3372:33;;;;:21;:33;;;;;:35;;;;;;:::i;:::-;;;;;;3451:5;3422:7;:26;3430:13;1665:10:5;:17;;1577:113;3430:13:12;:17;;3446:1;3430:17;:::i;:::-;3422:26;;;;;;;;;;;-1:-1:-1;3422:26:12;:34;;-1:-1:-1;;3422:34:12;;;;;;;;;;1665:10:5;:17;3471:40:12;;3481:10;;3493:13;1577:113:5;3471:40:12;3316:3;;;;:::i;:::-;;;;3277:246;;;;2739:801;:::o;2595:104:4:-;2651:13;2684:7;2677:14;;;;;:::i;4583:75:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;4637:6:12::1;:13:::0;;-1:-1:-1;;4637:13:12::1;::::0;::::1;::::0;;4583:75::o;4278:295:4:-;-1:-1:-1;;;;;4381:24:4;;682:10:1;4381:24:4;;4373:62;;;;-1:-1:-1;;;4373:62:4;;9996:2:14;4373:62:4;;;9978:21:14;10035:2;10015:18;;;10008:30;10074:27;10054:18;;;10047:55;10119:18;;4373:62:4;9794:349:14;4373:62:4;682:10:1;4448:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4448:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:4;;;;;;;;;;4517:48;;7239:41:14;;;4448:42:4;;682:10:1;4517:48:4;;7212:18:14;4517:48:4;;;;;;;4278:295;;:::o;1731:308:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;1824:9:12::1;1820:212;1839:18:::0;;::::1;1820:212;;;1879:13;1895:7;;1903:1;1895:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;1879:26:::0;-1:-1:-1;;;;;;1928:19:12;::::1;1920:44;;;::::0;-1:-1:-1;;;1920:44:12;;8060:2:14;1920:44:12::1;::::0;::::1;8042:21:14::0;8099:2;8079:18;;;8072:30;8138:14;8118:18;;;8111:42;8170:18;;1920:44:12::1;7858:336:14::0;1920:44:12::1;-1:-1:-1::0;;;;;1993:19:12::1;2015:5;1993:19:::0;;;:12:::1;:19;::::0;;;;:27;;-1:-1:-1;;1993:27:12::1;::::0;;1859:3;::::1;::::0;::::1;:::i;:::-;;;;1820:212;;5541:328:4::0;5716:41;682:10:1;5749:7:4;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:4;;18140:2:14;5708:103:4;;;18122:21:14;18179:2;18159:18;;;18152:30;18218:34;18198:18;;;18191:62;18289:19;18269:18;;;18262:47;18326:19;;5708:103:4;17938:413:14;5708:103:4;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;5258:503:12:-;7444:4:4;7468:16;;;:7;:16;;;;;;5331:13:12;;-1:-1:-1;;;;;7468:16:4;5357:60:12;;;;-1:-1:-1;;;5357:60:12;;17036:2:14;5357:60:12;;;17018:21:14;17075:2;17055:18;;;17048:30;17114:33;17094:18;;;17087:61;17165:18;;5357:60:12;16834:355:14;5357:60:12;5442:8;;;;;;;:28;;;;-1:-1:-1;5454:16:12;;;;:7;:16;;;;;;;;5442:28;5438:306;;;5518:16;5536:18;:7;:16;:18::i;:::-;5501:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5487:69;;5258:503;;;:::o;5438:306::-;5588:8;;;;;;;5584:160;;;5644:13;5659:18;:7;:16;:18::i;5584:160::-;5719:13;5711:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5258:503;;;:::o;5584:160::-;5258:503;;;:::o;2057:670::-;2129:8;;;;;;;2121:32;;;;-1:-1:-1;;;2121:32:12;;11039:2:14;2121:32:12;;;11021:21:14;11078:2;11058:18;;;11051:30;11117:13;11097:18;;;11090:41;11148:18;;2121:32:12;10837:335:14;2121:32:12;2173:11;;;;2172:12;2164:37;;;;-1:-1:-1;;;2164:37:12;;12136:2:14;2164:37:12;;;12118:21:14;12175:2;12155:18;;;12148:30;12214:14;12194:18;;;12187:42;12246:18;;2164:37:12;11934:336:14;2164:37:12;684:4;729:22;637:3;589;729:22;:::i;:::-;:35;;;;:::i;:::-;1665:10:5;:17;2220:23:12;2212:48;;;;-1:-1:-1;;;2212:48:12;;10350:2:14;2212:48:12;;;10332:21:14;10389:2;10369:18;;;10362:30;10428:14;10408:18;;;10401:42;10460:18;;2212:48:12;10148:336:14;2212:48:12;684:4;2300:13;2279:18;;:34;;;;:::i;:::-;:48;;2271:74;;;;-1:-1:-1;;;2271:74:12;;17798:2:14;2271:74:12;;;17780:21:14;17837:2;17817:18;;;17810:30;17876:15;17856:18;;;17849:43;17909:18;;2271:74:12;17596:337:14;2271:74:12;864:2;2364:13;:29;;2356:61;;;;-1:-1:-1;;;2356:61:12;;10691:2:14;2356:61:12;;;10673:21:14;10730:2;10710:18;;;10703:30;10769:21;10749:18;;;10742:49;10808:18;;2356:61:12;10489:343:14;2356:61:12;2465:9;2436:25;2448:13;807:11;2436:25;:::i;:::-;:38;;2428:67;;;;-1:-1:-1;;;2428:67:12;;19655:2:14;2428:67:12;;;19637:21:14;19694:2;19674:18;;;19667:30;19733:18;19713;;;19706:46;19769:18;;2428:67:12;19453:340:14;2428:67:12;2520:9;2516:194;2539:13;2535:1;:17;2516:194;;;2574:18;:20;;;:18;:20;;;:::i;:::-;;;;;;2638:5;2609:7;:26;2617:13;1665:10:5;:17;;1577:113;2617:13:12;:17;;2633:1;2617:17;:::i;:::-;2609:26;;;;;;;;;;;-1:-1:-1;2609:26:12;:34;;-1:-1:-1;;2609:34:12;;;;;;;;;;1665:10:5;:17;2658:40:12;;2668:10;;2680:13;1577:113:5;2658:40:12;2554:3;;;;:::i;:::-;;;;2516:194;;4875:101;1072:6:11;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;4955:13:12::1;::::0;;-1:-1:-1;;4938:30:12;::::1;4955:13:::0;;;;::::1;;;4954:14;4938:30:::0;;::::1;;::::0;;4875:101::o;3552:236::-;3621:13;;;;;;;3613:42;;;;-1:-1:-1;;;3613:42:12;;12902:2:14;3613:42:12;;;12884:21:14;12941:2;12921:18;;;12914:30;12980:18;12960;;;12953:46;13016:18;;3613:42:12;12700:340:14;3613:42:12;3694:10;3674:16;3682:7;3674;:16::i;:::-;-1:-1:-1;;;;;3674:30:12;;3666:39;;;;;;3756:16;;;;:7;:16;;;;;:23;;-1:-1:-1;;3756:23:12;3775:4;3756:23;;;3552:236::o;1899:192:11:-;1072:6;;-1:-1:-1;;;;;1072:6:11;682:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;15178:2:14;1211:68:11;;;15160:21:14;;;15197:18;;;15190:30;15256:34;15236:18;;;15229:62;15308:18;;1211:68:11;14976:356:14;1211:68:11;-1:-1:-1;;;;;1988:22:11;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:11;;9232:2:14;1980:73:11::1;::::0;::::1;9214:21:14::0;9271:2;9251:18;;;9244:30;9310:34;9290:18;;;9283:62;9381:8;9361:18;;;9354:36;9407:19;;1980:73:11::1;9030:402:14::0;1980:73:11::1;2064:19;2074:8;2064:9;:19::i;1481:305:4:-:0;1583:4;-1:-1:-1;;;;;;1620:40:4;;1635:25;1620:40;;:105;;-1:-1:-1;;;;;;;1677:48:4;;1692:33;1677:48;1620:105;:158;;;-1:-1:-1;911:25:3;-1:-1:-1;;;;;;896:40:3;;;1742:36:4;787:157:3;11363:174:4;11438:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;11438:29:4;-1:-1:-1;;;;;11438:29:4;;;;;;;;:24;;11492:23;11438:24;11492:14;:23::i;:::-;-1:-1:-1;;;;;11483:46:4;;;;;;;;;;;11363:174;;:::o;7673:348::-;7766:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;7783:73;;;;-1:-1:-1;;;7783:73:4;;11379:2:14;7783:73:4;;;11361:21:14;11418:2;11398:18;;;11391:30;11457:34;11437:18;;;11430:62;11528:14;11508:18;;;11501:42;11560:19;;7783:73:4;11177:408:14;7783:73:4;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:4;:7;-1:-1:-1;;;;;7925:16:4;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:4;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:4;;7925:51;:87;;;-1:-1:-1;;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7980:32;7917:96;7673:348;-1:-1:-1;;;;7673:348:4:o;10665:580::-;10824:4;-1:-1:-1;;;;;10797:31:4;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:4;;10789:85;;;;-1:-1:-1;;;10789:85:4;;15879:2:14;10789:85:4;;;15861:21:14;15918:2;15898:18;;;15891:30;15957:34;15937:18;;;15930:62;16028:11;16008:18;;;16001:39;16057:19;;10789:85:4;15677:405:14;10789:85:4;10965:39;10986:4;10992:2;10996:7;10965:20;:39::i;:::-;11069:29;11086:1;11090:7;11069:8;:29::i;:::-;-1:-1:-1;;;;;11111:15:4;;;;;;:9;:15;;;;;:20;;11130:1;;11111:15;:20;;11130:1;;11111:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11142:13:4;;;;;;:9;:13;;;;;:18;;11159:1;;11142:13;:18;;11159:1;;11142:18;:::i;:::-;;;;-1:-1:-1;;11171:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;11171:21:4;-1:-1:-1;;;;;11171:21:4;;;;;;;;;11210:27;;11171:16;;11210:27;;;;;;;10665:580;;;:::o;8363:110::-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;2099:173:11:-;2174:6;;;-1:-1:-1;;;;;2191:17:11;;;-1:-1:-1;;2191:17:11;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;6751:315:4:-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:4;;8813:2:14;6947:111:4;;;8795:21:14;8852:2;8832:18;;;8825:30;8891:34;8871:18;;;8864:62;8962:20;8942:18;;;8935:48;9000:19;;6947:111:4;8611:414:14;288:723:13;344:13;565:10;561:53;;-1:-1:-1;;592:10:13;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:13;;-1:-1:-1;744:2:13;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:13;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:13;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:13;958:2;949:11;;:::i;:::-;;;818:154;;2613:589:5;-1:-1:-1;;;;;2819:18:5;;2815:187;;2854:40;2886:7;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164;2854:40;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:5;:4;-1:-1:-1;;;;;2916:10:5;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:5;;3012:183;;3049:45;3086:7;3049:36;:45::i;3012:183::-;3122:4;-1:-1:-1;;;;;3116:10:5;:2;-1:-1:-1;;;;;3116:10:5;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;8700:321:4:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:4;;8813:2:14;8859:154:4;;;8795:21:14;8852:2;8832:18;;;8825:30;8891:34;8871:18;;;8864:62;8962:20;8942:18;;;8935:48;9000:19;;8859:154:4;8611:414:14;12102:799:4;12257:4;-1:-1:-1;;;;;12278:13:4;;1066:20:0;1114:8;12274:620:4;;12314:72;;-1:-1:-1;;;12314:72:4;;-1:-1:-1;;;;;12314:36:4;;;;;:72;;682:10:1;;12365:4:4;;12371:7;;12380:5;;12314:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12314:72:4;;;;;;;;-1:-1:-1;;12314:72:4;;;;;;;;;;;;:::i;:::-;;;12310:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12556:13:4;;12552:272;;12599:60;;-1:-1:-1;;;12599:60:4;;8813:2:14;12599:60:4;;;8795:21:14;8852:2;8832:18;;;8825:30;8891:34;8871:18;;;8864:62;8962:20;8942:18;;;8935:48;9000:19;;12599:60:4;8611:414:14;12552:272:4;12774:6;12768:13;12759:6;12755:2;12751:15;12744:38;12310:529;-1:-1:-1;;;;;;12437:51:4;-1:-1:-1;;;12437:51:4;;-1:-1:-1;12430:58:4;;12274:620;-1:-1:-1;12878:4:4;12102:799;;;;;;:::o;4716:988:5:-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:5;;;5194:328;;-1:-1:-1;;;;;5265:18:5;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:5;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:5;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:5;;6252:46;;6703:26;;;;;;:::i;:::-;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:5:o;9357:382:4:-;-1:-1:-1;;;;;9437:16:4;;9429:61;;;;-1:-1:-1;;;9429:61:4;;14404:2:14;9429:61:4;;;14386:21:14;;;14423:18;;;14416:30;14482:34;14462:18;;;14455:62;14534:18;;9429:61:4;14202:356:14;9429:61:4;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;:30;9501:58;;;;-1:-1:-1;;;9501:58:4;;9639:2:14;9501:58:4;;;9621:21:14;9678:2;9658:18;;;9651:30;9717;9697:18;;;9690:58;9765:18;;9501:58:4;9437:352:14;9501:58:4;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:4;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;9659:21:4;-1:-1:-1;;;;;9659:21:4;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:14;82:20;;-1:-1:-1;;;;;131:54:14;;121:65;;111:93;;200:1;197;190:12;215:186;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:14:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:1138::-;1099:6;1107;1115;1123;1176:3;1164:9;1155:7;1151:23;1147:33;1144:53;;;1193:1;1190;1183:12;1144:53;1216:29;1235:9;1216:29;:::i;:::-;1206:39;;1264:38;1298:2;1287:9;1283:18;1264:38;:::i;:::-;1254:48;;1349:2;1338:9;1334:18;1321:32;1311:42;;1404:2;1393:9;1389:18;1376:32;1427:18;1468:2;1460:6;1457:14;1454:34;;;1484:1;1481;1474:12;1454:34;1522:6;1511:9;1507:22;1497:32;;1567:7;1560:4;1556:2;1552:13;1548:27;1538:55;;1589:1;1586;1579:12;1538:55;1625:2;1612:16;1647:2;1643;1640:10;1637:36;;;1653:18;;:::i;:::-;1728:2;1722:9;1696:2;1782:13;;-1:-1:-1;;1778:22:14;;;1802:2;1774:31;1770:40;1758:53;;;1826:18;;;1846:22;;;1823:46;1820:72;;;1872:18;;:::i;:::-;1912:10;1908:2;1901:22;1947:2;1939:6;1932:18;1987:7;1982:2;1977;1973;1969:11;1965:20;1962:33;1959:53;;;2008:1;2005;1998:12;1959:53;2064:2;2059;2055;2051:11;2046:2;2038:6;2034:15;2021:46;2109:1;2104:2;2099;2091:6;2087:15;2083:24;2076:35;2130:6;2120:16;;;;;;;1004:1138;;;;;;;:::o;2147:347::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2312:29;2331:9;2312:29;:::i;:::-;2302:39;;2391:2;2380:9;2376:18;2363:32;2438:5;2431:13;2424:21;2417:5;2414:32;2404:60;;2460:1;2457;2450:12;2404:60;2483:5;2473:15;;;2147:347;;;;;:::o;2499:254::-;2567:6;2575;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2667:29;2686:9;2667:29;:::i;:::-;2657:39;2743:2;2728:18;;;;2715:32;;-1:-1:-1;;;2499:254:14:o;2758:615::-;2844:6;2852;2905:2;2893:9;2884:7;2880:23;2876:32;2873:52;;;2921:1;2918;2911:12;2873:52;2961:9;2948:23;2990:18;3031:2;3023:6;3020:14;3017:34;;;3047:1;3044;3037:12;3017:34;3085:6;3074:9;3070:22;3060:32;;3130:7;3123:4;3119:2;3115:13;3111:27;3101:55;;3152:1;3149;3142:12;3101:55;3192:2;3179:16;3218:2;3210:6;3207:14;3204:34;;;3234:1;3231;3224:12;3204:34;3287:7;3282:2;3272:6;3269:1;3265:14;3261:2;3257:23;3253:32;3250:45;3247:65;;;3308:1;3305;3298:12;3247:65;3339:2;3331:11;;;;;3361:6;;-1:-1:-1;2758:615:14;;-1:-1:-1;;;;2758:615:14:o;3378:245::-;3436:6;3489:2;3477:9;3468:7;3464:23;3460:32;3457:52;;;3505:1;3502;3495:12;3457:52;3544:9;3531:23;3563:30;3587:5;3563:30;:::i;3628:249::-;3697:6;3750:2;3738:9;3729:7;3725:23;3721:32;3718:52;;;3766:1;3763;3756:12;3718:52;3798:9;3792:16;3817:30;3841:5;3817:30;:::i;3882:592::-;3953:6;3961;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4070:9;4057:23;4099:18;4140:2;4132:6;4129:14;4126:34;;;4156:1;4153;4146:12;4126:34;4194:6;4183:9;4179:22;4169:32;;4239:7;4232:4;4228:2;4224:13;4220:27;4210:55;;4261:1;4258;4251:12;4210:55;4301:2;4288:16;4327:2;4319:6;4316:14;4313:34;;;4343:1;4340;4333:12;4313:34;4388:7;4383:2;4374:6;4370:2;4366:15;4362:24;4359:37;4356:57;;;4409:1;4406;4399:12;4479:180;4538:6;4591:2;4579:9;4570:7;4566:23;4562:32;4559:52;;;4607:1;4604;4597:12;4559:52;-1:-1:-1;4630:23:14;;4479:180;-1:-1:-1;4479:180:14:o;4664:257::-;4705:3;4743:5;4737:12;4770:6;4765:3;4758:19;4786:63;4842:6;4835:4;4830:3;4826:14;4819:4;4812:5;4808:16;4786:63;:::i;:::-;4903:2;4882:15;-1:-1:-1;;4878:29:14;4869:39;;;;4910:4;4865:50;;4664:257;-1:-1:-1;;4664:257:14:o;4926:185::-;4968:3;5006:5;5000:12;5021:52;5066:6;5061:3;5054:4;5047:5;5043:16;5021:52;:::i;:::-;5089:16;;;;;4926:185;-1:-1:-1;;4926:185:14:o;5116:1231::-;5292:3;5321:1;5354:6;5348:13;5384:3;5406:1;5434:9;5430:2;5426:18;5416:28;;5494:2;5483:9;5479:18;5516;5506:61;;5560:4;5552:6;5548:17;5538:27;;5506:61;5586:2;5634;5626:6;5623:14;5603:18;5600:38;5597:222;;;-1:-1:-1;;;5668:3:14;5661:90;5774:4;5771:1;5764:15;5804:4;5799:3;5792:17;5597:222;5835:18;5862:104;;;;5980:1;5975:320;;;;5828:467;;5862:104;-1:-1:-1;;5895:24:14;;5883:37;;5940:16;;;;-1:-1:-1;5862:104:14;;5975:320;20053:1;20046:14;;;20090:4;20077:18;;6070:1;6084:165;6098:6;6095:1;6092:13;6084:165;;;6176:14;;6163:11;;;6156:35;6219:16;;;;6113:10;;6084:165;;;6088:3;;6278:6;6273:3;6269:16;6262:23;;5828:467;;;;;;;6311:30;6337:3;6329:6;6311:30;:::i;:::-;6304:37;5116:1231;-1:-1:-1;;;;;5116:1231:14:o;6583:511::-;6777:4;-1:-1:-1;;;;;6887:2:14;6879:6;6875:15;6864:9;6857:34;6939:2;6931:6;6927:15;6922:2;6911:9;6907:18;6900:43;;6979:6;6974:2;6963:9;6959:18;6952:34;7022:3;7017:2;7006:9;7002:18;6995:31;7043:45;7083:3;7072:9;7068:19;7060:6;7043:45;:::i;:::-;7035:53;6583:511;-1:-1:-1;;;;;;6583:511:14:o;7291:219::-;7440:2;7429:9;7422:21;7403:4;7460:44;7500:2;7489:9;7485:18;7477:6;7460:44;:::i;20106:128::-;20146:3;20177:1;20173:6;20170:1;20167:13;20164:39;;;20183:18;;:::i;:::-;-1:-1:-1;20219:9:14;;20106:128::o;20239:120::-;20279:1;20305;20295:35;;20310:18;;:::i;:::-;-1:-1:-1;20344:9:14;;20239:120::o;20364:168::-;20404:7;20470:1;20466;20462:6;20458:14;20455:1;20452:21;20447:1;20440:9;20433:17;20429:45;20426:71;;;20477:18;;:::i;:::-;-1:-1:-1;20517:9:14;;20364:168::o;20537:125::-;20577:4;20605:1;20602;20599:8;20596:34;;;20610:18;;:::i;:::-;-1:-1:-1;20647:9:14;;20537:125::o;20667:258::-;20739:1;20749:113;20763:6;20760:1;20757:13;20749:113;;;20839:11;;;20833:18;20820:11;;;20813:39;20785:2;20778:10;20749:113;;;20880:6;20877:1;20874:13;20871:48;;;-1:-1:-1;;20915:1:14;20897:16;;20890:27;20667:258::o;20930:437::-;21009:1;21005:12;;;;21052;;;21073:61;;21127:4;21119:6;21115:17;21105:27;;21073:61;21180:2;21172:6;21169:14;21149:18;21146:38;21143:218;;;-1:-1:-1;;;21214:1:14;21207:88;21318:4;21315:1;21308:15;21346:4;21343:1;21336:15;21143:218;;20930:437;;;:::o;21372:135::-;21411:3;-1:-1:-1;;21432:17:14;;21429:43;;;21452:18;;:::i;:::-;-1:-1:-1;21499:1:14;21488:13;;21372:135::o;21512:112::-;21544:1;21570;21560:35;;21575:18;;:::i;:::-;-1:-1:-1;21609:9:14;;21512:112::o;21629:184::-;-1:-1:-1;;;21678:1:14;21671:88;21778:4;21775:1;21768:15;21802:4;21799:1;21792:15;21818:184;-1:-1:-1;;;21867:1:14;21860:88;21967:4;21964:1;21957:15;21991:4;21988:1;21981:15;22007:184;-1:-1:-1;;;22056:1:14;22049:88;22156:4;22153:1;22146:15;22180:4;22177:1;22170:15;22196:184;-1:-1:-1;;;22245:1:14;22238:88;22345:4;22342:1;22335:15;22369:4;22366:1;22359:15;22385:184;-1:-1:-1;;;22434:1:14;22427:88;22534:4;22531:1;22524:15;22558:4;22555:1;22548:15;22574:177;-1:-1:-1;;;;;;22652:5:14;22648:78;22641:5;22638:89;22628:117;;22741:1;22738;22731:12

Swarm Source

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