ETH Price: $3,246.55 (+3.06%)
Gas: 2 Gwei

Token

Senshi Souls (SOUL)
 

Overview

Max Total Supply

667 SOUL

Holders

167

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
despicably.eth
Balance
1 SOUL
0x1be3bb226a8b60d101c973ffbeec66b3669de3d4
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:
SenshiSouls

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-30
*/

// SPDX-License-Identifier: MIT
/*

   ▄████████    ▄████████ ███▄▄▄▄      ▄████████    ▄█    █▄     ▄█          ▄████████  ▄██████▄  ███    █▄   ▄█          ▄████████ 
  ███    ███   ███    ███ ███▀▀▀██▄   ███    ███   ███    ███   ███         ███    ███ ███    ███ ███    ███ ███         ███    ███ 
  ███    █▀    ███    █▀  ███   ███   ███    █▀    ███    ███   ███▌        ███    █▀  ███    ███ ███    ███ ███         ███    █▀  
  ███         ▄███▄▄▄     ███   ███   ███         ▄███▄▄▄▄███▄▄ ███▌        ███        ███    ███ ███    ███ ███         ███        
▀███████████ ▀▀███▀▀▀     ███   ███ ▀███████████ ▀▀███▀▀▀▀███▀  ███▌      ▀███████████ ███    ███ ███    ███ ███       ▀███████████ 
         ███   ███    █▄  ███   ███          ███   ███    ███   ███                ███ ███    ███ ███    ███ ███                ███ 
   ▄█    ███   ███    ███ ███   ███    ▄█    ███   ███    ███   ███          ▄█    ███ ███    ███ ███    ███ ███▌    ▄    ▄█    ███ 
 ▄████████▀    ██████████  ▀█   █▀   ▄████████▀    ███    █▀    █▀         ▄████████▀   ▀██████▀  ████████▀  █████▄▄██  ▄████████▀  
                                                                                                             ▀                      
                                                         By Devko.dev#7286
 */
pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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);
    }
}

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;
    }
}

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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);
            }
        }
    }
}

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);
}

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);
}

pragma solidity ^0.8.0;


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

pragma solidity ^0.8.0;


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

pragma solidity ^0.8.0;


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

pragma solidity ^0.8.0;


/**
 * @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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.7;

contract SenshiSouls is ERC721, Ownable {

    using Strings for uint256;
    using Counters for Counters.Counter;

    string private _tokenBaseURI = "https://gateway.pinata.cloud/ipfs/QmNQaGg5QFmvW15iwaX8S44CF3pvZ3QtbEd9LHb7A3rPnd/";
    uint256 public SS_TEAM_RESERVE = 111;
    uint256 public SS_FREE_RESERVE = 666;
    uint256 public SS_PUBLIC = 6000;
    uint256 public SS_MAX = SS_FREE_RESERVE + SS_TEAM_RESERVE + SS_PUBLIC;
    uint256 public SS_PRICE = 0.066 ether;
    uint256 public SS_PER_MINT = 10;
    mapping(address => uint256) public FREE_LIST;

    uint256 public freeTokensMinted;
    uint256 public publicTokensMinted;
    uint256 public teamTokensMinted;

    bool public freeLive;
    bool public publicLive;

    Counters.Counter private _tokensMinted;

    constructor() ERC721("Senshi Souls", "SOUL") {}

    function gift(address[] calldata receivers) external onlyOwner {
        require(teamTokensMinted + receivers.length <= SS_TEAM_RESERVE, "EXCEED_TEAM_RESERVE");
        require(_tokensMinted.current() + receivers.length <= SS_MAX, "EXCEED_MAX");
        for (uint256 i = 0; i < receivers.length; i++) {
            teamTokensMinted++;
            _tokensMinted.increment();
            _safeMint(receivers[i], _tokensMinted.current());
        }
    }

    function founderMint(uint256 tokenQuantity) external onlyOwner {
        require(teamTokensMinted + tokenQuantity <= SS_TEAM_RESERVE, "EXCEED_TEAM_RESERVE");
        require(_tokensMinted.current() + tokenQuantity <= SS_MAX, "EXCEED_MAX");
        for(uint256 i = 0; i < tokenQuantity; i++) {
            teamTokensMinted++;
            _tokensMinted.increment();
            _safeMint(msg.sender, _tokensMinted.current());
        }
    }

    function freeMint(uint256 tokenQuantity) external {
        require(freeLive, "MINT_CLOSED");
        require(freeTokensMinted + tokenQuantity <= SS_FREE_RESERVE, "EXCEED_FREE_RESERVE");
        require(_tokensMinted.current() + tokenQuantity <= SS_MAX, "EXCEED_MAX");
        require(FREE_LIST[msg.sender] + tokenQuantity <= 5, "EXCEED_PER_WALLET");
        for (uint256 i = 0; i < tokenQuantity; i++) {
            freeTokensMinted++;
            FREE_LIST[msg.sender]++;
            _tokensMinted.increment();
            _safeMint(msg.sender, _tokensMinted.current());
        }
    }

    function mint(uint256 tokenQuantity) external payable {
        require(publicLive, "MINT_CLOSED");
        require(publicTokensMinted + tokenQuantity <= SS_PUBLIC, "EXCEED_PUBLIC");
        require(_tokensMinted.current() + tokenQuantity <= SS_MAX, "EXCEED_MAX");
        require(tokenQuantity <= SS_PER_MINT, "EXCEED_PER_MINT");
        require(SS_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        for (uint256 i = 0; i < tokenQuantity; i++) {
            publicTokensMinted++;
            _tokensMinted.increment();
            _safeMint(msg.sender, _tokensMinted.current());
        }
    }

    function withdraw() external onlyOwner {
        uint256 currentBalance = address(this).balance;
        Address.sendValue(payable(0x738F58d7B2445960F5ffED63587b29876e8dFc78), currentBalance * 1 / 10);
        Address.sendValue(payable(0x69c10b60fBba7b662131b9263940aC13Fe6766E9), currentBalance * 1 / 10);
        Address.sendValue(payable(0x93CB07c1bA5826dbeF2519A77B3886ce809828fe), currentBalance * 1 / 10);
        Address.sendValue(payable(0x11111F01570EeAA3e5a2Fd51f4A2f127661B9834), currentBalance * 1 / 10);
        Address.sendValue(payable(0x96Eb3dD8c2f72b4BFd772Af77808EC2684563E2A), currentBalance * 2 / 10);        
        Address.sendValue(payable(0xd548fE1a0952e26B458df470F0859cdaf8a56917), currentBalance * 2 / 10);
        Address.sendValue(payable(0xF2868A47a30299E088a9C9353b988686FD9E6193), address(this).balance);
    }

    function togglePublicMintStatus() external onlyOwner {
        publicLive = !publicLive;
    }

    function toggleFreeMintStatus() external onlyOwner {
        freeLive = !freeLive;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        SS_PRICE = newPrice;
    }

    function setTeamReserve(uint256 newCount) external onlyOwner {
        SS_TEAM_RESERVE = newCount;
    }

    function setFreeReserve(uint256 newCount) external onlyOwner {
        SS_FREE_RESERVE = newCount;
    }

    function setPublic(uint256 newCount) external onlyOwner {
        SS_PUBLIC = newCount;
    }
    
    function setMax(uint256 newCount) external onlyOwner {
        SS_MAX = newCount;
    }
    
    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

    function totalSupply() public view returns (uint256) {
        return _tokensMinted.current();
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FREE_LIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SS_FREE_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SS_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SS_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SS_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SS_TEAM_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"founderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCount","type":"uint256"}],"name":"setFreeReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCount","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCount","type":"uint256"}],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCount","type":"uint256"}],"name":"setTeamReserve","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":"teamTokensMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFreeMintStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMintStatus","outputs":[],"stateMutability":"nonpayable","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"},{"stateMutability":"payable","type":"receive"}]

61010060405260516080818152906200286560a03980516200002a916007916020909101906200015d565b50606f60085561029a600955611770600a55600a5460085460095462000051919062000203565b6200005d919062000203565b600b5566ea7aa67b2d0000600c55600a600d553480156200007d57600080fd5b50604080518082018252600c81526b53656e73686920536f756c7360a01b60208083019182528351808501909452600484526314d3d55360e21b908401528151919291620000ce916000916200015d565b508051620000e49060019060208401906200015d565b50505062000101620000fb6200010760201b60201c565b6200010b565b62000267565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016b906200022a565b90600052602060002090601f0160209004810192826200018f5760008555620001da565b82601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b5b80821115620001e85760008155600101620001ed565b600082198211156200022557634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200023f57607f821691505b602082108114156200026157634e487b7160e01b600052602260045260246000fd5b50919050565b6125ee80620002776000396000f3fe6080604052600436106102555760003560e01c80636fd4d76c11610139578063b1ad3a1c116100b6578063e985e9c51161007a578063e985e9c51461069a578063e9e77a22146106e3578063eaa78882146106f9578063f2fde38b1461070f578063f42202e81461072f578063ff12ec741461074f57600080fd5b8063b1ad3a1c1461060f578063b7f751d814610625578063b88d4fde14610644578063c87b56dd14610664578063dbcaa52c1461068457600080fd5b806391b7f5ed116100fd57806391b7f5ed1461059257806395d89b41146105b257806397f5ec67146105c7578063a0712d68146105dc578063a22cb465146105ef57600080fd5b80636fd4d76c1461050557806370a082311461051f578063715018a61461053f5780637c928fe9146105545780638da5cb5b1461057457600080fd5b806322cb1ec8116101d25780633ccfd60b116101965780633ccfd60b1461046457806342842e0e14610479578063501fbefc14610499578063532e29d2146104af57806355f804b3146104c55780636352211e146104e557600080fd5b806322cb1ec8146103d857806323b872dd146103ee57806331440f311461040e57806331845f7d146104245780633a37fa241461044457600080fd5b80630e0712bf116102195780630e0712bf1461034d5780630e98f5b31461036d578063163e1e611461038357806318160ddd146103a35780631fe9eabc146103b857600080fd5b806301ffc9a71461026157806303801f5f1461029657806306fdde03146102d1578063081812fc146102f3578063095ea7b31461032b57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004612164565b610764565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102c36102b1366004611f1c565b600e6020526000908152604090205481565b60405190815260200161028d565b3480156102dd57600080fd5b506102e66107b6565b60405161028d9190612343565b3480156102ff57600080fd5b5061031361030e3660046121fe565b610848565b6040516001600160a01b03909116815260200161028d565b34801561033757600080fd5b5061034b6103463660046120c5565b6108e2565b005b34801561035957600080fd5b5061034b6103683660046121fe565b6109f8565b34801561037957600080fd5b506102c3600b5481565b34801561038f57600080fd5b5061034b61039e3660046120ef565b610a27565b3480156103af57600080fd5b506102c3610b52565b3480156103c457600080fd5b5061034b6103d33660046121fe565b610b62565b3480156103e457600080fd5b506102c360115481565b3480156103fa57600080fd5b5061034b610409366004611f71565b610b91565b34801561041a57600080fd5b506102c360105481565b34801561043057600080fd5b5061034b61043f3660046121fe565b610bc2565b34801561045057600080fd5b5061034b61045f3660046121fe565b610bf1565b34801561047057600080fd5b5061034b610c20565b34801561048557600080fd5b5061034b610494366004611f71565b610d59565b3480156104a557600080fd5b506102c3600a5481565b3480156104bb57600080fd5b506102c3600d5481565b3480156104d157600080fd5b5061034b6104e036600461219e565b610d74565b3480156104f157600080fd5b506103136105003660046121fe565b610daa565b34801561051157600080fd5b506012546102819060ff1681565b34801561052b57600080fd5b506102c361053a366004611f1c565b610e21565b34801561054b57600080fd5b5061034b610ea8565b34801561056057600080fd5b5061034b61056f3660046121fe565b610ede565b34801561058057600080fd5b506006546001600160a01b0316610313565b34801561059e57600080fd5b5061034b6105ad3660046121fe565b611079565b3480156105be57600080fd5b506102e66110a8565b3480156105d357600080fd5b5061034b6110b7565b61034b6105ea3660046121fe565b6110fe565b3480156105fb57600080fd5b5061034b61060a366004612089565b6112a8565b34801561061b57600080fd5b506102c360085481565b34801561063157600080fd5b5060125461028190610100900460ff1681565b34801561065057600080fd5b5061034b61065f366004611fad565b6112b3565b34801561067057600080fd5b506102e661067f3660046121fe565b6112eb565b34801561069057600080fd5b506102c3600f5481565b3480156106a657600080fd5b506102816106b5366004611f3e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ef57600080fd5b506102c360095481565b34801561070557600080fd5b506102c3600c5481565b34801561071b57600080fd5b5061034b61072a366004611f1c565b611384565b34801561073b57600080fd5b5061034b61074a3660046121fe565b61141c565b34801561075b57600080fd5b5061034b61151d565b60006001600160e01b031982166380ac58cd60e01b148061079557506001600160e01b03198216635b5e139f60e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107c5906124e0565b80601f01602080910402602001604051908101604052809291908181526020018280546107f1906124e0565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108ed82610daa565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108bd565b336001600160a01b0382161480610977575061097781336106b5565b6109e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108bd565b6109f3838361155b565b505050565b6006546001600160a01b03163314610a225760405162461bcd60e51b81526004016108bd906123a8565b600955565b6006546001600160a01b03163314610a515760405162461bcd60e51b81526004016108bd906123a8565b600854601154610a62908390612452565b1115610aa65760405162461bcd60e51b81526020600482015260136024820152724558434545445f5445414d5f5245534552564560681b60448201526064016108bd565b600b5481610ab360135490565b610abd9190612452565b1115610adb5760405162461bcd60e51b81526004016108bd906123dd565b60005b818110156109f35760118054906000610af68361251b565b9190505550610b09601380546001019055565b610b40838383818110610b1e57610b1e612576565b9050602002016020810190610b339190611f1c565b6013546115c9565b6115c9565b80610b4a8161251b565b915050610ade565b6000610b5d60135490565b905090565b6006546001600160a01b03163314610b8c5760405162461bcd60e51b81526004016108bd906123a8565b600b55565b610b9b33826115e3565b610bb75760405162461bcd60e51b81526004016108bd90612401565b6109f38383836116da565b6006546001600160a01b03163314610bec5760405162461bcd60e51b81526004016108bd906123a8565b600a55565b6006546001600160a01b03163314610c1b5760405162461bcd60e51b81526004016108bd906123a8565b600855565b6006546001600160a01b03163314610c4a5760405162461bcd60e51b81526004016108bd906123a8565b47610c7f73738f58d7b2445960f5ffed63587b29876e8dfc78600a610c7084600161247e565b610c7a919061246a565b61187a565b610ca47369c10b60fbba7b662131b9263940ac13fe6766e9600a610c7084600161247e565b610cc97393cb07c1ba5826dbef2519a77b3886ce809828fe600a610c7084600161247e565b610cee7311111f01570eeaa3e5a2fd51f4a2f127661b9834600a610c7084600161247e565b610d137396eb3dd8c2f72b4bfd772af77808ec2684563e2a600a610c7084600261247e565b610d3873d548fe1a0952e26b458df470f0859cdaf8a56917600a610c7084600261247e565b610d5673f2868a47a30299e088a9c9353b988686fd9e61934761187a565b50565b6109f3838383604051806020016040528060008152506112b3565b6006546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016108bd906123a8565b6109f360078383611e67565b6000818152600260205260408120546001600160a01b0316806107b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108bd565b60006001600160a01b038216610e8c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108bd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ed25760405162461bcd60e51b81526004016108bd906123a8565b610edc6000611993565b565b60125460ff16610f1e5760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b60448201526064016108bd565b60095481600f54610f2f9190612452565b1115610f735760405162461bcd60e51b81526020600482015260136024820152724558434545445f465245455f5245534552564560681b60448201526064016108bd565b600b5481610f8060135490565b610f8a9190612452565b1115610fa85760405162461bcd60e51b81526004016108bd906123dd565b336000908152600e6020526040902054600590610fc6908390612452565b11156110085760405162461bcd60e51b8152602060048201526011602482015270115610d1515117d4115497d5d053131155607a1b60448201526064016108bd565b60005b8181101561107557600f80549060006110238361251b565b9091555050336000908152600e602052604081208054916110438361251b565b9190505550611056601380546001019055565b61106333610b3b60135490565b8061106d8161251b565b91505061100b565b5050565b6006546001600160a01b031633146110a35760405162461bcd60e51b81526004016108bd906123a8565b600c55565b6060600180546107c5906124e0565b6006546001600160a01b031633146110e15760405162461bcd60e51b81526004016108bd906123a8565b6012805461ff001981166101009182900460ff1615909102179055565b601254610100900460ff166111435760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b60448201526064016108bd565b600a54816010546111549190612452565b11156111925760405162461bcd60e51b815260206004820152600d60248201526c4558434545445f5055424c494360981b60448201526064016108bd565b600b548161119f60135490565b6111a99190612452565b11156111c75760405162461bcd60e51b81526004016108bd906123dd565b600d5481111561120b5760405162461bcd60e51b815260206004820152600f60248201526e115610d1515117d4115497d3525395608a1b60448201526064016108bd565b3481600c5461121a919061247e565b111561125b5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016108bd565b60005b8181101561107557601080549060006112768361251b565b9190505550611289601380546001019055565b61129633610b3b60135490565b806112a08161251b565b91505061125e565b6110753383836119e5565b6112bd33836115e3565b6112d95760405162461bcd60e51b81526004016108bd90612401565b6112e584848484611ab4565b50505050565b6000818152600260205260409020546060906001600160a01b03166113525760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016108bd565b600761135d83611ae7565b60405160200161136e92919061225f565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146113ae5760405162461bcd60e51b81526004016108bd906123a8565b6001600160a01b0381166114135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bd565b610d5681611993565b6006546001600160a01b031633146114465760405162461bcd60e51b81526004016108bd906123a8565b600854816011546114579190612452565b111561149b5760405162461bcd60e51b81526020600482015260136024820152724558434545445f5445414d5f5245534552564560681b60448201526064016108bd565b600b54816114a860135490565b6114b29190612452565b11156114d05760405162461bcd60e51b81526004016108bd906123dd565b60005b8181101561107557601180549060006114eb8361251b565b91905055506114fe601380546001019055565b61150b33610b3b60135490565b806115158161251b565b9150506114d3565b6006546001600160a01b031633146115475760405162461bcd60e51b81526004016108bd906123a8565b6012805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159082610daa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611075828260405180602001604052806000815250611be5565b6000818152600260205260408120546001600160a01b031661165c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108bd565b600061166783610daa565b9050806001600160a01b0316846001600160a01b031614806116a25750836001600160a01b031661169784610848565b6001600160a01b0316145b806116d257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ed82610daa565b6001600160a01b0316146117555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108bd565b6001600160a01b0382166117b75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108bd565b6117c260008261155b565b6001600160a01b03831660009081526003602052604081208054600192906117eb90849061249d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611819908490612452565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156118ca5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108bd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611917576040519150601f19603f3d011682016040523d82523d6000602084013e61191c565b606091505b50509050806109f35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108bd565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a475760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611abf8484846116da565b611acb84848484611c18565b6112e55760405162461bcd60e51b81526004016108bd90612356565b606081611b0b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b355780611b1f8161251b565b9150611b2e9050600a8361246a565b9150611b0f565b60008167ffffffffffffffff811115611b5057611b5061258c565b6040519080825280601f01601f191660200182016040528015611b7a576020820181803683370190505b5090505b84156116d257611b8f60018361249d565b9150611b9c600a86612536565b611ba7906030612452565b60f81b818381518110611bbc57611bbc612576565b60200101906001600160f81b031916908160001a905350611bde600a8661246a565b9450611b7e565b611bef8383611d25565b611bfc6000848484611c18565b6109f35760405162461bcd60e51b81526004016108bd90612356565b60006001600160a01b0384163b15611d1a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5c903390899088908890600401612306565b602060405180830381600087803b158015611c7657600080fd5b505af1925050508015611ca6575060408051601f3d908101601f19168201909252611ca391810190612181565b60015b611d00573d808015611cd4576040519150601f19603f3d011682016040523d82523d6000602084013e611cd9565b606091505b508051611cf85760405162461bcd60e51b81526004016108bd90612356565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116d2565b506001949350505050565b6001600160a01b038216611d7b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108bd565b6000818152600260205260409020546001600160a01b031615611de05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108bd565b6001600160a01b0382166000908152600360205260408120805460019290611e09908490612452565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e73906124e0565b90600052602060002090601f016020900481019282611e955760008555611edb565b82601f10611eae5782800160ff19823516178555611edb565b82800160010185558215611edb579182015b82811115611edb578235825591602001919060010190611ec0565b50611ee7929150611eeb565b5090565b5b80821115611ee75760008155600101611eec565b80356001600160a01b0381168114611f1757600080fd5b919050565b600060208284031215611f2e57600080fd5b611f3782611f00565b9392505050565b60008060408385031215611f5157600080fd5b611f5a83611f00565b9150611f6860208401611f00565b90509250929050565b600080600060608486031215611f8657600080fd5b611f8f84611f00565b9250611f9d60208501611f00565b9150604084013590509250925092565b60008060008060808587031215611fc357600080fd5b611fcc85611f00565b9350611fda60208601611f00565b925060408501359150606085013567ffffffffffffffff80821115611ffe57600080fd5b818701915087601f83011261201257600080fd5b8135818111156120245761202461258c565b604051601f8201601f19908116603f0116810190838211818310171561204c5761204c61258c565b816040528281528a602084870101111561206557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561209c57600080fd5b6120a583611f00565b9150602083013580151581146120ba57600080fd5b809150509250929050565b600080604083850312156120d857600080fd5b6120e183611f00565b946020939093013593505050565b6000806020838503121561210257600080fd5b823567ffffffffffffffff8082111561211a57600080fd5b818501915085601f83011261212e57600080fd5b81358181111561213d57600080fd5b8660208260051b850101111561215257600080fd5b60209290920196919550909350505050565b60006020828403121561217657600080fd5b8135611f37816125a2565b60006020828403121561219357600080fd5b8151611f37816125a2565b600080602083850312156121b157600080fd5b823567ffffffffffffffff808211156121c957600080fd5b818501915085601f8301126121dd57600080fd5b8135818111156121ec57600080fd5b86602082850101111561215257600080fd5b60006020828403121561221057600080fd5b5035919050565b6000815180845261222f8160208601602086016124b4565b601f01601f19169290920160200192915050565b600081516122558185602086016124b4565b9290920192915050565b600080845481600182811c91508083168061227b57607f831692505b602080841082141561229b57634e487b7160e01b86526022600452602486fd5b8180156122af57600181146122c0576122ed565b60ff198616895284890196506122ed565b60008b81526020902060005b868110156122e55781548b8201529085019083016122cc565b505084890196505b5050505050506122fd8185612243565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061233990830184612217565b9695505050505050565b602081526000611f376020830184612217565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600a908201526908ab0868a8a88be9a82b60b31b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124655761246561254a565b500190565b60008261247957612479612560565b500490565b60008160001904831182151516156124985761249861254a565b500290565b6000828210156124af576124af61254a565b500390565b60005b838110156124cf5781810151838201526020016124b7565b838111156112e55750506000910152565b600181811c908216806124f457607f821691505b6020821081141561251557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561252f5761252f61254a565b5060010190565b60008261254557612545612560565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5657600080fdfea2646970667358221220f27d5e1bb665bd379ce52565fd45d13edfabf2ed1ed55a8d786fe473d01ec1f164736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e516147673551466d76573135697761583853343443463370765a335174624564394c486237413372506e642f

Deployed Bytecode

0x6080604052600436106102555760003560e01c80636fd4d76c11610139578063b1ad3a1c116100b6578063e985e9c51161007a578063e985e9c51461069a578063e9e77a22146106e3578063eaa78882146106f9578063f2fde38b1461070f578063f42202e81461072f578063ff12ec741461074f57600080fd5b8063b1ad3a1c1461060f578063b7f751d814610625578063b88d4fde14610644578063c87b56dd14610664578063dbcaa52c1461068457600080fd5b806391b7f5ed116100fd57806391b7f5ed1461059257806395d89b41146105b257806397f5ec67146105c7578063a0712d68146105dc578063a22cb465146105ef57600080fd5b80636fd4d76c1461050557806370a082311461051f578063715018a61461053f5780637c928fe9146105545780638da5cb5b1461057457600080fd5b806322cb1ec8116101d25780633ccfd60b116101965780633ccfd60b1461046457806342842e0e14610479578063501fbefc14610499578063532e29d2146104af57806355f804b3146104c55780636352211e146104e557600080fd5b806322cb1ec8146103d857806323b872dd146103ee57806331440f311461040e57806331845f7d146104245780633a37fa241461044457600080fd5b80630e0712bf116102195780630e0712bf1461034d5780630e98f5b31461036d578063163e1e611461038357806318160ddd146103a35780631fe9eabc146103b857600080fd5b806301ffc9a71461026157806303801f5f1461029657806306fdde03146102d1578063081812fc146102f3578063095ea7b31461032b57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004612164565b610764565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102c36102b1366004611f1c565b600e6020526000908152604090205481565b60405190815260200161028d565b3480156102dd57600080fd5b506102e66107b6565b60405161028d9190612343565b3480156102ff57600080fd5b5061031361030e3660046121fe565b610848565b6040516001600160a01b03909116815260200161028d565b34801561033757600080fd5b5061034b6103463660046120c5565b6108e2565b005b34801561035957600080fd5b5061034b6103683660046121fe565b6109f8565b34801561037957600080fd5b506102c3600b5481565b34801561038f57600080fd5b5061034b61039e3660046120ef565b610a27565b3480156103af57600080fd5b506102c3610b52565b3480156103c457600080fd5b5061034b6103d33660046121fe565b610b62565b3480156103e457600080fd5b506102c360115481565b3480156103fa57600080fd5b5061034b610409366004611f71565b610b91565b34801561041a57600080fd5b506102c360105481565b34801561043057600080fd5b5061034b61043f3660046121fe565b610bc2565b34801561045057600080fd5b5061034b61045f3660046121fe565b610bf1565b34801561047057600080fd5b5061034b610c20565b34801561048557600080fd5b5061034b610494366004611f71565b610d59565b3480156104a557600080fd5b506102c3600a5481565b3480156104bb57600080fd5b506102c3600d5481565b3480156104d157600080fd5b5061034b6104e036600461219e565b610d74565b3480156104f157600080fd5b506103136105003660046121fe565b610daa565b34801561051157600080fd5b506012546102819060ff1681565b34801561052b57600080fd5b506102c361053a366004611f1c565b610e21565b34801561054b57600080fd5b5061034b610ea8565b34801561056057600080fd5b5061034b61056f3660046121fe565b610ede565b34801561058057600080fd5b506006546001600160a01b0316610313565b34801561059e57600080fd5b5061034b6105ad3660046121fe565b611079565b3480156105be57600080fd5b506102e66110a8565b3480156105d357600080fd5b5061034b6110b7565b61034b6105ea3660046121fe565b6110fe565b3480156105fb57600080fd5b5061034b61060a366004612089565b6112a8565b34801561061b57600080fd5b506102c360085481565b34801561063157600080fd5b5060125461028190610100900460ff1681565b34801561065057600080fd5b5061034b61065f366004611fad565b6112b3565b34801561067057600080fd5b506102e661067f3660046121fe565b6112eb565b34801561069057600080fd5b506102c3600f5481565b3480156106a657600080fd5b506102816106b5366004611f3e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106ef57600080fd5b506102c360095481565b34801561070557600080fd5b506102c3600c5481565b34801561071b57600080fd5b5061034b61072a366004611f1c565b611384565b34801561073b57600080fd5b5061034b61074a3660046121fe565b61141c565b34801561075b57600080fd5b5061034b61151d565b60006001600160e01b031982166380ac58cd60e01b148061079557506001600160e01b03198216635b5e139f60e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107c5906124e0565b80601f01602080910402602001604051908101604052809291908181526020018280546107f1906124e0565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108ed82610daa565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108bd565b336001600160a01b0382161480610977575061097781336106b5565b6109e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108bd565b6109f3838361155b565b505050565b6006546001600160a01b03163314610a225760405162461bcd60e51b81526004016108bd906123a8565b600955565b6006546001600160a01b03163314610a515760405162461bcd60e51b81526004016108bd906123a8565b600854601154610a62908390612452565b1115610aa65760405162461bcd60e51b81526020600482015260136024820152724558434545445f5445414d5f5245534552564560681b60448201526064016108bd565b600b5481610ab360135490565b610abd9190612452565b1115610adb5760405162461bcd60e51b81526004016108bd906123dd565b60005b818110156109f35760118054906000610af68361251b565b9190505550610b09601380546001019055565b610b40838383818110610b1e57610b1e612576565b9050602002016020810190610b339190611f1c565b6013546115c9565b6115c9565b80610b4a8161251b565b915050610ade565b6000610b5d60135490565b905090565b6006546001600160a01b03163314610b8c5760405162461bcd60e51b81526004016108bd906123a8565b600b55565b610b9b33826115e3565b610bb75760405162461bcd60e51b81526004016108bd90612401565b6109f38383836116da565b6006546001600160a01b03163314610bec5760405162461bcd60e51b81526004016108bd906123a8565b600a55565b6006546001600160a01b03163314610c1b5760405162461bcd60e51b81526004016108bd906123a8565b600855565b6006546001600160a01b03163314610c4a5760405162461bcd60e51b81526004016108bd906123a8565b47610c7f73738f58d7b2445960f5ffed63587b29876e8dfc78600a610c7084600161247e565b610c7a919061246a565b61187a565b610ca47369c10b60fbba7b662131b9263940ac13fe6766e9600a610c7084600161247e565b610cc97393cb07c1ba5826dbef2519a77b3886ce809828fe600a610c7084600161247e565b610cee7311111f01570eeaa3e5a2fd51f4a2f127661b9834600a610c7084600161247e565b610d137396eb3dd8c2f72b4bfd772af77808ec2684563e2a600a610c7084600261247e565b610d3873d548fe1a0952e26b458df470f0859cdaf8a56917600a610c7084600261247e565b610d5673f2868a47a30299e088a9c9353b988686fd9e61934761187a565b50565b6109f3838383604051806020016040528060008152506112b3565b6006546001600160a01b03163314610d9e5760405162461bcd60e51b81526004016108bd906123a8565b6109f360078383611e67565b6000818152600260205260408120546001600160a01b0316806107b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108bd565b60006001600160a01b038216610e8c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108bd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ed25760405162461bcd60e51b81526004016108bd906123a8565b610edc6000611993565b565b60125460ff16610f1e5760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b60448201526064016108bd565b60095481600f54610f2f9190612452565b1115610f735760405162461bcd60e51b81526020600482015260136024820152724558434545445f465245455f5245534552564560681b60448201526064016108bd565b600b5481610f8060135490565b610f8a9190612452565b1115610fa85760405162461bcd60e51b81526004016108bd906123dd565b336000908152600e6020526040902054600590610fc6908390612452565b11156110085760405162461bcd60e51b8152602060048201526011602482015270115610d1515117d4115497d5d053131155607a1b60448201526064016108bd565b60005b8181101561107557600f80549060006110238361251b565b9091555050336000908152600e602052604081208054916110438361251b565b9190505550611056601380546001019055565b61106333610b3b60135490565b8061106d8161251b565b91505061100b565b5050565b6006546001600160a01b031633146110a35760405162461bcd60e51b81526004016108bd906123a8565b600c55565b6060600180546107c5906124e0565b6006546001600160a01b031633146110e15760405162461bcd60e51b81526004016108bd906123a8565b6012805461ff001981166101009182900460ff1615909102179055565b601254610100900460ff166111435760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b60448201526064016108bd565b600a54816010546111549190612452565b11156111925760405162461bcd60e51b815260206004820152600d60248201526c4558434545445f5055424c494360981b60448201526064016108bd565b600b548161119f60135490565b6111a99190612452565b11156111c75760405162461bcd60e51b81526004016108bd906123dd565b600d5481111561120b5760405162461bcd60e51b815260206004820152600f60248201526e115610d1515117d4115497d3525395608a1b60448201526064016108bd565b3481600c5461121a919061247e565b111561125b5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016108bd565b60005b8181101561107557601080549060006112768361251b565b9190505550611289601380546001019055565b61129633610b3b60135490565b806112a08161251b565b91505061125e565b6110753383836119e5565b6112bd33836115e3565b6112d95760405162461bcd60e51b81526004016108bd90612401565b6112e584848484611ab4565b50505050565b6000818152600260205260409020546060906001600160a01b03166113525760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016108bd565b600761135d83611ae7565b60405160200161136e92919061225f565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146113ae5760405162461bcd60e51b81526004016108bd906123a8565b6001600160a01b0381166114135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bd565b610d5681611993565b6006546001600160a01b031633146114465760405162461bcd60e51b81526004016108bd906123a8565b600854816011546114579190612452565b111561149b5760405162461bcd60e51b81526020600482015260136024820152724558434545445f5445414d5f5245534552564560681b60448201526064016108bd565b600b54816114a860135490565b6114b29190612452565b11156114d05760405162461bcd60e51b81526004016108bd906123dd565b60005b8181101561107557601180549060006114eb8361251b565b91905055506114fe601380546001019055565b61150b33610b3b60135490565b806115158161251b565b9150506114d3565b6006546001600160a01b031633146115475760405162461bcd60e51b81526004016108bd906123a8565b6012805460ff19811660ff90911615179055565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159082610daa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611075828260405180602001604052806000815250611be5565b6000818152600260205260408120546001600160a01b031661165c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108bd565b600061166783610daa565b9050806001600160a01b0316846001600160a01b031614806116a25750836001600160a01b031661169784610848565b6001600160a01b0316145b806116d257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116ed82610daa565b6001600160a01b0316146117555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108bd565b6001600160a01b0382166117b75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108bd565b6117c260008261155b565b6001600160a01b03831660009081526003602052604081208054600192906117eb90849061249d565b90915550506001600160a01b0382166000908152600360205260408120805460019290611819908490612452565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156118ca5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108bd565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611917576040519150601f19603f3d011682016040523d82523d6000602084013e61191c565b606091505b50509050806109f35760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108bd565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a475760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611abf8484846116da565b611acb84848484611c18565b6112e55760405162461bcd60e51b81526004016108bd90612356565b606081611b0b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b355780611b1f8161251b565b9150611b2e9050600a8361246a565b9150611b0f565b60008167ffffffffffffffff811115611b5057611b5061258c565b6040519080825280601f01601f191660200182016040528015611b7a576020820181803683370190505b5090505b84156116d257611b8f60018361249d565b9150611b9c600a86612536565b611ba7906030612452565b60f81b818381518110611bbc57611bbc612576565b60200101906001600160f81b031916908160001a905350611bde600a8661246a565b9450611b7e565b611bef8383611d25565b611bfc6000848484611c18565b6109f35760405162461bcd60e51b81526004016108bd90612356565b60006001600160a01b0384163b15611d1a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c5c903390899088908890600401612306565b602060405180830381600087803b158015611c7657600080fd5b505af1925050508015611ca6575060408051601f3d908101601f19168201909252611ca391810190612181565b60015b611d00573d808015611cd4576040519150601f19603f3d011682016040523d82523d6000602084013e611cd9565b606091505b508051611cf85760405162461bcd60e51b81526004016108bd90612356565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116d2565b506001949350505050565b6001600160a01b038216611d7b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108bd565b6000818152600260205260409020546001600160a01b031615611de05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108bd565b6001600160a01b0382166000908152600360205260408120805460019290611e09908490612452565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e73906124e0565b90600052602060002090601f016020900481019282611e955760008555611edb565b82601f10611eae5782800160ff19823516178555611edb565b82800160010185558215611edb579182015b82811115611edb578235825591602001919060010190611ec0565b50611ee7929150611eeb565b5090565b5b80821115611ee75760008155600101611eec565b80356001600160a01b0381168114611f1757600080fd5b919050565b600060208284031215611f2e57600080fd5b611f3782611f00565b9392505050565b60008060408385031215611f5157600080fd5b611f5a83611f00565b9150611f6860208401611f00565b90509250929050565b600080600060608486031215611f8657600080fd5b611f8f84611f00565b9250611f9d60208501611f00565b9150604084013590509250925092565b60008060008060808587031215611fc357600080fd5b611fcc85611f00565b9350611fda60208601611f00565b925060408501359150606085013567ffffffffffffffff80821115611ffe57600080fd5b818701915087601f83011261201257600080fd5b8135818111156120245761202461258c565b604051601f8201601f19908116603f0116810190838211818310171561204c5761204c61258c565b816040528281528a602084870101111561206557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561209c57600080fd5b6120a583611f00565b9150602083013580151581146120ba57600080fd5b809150509250929050565b600080604083850312156120d857600080fd5b6120e183611f00565b946020939093013593505050565b6000806020838503121561210257600080fd5b823567ffffffffffffffff8082111561211a57600080fd5b818501915085601f83011261212e57600080fd5b81358181111561213d57600080fd5b8660208260051b850101111561215257600080fd5b60209290920196919550909350505050565b60006020828403121561217657600080fd5b8135611f37816125a2565b60006020828403121561219357600080fd5b8151611f37816125a2565b600080602083850312156121b157600080fd5b823567ffffffffffffffff808211156121c957600080fd5b818501915085601f8301126121dd57600080fd5b8135818111156121ec57600080fd5b86602082850101111561215257600080fd5b60006020828403121561221057600080fd5b5035919050565b6000815180845261222f8160208601602086016124b4565b601f01601f19169290920160200192915050565b600081516122558185602086016124b4565b9290920192915050565b600080845481600182811c91508083168061227b57607f831692505b602080841082141561229b57634e487b7160e01b86526022600452602486fd5b8180156122af57600181146122c0576122ed565b60ff198616895284890196506122ed565b60008b81526020902060005b868110156122e55781548b8201529085019083016122cc565b505084890196505b5050505050506122fd8185612243565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061233990830184612217565b9695505050505050565b602081526000611f376020830184612217565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600a908201526908ab0868a8a88be9a82b60b31b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124655761246561254a565b500190565b60008261247957612479612560565b500490565b60008160001904831182151516156124985761249861254a565b500290565b6000828210156124af576124af61254a565b500390565b60005b838110156124cf5781810151838201526020016124b7565b838111156112e55750506000910152565b600181811c908216806124f457607f821691505b6020821081141561251557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561252f5761252f61254a565b5060010190565b60008261254557612545612560565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d5657600080fdfea2646970667358221220f27d5e1bb665bd379ce52565fd45d13edfabf2ed1ed55a8d786fe473d01ec1f164736f6c63430008070033

Deployed Bytecode Sourcemap

38662:5119:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26195:305;;;;;;;;;;-1:-1:-1;26195:305:0;;;;;:::i;:::-;;:::i;:::-;;;7348:14:1;;7341:22;7323:41;;7311:2;7296:18;26195:305:0;;;;;;;;39190:44;;;;;;;;;;-1:-1:-1;39190:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;17608:25:1;;;17596:2;17581:18;39190:44:0;17462:177:1;27140:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28699:221::-;;;;;;;;;;-1:-1:-1;28699:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6646:32:1;;;6628:51;;6616:2;6601:18;28699:221:0;6482:203:1;28222:411:0;;;;;;;;;;-1:-1:-1;28222:411:0;;;;;:::i;:::-;;:::i;:::-;;42955:106;;;;;;;;;;-1:-1:-1;42955:106:0;;;;;:::i;:::-;;:::i;39032:69::-;;;;;;;;;;;;;;;;39521:459;;;;;;;;;;-1:-1:-1;39521:459:0;;;;;:::i;:::-;;:::i;43639:102::-;;;;;;;;;;;;;:::i;43176:89::-;;;;;;;;;;-1:-1:-1;43176:89:0;;;;;:::i;:::-;;:::i;39321:31::-;;;;;;;;;;;;;;;;29449:339;;;;;;;;;;-1:-1:-1;29449:339:0;;;;;:::i;:::-;;:::i;39281:33::-;;;;;;;;;;;;;;;;43069:95;;;;;;;;;;-1:-1:-1;43069:95:0;;;;;:::i;:::-;;:::i;42841:106::-;;;;;;;;;;-1:-1:-1;42841:106:0;;;;;:::i;:::-;;:::i;41678:852::-;;;;;;;;;;;;;:::i;29859:185::-;;;;;;;;;;-1:-1:-1;29859:185:0;;;;;:::i;:::-;;:::i;38994:31::-;;;;;;;;;;;;;;;;39152;;;;;;;;;;;;;;;;43277:98;;;;;;;;;;-1:-1:-1;43277:98:0;;;;;:::i;:::-;;:::i;26834:239::-;;;;;;;;;;-1:-1:-1;26834:239:0;;;;;:::i;:::-;;:::i;39361:20::-;;;;;;;;;;-1:-1:-1;39361:20:0;;;;;;;;26564:208;;;;;;;;;;-1:-1:-1;26564:208:0;;;;;:::i;:::-;;:::i;8141:103::-;;;;;;;;;;;;;:::i;40443:599::-;;;;;;;;;;-1:-1:-1;40443:599:0;;;;;:::i;:::-;;:::i;7490:87::-;;;;;;;;;;-1:-1:-1;7563:6:0;;-1:-1:-1;;;;;7563:6:0;7490:87;;42740:93;;;;;;;;;;-1:-1:-1;42740:93:0;;;;;:::i;:::-;;:::i;27309:104::-;;;;;;;;;;;;;:::i;42538:96::-;;;;;;;;;;;;;:::i;41050:620::-;;;;;;:::i;:::-;;:::i;28992:155::-;;;;;;;;;;-1:-1:-1;28992:155:0;;;;;:::i;:::-;;:::i;38908:36::-;;;;;;;;;;;;;;;;39388:22;;;;;;;;;;-1:-1:-1;39388:22:0;;;;;;;;;;;30115:328;;;;;;;;;;-1:-1:-1;30115:328:0;;;;;:::i;:::-;;:::i;43387:244::-;;;;;;;;;;-1:-1:-1;43387:244:0;;;;;:::i;:::-;;:::i;39243:31::-;;;;;;;;;;;;;;;;29218:164;;;;;;;;;;-1:-1:-1;29218:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29339:25:0;;;29315:4;29339:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29218:164;38951:36;;;;;;;;;;;;;;;;39108:37;;;;;;;;;;;;;;;;8399:201;;;;;;;;;;-1:-1:-1;8399:201:0;;;;;:::i;:::-;;:::i;39988:447::-;;;;;;;;;;-1:-1:-1;39988:447:0;;;;;:::i;:::-;;:::i;42642:90::-;;;;;;;;;;;;;:::i;26195:305::-;26297:4;-1:-1:-1;;;;;;26334:40:0;;-1:-1:-1;;;26334:40:0;;:105;;-1:-1:-1;;;;;;;26391:48:0;;-1:-1:-1;;;26391:48:0;26334:105;:158;;;-1:-1:-1;;;;;;;;;;19499:40:0;;;26456:36;26314:178;26195:305;-1:-1:-1;;26195:305:0:o;27140:100::-;27194:13;27227:5;27220:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27140:100;:::o;28699:221::-;28775:7;32042:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32042:16:0;28795:73;;;;-1:-1:-1;;;28795:73:0;;13232:2:1;28795:73:0;;;13214:21:1;13271:2;13251:18;;;13244:30;13310:34;13290:18;;;13283:62;-1:-1:-1;;;13361:18:1;;;13354:42;13413:19;;28795:73:0;;;;;;;;;-1:-1:-1;28888:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28888:24:0;;28699:221::o;28222:411::-;28303:13;28319:23;28334:7;28319:14;:23::i;:::-;28303:39;;28367:5;-1:-1:-1;;;;;28361:11:0;:2;-1:-1:-1;;;;;28361:11:0;;;28353:57;;;;-1:-1:-1;;;28353:57:0;;15122:2:1;28353:57:0;;;15104:21:1;15161:2;15141:18;;;15134:30;15200:34;15180:18;;;15173:62;-1:-1:-1;;;15251:18:1;;;15244:31;15292:19;;28353:57:0;14920:397:1;28353:57:0;6408:10;-1:-1:-1;;;;;28445:21:0;;;;:62;;-1:-1:-1;28470:37:0;28487:5;6408:10;29218:164;:::i;28470:37::-;28423:168;;;;-1:-1:-1;;;28423:168:0;;11281:2:1;28423:168:0;;;11263:21:1;11320:2;11300:18;;;11293:30;11359:34;11339:18;;;11332:62;11430:26;11410:18;;;11403:54;11474:19;;28423:168:0;11079:420:1;28423:168:0;28604:21;28613:2;28617:7;28604:8;:21::i;:::-;28292:341;28222:411;;:::o;42955:106::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;43027:15:::1;:26:::0;42955:106::o;39521:459::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;39642:15:::1;::::0;39603:16:::1;::::0;:35:::1;::::0;39622:9;;39603:35:::1;:::i;:::-;:54;;39595:86;;;::::0;-1:-1:-1;;;39595:86:0;;16623:2:1;39595:86:0::1;::::0;::::1;16605:21:1::0;16662:2;16642:18;;;16635:30;-1:-1:-1;;;16681:18:1;;;16674:49;16740:18;;39595:86:0::1;16421:343:1::0;39595:86:0::1;39746:6;::::0;39726:9;39700:23:::1;:13;3248:14:::0;;3156:114;39700:23:::1;:42;;;;:::i;:::-;:52;;39692:75;;;;-1:-1:-1::0;;;39692:75:0::1;;;;;;;:::i;:::-;39783:9;39778:195;39798:20:::0;;::::1;39778:195;;;39840:16;:18:::0;;;:16:::1;:18;::::0;::::1;:::i;:::-;;;;;;39873:25;:13;3367:19:::0;;3385:1;3367:19;;;3278:127;39873:25:::1;39913:48;39923:9;;39933:1;39923:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;39937:13;3248:14:::0;39913:9:::1;:48::i;39937:23::-;39913:9;:48::i;:::-;39820:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39778:195;;43639:102:::0;43683:7;43710:23;:13;3248:14;;3156:114;43710:23;43703:30;;43639:102;:::o;43176:89::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;43240:6:::1;:17:::0;43176:89::o;29449:339::-;29644:41;6408:10;29677:7;29644:18;:41::i;:::-;29636:103;;;;-1:-1:-1;;;29636:103:0;;;;;;;:::i;:::-;29752:28;29762:4;29768:2;29772:7;29752:9;:28::i;43069:95::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;43136:9:::1;:20:::0;43069:95::o;42841:106::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;42913:15:::1;:26:::0;42841:106::o;41678:852::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;41753:21:::1;41785:95;41811:42;41877:2;41856:18;41753:21:::0;41873:1:::1;41856:18;:::i;:::-;:23;;;;:::i;:::-;41785:17;:95::i;:::-;41891;41917:42;41983:2;41962:18;:14:::0;41979:1:::1;41962:18;:::i;41891:95::-;41997;42023:42;42089:2;42068:18;:14:::0;42085:1:::1;42068:18;:::i;41997:95::-;42103;42129:42;42195:2;42174:18;:14:::0;42191:1:::1;42174:18;:::i;42103:95::-;42209;42235:42;42301:2;42280:18;:14:::0;42297:1:::1;42280:18;:::i;42209:95::-;42323;42349:42;42415:2;42394:18;:14:::0;42411:1:::1;42394:18;:::i;42323:95::-;42429:93;42455:42;42500:21;42429:17;:93::i;:::-;41717:813;41678:852::o:0;29859:185::-;29997:39;30014:4;30020:2;30024:7;29997:39;;;;;;;;;;;;:16;:39::i;43277:98::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;43348:19:::1;:13;43364:3:::0;;43348:19:::1;:::i;26834:239::-:0;26906:7;26942:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26942:16:0;26977:19;26969:73;;;;-1:-1:-1;;;26969:73:0;;12117:2:1;26969:73:0;;;12099:21:1;12156:2;12136:18;;;12129:30;12195:34;12175:18;;;12168:62;-1:-1:-1;;;12246:18:1;;;12239:39;12295:19;;26969:73:0;11915:405:1;26564:208:0;26636:7;-1:-1:-1;;;;;26664:19:0;;26656:74;;;;-1:-1:-1;;;26656:74:0;;11706:2:1;26656:74:0;;;11688:21:1;11745:2;11725:18;;;11718:30;11784:34;11764:18;;;11757:62;-1:-1:-1;;;11835:18:1;;;11828:40;11885:19;;26656:74:0;11504:406:1;26656:74:0;-1:-1:-1;;;;;;26748:16:0;;;;;:9;:16;;;;;;;26564:208::o;8141:103::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;8206:30:::1;8233:1;8206:18;:30::i;:::-;8141:103::o:0;40443:599::-;40512:8;;;;40504:32;;;;-1:-1:-1;;;40504:32:0;;8984:2:1;40504:32:0;;;8966:21:1;9023:2;9003:18;;;8996:30;-1:-1:-1;;;9042:18:1;;;9035:41;9093:18;;40504:32:0;8782:335:1;40504:32:0;40591:15;;40574:13;40555:16;;:32;;;;:::i;:::-;:51;;40547:83;;;;-1:-1:-1;;;40547:83:0;;16971:2:1;40547:83:0;;;16953:21:1;17010:2;16990:18;;;16983:30;-1:-1:-1;;;17029:18:1;;;17022:49;17088:18;;40547:83:0;16769:343:1;40547:83:0;40692:6;;40675:13;40649:23;:13;3248:14;;3156:114;40649:23;:39;;;;:::i;:::-;:49;;40641:72;;;;-1:-1:-1;;;40641:72:0;;;;;;;:::i;:::-;40742:10;40732:21;;;;:9;:21;;;;;;40773:1;;40732:37;;40756:13;;40732:37;:::i;:::-;:42;;40724:72;;;;-1:-1:-1;;;40724:72:0;;14416:2:1;40724:72:0;;;14398:21:1;14455:2;14435:18;;;14428:30;-1:-1:-1;;;14474:18:1;;;14467:47;14531:18;;40724:72:0;14214:341:1;40724:72:0;40812:9;40807:228;40831:13;40827:1;:17;40807:228;;;40866:16;:18;;;:16;:18;;;:::i;:::-;;;;-1:-1:-1;;40909:10:0;40899:21;;;;:9;:21;;;;;:23;;;;;;:::i;:::-;;;;;;40937:25;:13;3367:19;;3385:1;3367:19;;;3278:127;40937:25;40977:46;40987:10;40999:23;:13;3248:14;;3156:114;40977:46;40846:3;;;;:::i;:::-;;;;40807:228;;;;40443:599;:::o;42740:93::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;42806:8:::1;:19:::0;42740:93::o;27309:104::-;27365:13;27398:7;27391:14;;;;;:::i;42538:96::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;42616:10:::1;::::0;;-1:-1:-1;;42602:24:0;::::1;42616:10;::::0;;;::::1;;;42615:11;42602:24:::0;;::::1;;::::0;;42538:96::o;41050:620::-;41123:10;;;;;;;41115:34;;;;-1:-1:-1;;;41115:34:0;;8984:2:1;41115:34:0;;;8966:21:1;9023:2;9003:18;;;8996:30;-1:-1:-1;;;9042:18:1;;;9035:41;9093:18;;41115:34:0;8782:335:1;41115:34:0;41206:9;;41189:13;41168:18;;:34;;;;:::i;:::-;:47;;41160:73;;;;-1:-1:-1;;;41160:73:0;;15524:2:1;41160:73:0;;;15506:21:1;15563:2;15543:18;;;15536:30;-1:-1:-1;;;15582:18:1;;;15575:43;15635:18;;41160:73:0;15322:337:1;41160:73:0;41295:6;;41278:13;41252:23;:13;3248:14;;3156:114;41252:23;:39;;;;:::i;:::-;:49;;41244:72;;;;-1:-1:-1;;;41244:72:0;;;;;;;:::i;:::-;41352:11;;41335:13;:28;;41327:56;;;;-1:-1:-1;;;41327:56:0;;12527:2:1;41327:56:0;;;12509:21:1;12566:2;12546:18;;;12539:30;-1:-1:-1;;;12585:18:1;;;12578:45;12640:18;;41327:56:0;12325:339:1;41327:56:0;41430:9;41413:13;41402:8;;:24;;;;:::i;:::-;:37;;41394:66;;;;-1:-1:-1;;;41394:66:0;;17319:2:1;41394:66:0;;;17301:21:1;17358:2;17338:18;;;17331:30;-1:-1:-1;;;17377:18:1;;;17370:46;17433:18;;41394:66:0;17117:340:1;41394:66:0;41476:9;41471:192;41495:13;41491:1;:17;41471:192;;;41530:18;:20;;;:18;:20;;;:::i;:::-;;;;;;41565:25;:13;3367:19;;3385:1;3367:19;;;3278:127;41565:25;41605:46;41615:10;41627:23;:13;3248:14;;3156:114;41605:46;41510:3;;;;:::i;:::-;;;;41471:192;;28992:155;29087:52;6408:10;29120:8;29130;29087:18;:52::i;30115:328::-;30290:41;6408:10;30323:7;30290:18;:41::i;:::-;30282:103;;;;-1:-1:-1;;;30282:103:0;;;;;;;:::i;:::-;30396:39;30410:4;30416:2;30420:7;30429:5;30396:13;:39::i;:::-;30115:328;;;;:::o;43387:244::-;32018:4;32042:16;;;:7;:16;;;;;;43460:13;;-1:-1:-1;;;;;32042:16:0;43486:60;;;;-1:-1:-1;;;43486:60:0;;14762:2:1;43486:60:0;;;14744:21:1;14801:2;14781:18;;;14774:30;14840:33;14820:18;;;14813:61;14891:18;;43486:60:0;14560:355:1;43486:60:0;43588:13;43603:18;:7;:16;:18::i;:::-;43571:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43557:66;;43387:244;;;:::o;8399:201::-;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8488:22:0;::::1;8480:73;;;::::0;-1:-1:-1;;;8480:73:0;;8220:2:1;8480:73:0::1;::::0;::::1;8202:21:1::0;8259:2;8239:18;;;8232:30;8298:34;8278:18;;;8271:62;-1:-1:-1;;;8349:18:1;;;8342:36;8395:19;;8480:73:0::1;8018:402:1::0;8480:73:0::1;8564:28;8583:8;8564:18;:28::i;39988:447::-:0;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;40106:15:::1;;40089:13;40070:16;;:32;;;;:::i;:::-;:51;;40062:83;;;::::0;-1:-1:-1;;;40062:83:0;;16623:2:1;40062:83:0::1;::::0;::::1;16605:21:1::0;16662:2;16642:18;;;16635:30;-1:-1:-1;;;16681:18:1;;;16674:49;16740:18;;40062:83:0::1;16421:343:1::0;40062:83:0::1;40207:6;;40190:13;40164:23;:13;3248:14:::0;;3156:114;40164:23:::1;:39;;;;:::i;:::-;:49;;40156:72;;;;-1:-1:-1::0;;;40156:72:0::1;;;;;;;:::i;:::-;40243:9;40239:189;40262:13;40258:1;:17;40239:189;;;40297:16;:18:::0;;;:16:::1;:18;::::0;::::1;:::i;:::-;;;;;;40330:25;:13;3367:19:::0;;3385:1;3367:19;;;3278:127;40330:25:::1;40370:46;40380:10;40392:23;:13;3248:14:::0;;3156:114;40370:46:::1;40277:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40239:189;;42642:90:::0;7563:6;;-1:-1:-1;;;;;7563:6:0;6408:10;7710:23;7702:68;;;;-1:-1:-1;;;7702:68:0;;;;;;;:::i;:::-;42716:8:::1;::::0;;-1:-1:-1;;42704:20:0;::::1;42716:8;::::0;;::::1;42715:9;42704:20;::::0;;42642:90::o;35935:174::-;36010:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36010:29:0;-1:-1:-1;;;;;36010:29:0;;;;;;;;:24;;36064:23;36010:24;36064:14;:23::i;:::-;-1:-1:-1;;;;;36055:46:0;;;;;;;;;;;35935:174;;:::o;32937:110::-;33013:26;33023:2;33027:7;33013:26;;;;;;;;;;;;:9;:26::i;32247:348::-;32340:4;32042:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32042:16:0;32357:73;;;;-1:-1:-1;;;32357:73:0;;10868:2:1;32357:73:0;;;10850:21:1;10907:2;10887:18;;;10880:30;10946:34;10926:18;;;10919:62;-1:-1:-1;;;10997:18:1;;;10990:42;11049:19;;32357:73:0;10666:408:1;32357:73:0;32441:13;32457:23;32472:7;32457:14;:23::i;:::-;32441:39;;32510:5;-1:-1:-1;;;;;32499:16:0;:7;-1:-1:-1;;;;;32499:16:0;;:51;;;;32543:7;-1:-1:-1;;;;;32519:31:0;:20;32531:7;32519:11;:20::i;:::-;-1:-1:-1;;;;;32519:31:0;;32499:51;:87;;;-1:-1:-1;;;;;;29339:25:0;;;29315:4;29339:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32554:32;32491:96;32247:348;-1:-1:-1;;;;32247:348:0:o;35239:578::-;35398:4;-1:-1:-1;;;;;35371:31:0;:23;35386:7;35371:14;:23::i;:::-;-1:-1:-1;;;;;35371:31:0;;35363:85;;;;-1:-1:-1;;;35363:85:0;;14006:2:1;35363:85:0;;;13988:21:1;14045:2;14025:18;;;14018:30;14084:34;14064:18;;;14057:62;-1:-1:-1;;;14135:18:1;;;14128:39;14184:19;;35363:85:0;13804:405:1;35363:85:0;-1:-1:-1;;;;;35467:16:0;;35459:65;;;;-1:-1:-1;;;35459:65:0;;9324:2:1;35459:65:0;;;9306:21:1;9363:2;9343:18;;;9336:30;9402:34;9382:18;;;9375:62;-1:-1:-1;;;9453:18:1;;;9446:34;9497:19;;35459:65:0;9122:400:1;35459:65:0;35641:29;35658:1;35662:7;35641:8;:29::i;:::-;-1:-1:-1;;;;;35683:15:0;;;;;;:9;:15;;;;;:20;;35702:1;;35683:15;:20;;35702:1;;35683:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35714:13:0;;;;;;:9;:13;;;;;:18;;35731:1;;35714:13;:18;;35731:1;;35714:18;:::i;:::-;;;;-1:-1:-1;;35743:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35743:21:0;-1:-1:-1;;;;;35743:21:0;;;;;;;;;35782:27;;35743:16;;35782:27;;;;;;;35239:578;;;:::o;10988:317::-;11103:6;11078:21;:31;;11070:73;;;;-1:-1:-1;;;11070:73:0;;10510:2:1;11070:73:0;;;10492:21:1;10549:2;10529:18;;;10522:30;10588:31;10568:18;;;10561:59;10637:18;;11070:73:0;10308:353:1;11070:73:0;11157:12;11175:9;-1:-1:-1;;;;;11175:14:0;11197:6;11175:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11156:52;;;11227:7;11219:78;;;;-1:-1:-1;;;11219:78:0;;10083:2:1;11219:78:0;;;10065:21:1;10122:2;10102:18;;;10095:30;10161:34;10141:18;;;10134:62;10232:28;10212:18;;;10205:56;10278:19;;11219:78:0;9881:422:1;8760:191:0;8853:6;;;-1:-1:-1;;;;;8870:17:0;;;-1:-1:-1;;;;;;8870:17:0;;;;;;;8903:40;;8853:6;;;8870:17;8853:6;;8903:40;;8834:16;;8903:40;8823:128;8760:191;:::o;36251:315::-;36406:8;-1:-1:-1;;;;;36397:17:0;:5;-1:-1:-1;;;;;36397:17:0;;;36389:55;;;;-1:-1:-1;;;36389:55:0;;9729:2:1;36389:55:0;;;9711:21:1;9768:2;9748:18;;;9741:30;9807:27;9787:18;;;9780:55;9852:18;;36389:55:0;9527:349:1;36389:55:0;-1:-1:-1;;;;;36455:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36455:46:0;;;;;;;;;;36517:41;;7323::1;;;36517::0;;7296:18:1;36517:41:0;;;;;;;36251:315;;;:::o;31325:::-;31482:28;31492:4;31498:2;31502:7;31482:9;:28::i;:::-;31529:48;31552:4;31558:2;31562:7;31571:5;31529:22;:48::i;:::-;31521:111;;;;-1:-1:-1;;;31521:111:0;;;;;;;:::i;4002:723::-;4058:13;4279:10;4275:53;;-1:-1:-1;;4306:10:0;;;;;;;;;;;;-1:-1:-1;;;4306:10:0;;;;;4002:723::o;4275:53::-;4353:5;4338:12;4394:78;4401:9;;4394:78;;4427:8;;;;:::i;:::-;;-1:-1:-1;4450:10:0;;-1:-1:-1;4458:2:0;4450:10;;:::i;:::-;;;4394:78;;;4482:19;4514:6;4504:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4504:17:0;;4482:39;;4532:154;4539:10;;4532:154;;4566:11;4576:1;4566:11;;:::i;:::-;;-1:-1:-1;4635:10:0;4643:2;4635:5;:10;:::i;:::-;4622:24;;:2;:24;:::i;:::-;4609:39;;4592:6;4599;4592:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4592:56:0;;;;;;;;-1:-1:-1;4663:11:0;4672:2;4663:11;;:::i;:::-;;;4532:154;;33274:321;33404:18;33410:2;33414:7;33404:5;:18::i;:::-;33455:54;33486:1;33490:2;33494:7;33503:5;33455:22;:54::i;:::-;33433:154;;;;-1:-1:-1;;;33433:154:0;;;;;;;:::i;37131:799::-;37286:4;-1:-1:-1;;;;;37307:13:0;;9989:20;10037:8;37303:620;;37343:72;;-1:-1:-1;;;37343:72:0;;-1:-1:-1;;;;;37343:36:0;;;;;:72;;6408:10;;37394:4;;37400:7;;37409:5;;37343:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37343:72:0;;;;;;;;-1:-1:-1;;37343:72:0;;;;;;;;;;;;:::i;:::-;;;37339:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37585:13:0;;37581:272;;37628:60;;-1:-1:-1;;;37628:60:0;;;;;;;:::i;37581:272::-;37803:6;37797:13;37788:6;37784:2;37780:15;37773:38;37339:529;-1:-1:-1;;;;;;37466:51:0;-1:-1:-1;;;37466:51:0;;-1:-1:-1;37459:58:0;;37303:620;-1:-1:-1;37907:4:0;37131:799;;;;;;:::o;33931:382::-;-1:-1:-1;;;;;34011:16:0;;34003:61;;;;-1:-1:-1;;;34003:61:0;;12871:2:1;34003:61:0;;;12853:21:1;;;12890:18;;;12883:30;12949:34;12929:18;;;12922:62;13001:18;;34003:61:0;12669:356:1;34003:61:0;32018:4;32042:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32042:16:0;:30;34075:58;;;;-1:-1:-1;;;34075:58:0;;8627:2:1;34075:58:0;;;8609:21:1;8666:2;8646:18;;;8639:30;8705;8685:18;;;8678:58;8753:18;;34075:58:0;8425:352:1;34075:58:0;-1:-1:-1;;;;;34204:13:0;;;;;;:9;:13;;;;;:18;;34221:1;;34204:13;:18;;34221:1;;34204:18;:::i;:::-;;;;-1:-1:-1;;34233:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34233:21:0;-1:-1:-1;;;;;34233:21:0;;;;;;;;34272:33;;34233:16;;;34272:33;;34233:16;;34272:33;33931:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:615::-;2821:6;2829;2882:2;2870:9;2861:7;2857:23;2853:32;2850:52;;;2898:1;2895;2888:12;2850:52;2938:9;2925:23;2967:18;3008:2;3000:6;2997:14;2994:34;;;3024:1;3021;3014:12;2994:34;3062:6;3051:9;3047:22;3037:32;;3107:7;3100:4;3096:2;3092:13;3088:27;3078:55;;3129:1;3126;3119:12;3078:55;3169:2;3156:16;3195:2;3187:6;3184:14;3181:34;;;3211:1;3208;3201:12;3181:34;3264:7;3259:2;3249:6;3246:1;3242:14;3238:2;3234:23;3230:32;3227:45;3224:65;;;3285:1;3282;3275:12;3224:65;3316:2;3308:11;;;;;3338:6;;-1:-1:-1;2735:615:1;;-1:-1:-1;;;;2735:615:1:o;3355:245::-;3413:6;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3521:9;3508:23;3540:30;3564:5;3540:30;:::i;3605:249::-;3674:6;3727:2;3715:9;3706:7;3702:23;3698:32;3695:52;;;3743:1;3740;3733:12;3695:52;3775:9;3769:16;3794:30;3818:5;3794:30;:::i;3859:592::-;3930:6;3938;3991:2;3979:9;3970:7;3966:23;3962:32;3959:52;;;4007:1;4004;3997:12;3959:52;4047:9;4034:23;4076:18;4117:2;4109:6;4106:14;4103:34;;;4133:1;4130;4123:12;4103:34;4171:6;4160:9;4156:22;4146:32;;4216:7;4209:4;4205:2;4201:13;4197:27;4187:55;;4238:1;4235;4228:12;4187:55;4278:2;4265:16;4304:2;4296:6;4293:14;4290:34;;;4320:1;4317;4310:12;4290:34;4365:7;4360:2;4351:6;4347:2;4343:15;4339:24;4336:37;4333:57;;;4386:1;4383;4376:12;4456:180;4515:6;4568:2;4556:9;4547:7;4543:23;4539:32;4536:52;;;4584:1;4581;4574:12;4536:52;-1:-1:-1;4607:23:1;;4456:180;-1:-1:-1;4456:180:1:o;4641:257::-;4682:3;4720:5;4714:12;4747:6;4742:3;4735:19;4763:63;4819:6;4812:4;4807:3;4803:14;4796:4;4789:5;4785:16;4763:63;:::i;:::-;4880:2;4859:15;-1:-1:-1;;4855:29:1;4846:39;;;;4887:4;4842:50;;4641:257;-1:-1:-1;;4641:257:1:o;4903:185::-;4945:3;4983:5;4977:12;4998:52;5043:6;5038:3;5031:4;5024:5;5020:16;4998:52;:::i;:::-;5066:16;;;;;4903:185;-1:-1:-1;;4903:185:1:o;5093:1174::-;5269:3;5298:1;5331:6;5325:13;5361:3;5383:1;5411:9;5407:2;5403:18;5393:28;;5471:2;5460:9;5456:18;5493;5483:61;;5537:4;5529:6;5525:17;5515:27;;5483:61;5563:2;5611;5603:6;5600:14;5580:18;5577:38;5574:165;;;-1:-1:-1;;;5638:33:1;;5694:4;5691:1;5684:15;5724:4;5645:3;5712:17;5574:165;5755:18;5782:104;;;;5900:1;5895:320;;;;5748:467;;5782:104;-1:-1:-1;;5815:24:1;;5803:37;;5860:16;;;;-1:-1:-1;5782:104:1;;5895:320;17717:1;17710:14;;;17754:4;17741:18;;5990:1;6004:165;6018:6;6015:1;6012:13;6004:165;;;6096:14;;6083:11;;;6076:35;6139:16;;;;6033:10;;6004:165;;;6008:3;;6198:6;6193:3;6189:16;6182:23;;5748:467;;;;;;;6231:30;6257:3;6249:6;6231:30;:::i;:::-;6224:37;5093:1174;-1:-1:-1;;;;;5093:1174:1:o;6690:488::-;-1:-1:-1;;;;;6959:15:1;;;6941:34;;7011:15;;7006:2;6991:18;;6984:43;7058:2;7043:18;;7036:34;;;7106:3;7101:2;7086:18;;7079:31;;;6884:4;;7127:45;;7152:19;;7144:6;7127:45;:::i;:::-;7119:53;6690:488;-1:-1:-1;;;;;;6690:488:1:o;7375:219::-;7524:2;7513:9;7506:21;7487:4;7544:44;7584:2;7573:9;7569:18;7561:6;7544:44;:::i;7599:414::-;7801:2;7783:21;;;7840:2;7820:18;;;7813:30;7879:34;7874:2;7859:18;;7852:62;-1:-1:-1;;;7945:2:1;7930:18;;7923:48;8003:3;7988:19;;7599:414::o;13443:356::-;13645:2;13627:21;;;13664:18;;;13657:30;13723:34;13718:2;13703:18;;13696:62;13790:2;13775:18;;13443:356::o;15664:334::-;15866:2;15848:21;;;15905:2;15885:18;;;15878:30;-1:-1:-1;;;15939:2:1;15924:18;;15917:40;15989:2;15974:18;;15664:334::o;16003:413::-;16205:2;16187:21;;;16244:2;16224:18;;;16217:30;16283:34;16278:2;16263:18;;16256:62;-1:-1:-1;;;16349:2:1;16334:18;;16327:47;16406:3;16391:19;;16003:413::o;17770:128::-;17810:3;17841:1;17837:6;17834:1;17831:13;17828:39;;;17847:18;;:::i;:::-;-1:-1:-1;17883:9:1;;17770:128::o;17903:120::-;17943:1;17969;17959:35;;17974:18;;:::i;:::-;-1:-1:-1;18008:9:1;;17903:120::o;18028:168::-;18068:7;18134:1;18130;18126:6;18122:14;18119:1;18116:21;18111:1;18104:9;18097:17;18093:45;18090:71;;;18141:18;;:::i;:::-;-1:-1:-1;18181:9:1;;18028:168::o;18201:125::-;18241:4;18269:1;18266;18263:8;18260:34;;;18274:18;;:::i;:::-;-1:-1:-1;18311:9:1;;18201:125::o;18331:258::-;18403:1;18413:113;18427:6;18424:1;18421:13;18413:113;;;18503:11;;;18497:18;18484:11;;;18477:39;18449:2;18442:10;18413:113;;;18544:6;18541:1;18538:13;18535:48;;;-1:-1:-1;;18579:1:1;18561:16;;18554:27;18331:258::o;18594:380::-;18673:1;18669:12;;;;18716;;;18737:61;;18791:4;18783:6;18779:17;18769:27;;18737:61;18844:2;18836:6;18833:14;18813:18;18810:38;18807:161;;;18890:10;18885:3;18881:20;18878:1;18871:31;18925:4;18922:1;18915:15;18953:4;18950:1;18943:15;18807:161;;18594:380;;;:::o;18979:135::-;19018:3;-1:-1:-1;;19039:17:1;;19036:43;;;19059:18;;:::i;:::-;-1:-1:-1;19106:1:1;19095:13;;18979:135::o;19119:112::-;19151:1;19177;19167:35;;19182:18;;:::i;:::-;-1:-1:-1;19216:9:1;;19119:112::o;19236:127::-;19297:10;19292:3;19288:20;19285:1;19278:31;19328:4;19325:1;19318:15;19352:4;19349:1;19342:15;19368:127;19429:10;19424:3;19420:20;19417:1;19410:31;19460:4;19457:1;19450:15;19484:4;19481:1;19474:15;19500:127;19561:10;19556:3;19552:20;19549:1;19542:31;19592:4;19589:1;19582:15;19616:4;19613:1;19606:15;19632:127;19693:10;19688:3;19684:20;19681:1;19674:31;19724:4;19721:1;19714:15;19748:4;19745:1;19738:15;19764:131;-1:-1:-1;;;;;;19838:32:1;;19828:43;;19818:71;;19885:1;19882;19875:12

Swarm Source

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