ETH Price: $3,425.72 (-0.43%)
Gas: 2 Gwei

Token

DJENERATES - CLUBBING EDITION (DJEN)
 

Overview

Max Total Supply

10,000 DJEN

Holders

1,931

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Werekitty
Balance
7 DJEN
0x137d9174D3bd00F2153DcC0Fe7AF712d3876a71E
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

DJENERATES -The Clubbing Edition, is a collection of 10,000 NFTs immortalising the iconic characters from the electronic music world.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DjEnerates

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-26
*/

//  _____         _   ______   _   _   ______   _____               _______   ______    _____ 
// |  __ \       | | |  ____| | \ | | |  ____| |  __ \      /\     |__   __| |  ____|  / ____|
// | |  | |      | | | |__    |  \| | | |__    | |__) |    /  \       | |    | |__    | (___  
// | |  | |  _   | | |  __|   | . ` | |  __|   |  _  /    / /\ \      | |    |  __|    \___ \ 
// | |__| | | |__| | | |____  | |\  | | |____  | | \ \   / ____ \     | |    | |____   ____) |
// |_____/   \____/  |______| |_| \_| |______| |_|  \_\ /_/    \_\    |_|    |______| |_____/ 
// 
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

}


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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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


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


/**
 * @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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


/**
 * @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, Ownable {
    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) internal _owners;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    function _batchMint(address to, uint256[] memory tokenIds)
        internal
        virtual
    {
        require(to != address(0), "ERC721: mint to the zero address");
        _balances[to] += tokenIds.length;

        for (uint256 i; i < tokenIds.length; i++) {
            require(!_exists(tokenIds[i]), "ERC721: token already minted");

            _beforeTokenTransfer(address(0), to, tokenIds[i]);

            _owners[tokenIds[i]] = to;

            emit Transfer(address(0), to, tokenIds[i]);
        }
    }

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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



contract DjEnerates is ERC721 {

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    modifier claimStarted() {
        require(
            startClaimDate != 0 && startClaimDate <= block.timestamp,
            "You are too early"
        );

        _;
    }

    struct Collaborators {
        address addr;
        uint256 cut;
    }

    uint256 private startClaimDate = 1629990000; //26th August 2021 3PM UTC
    uint256 private claimPrice =  0.08 ether;
    uint256 private totalTokens = 10000;
    uint256 private totalMintedTokens = 0;
    uint256 private maxClaimsPerWallet = 50;
    uint128 private basisPoints = 10000;
    uint128 private resDjens = 240; //total reserved token for rewards and wages
    uint256 private totalReserved = 0;
    string private baseURI =
        "https://ipfs.io/ipfs/QmRPGJWkqdF9hhqrNjwGW7tuFHduSrtoeDA2PtnU65HYjX/";


    mapping(address => uint256) private claimedTokensPerWallet;

    uint16[] availableTokens;
    Collaborators[] private collaborators;

    constructor() ERC721("DJENERATES - CLUBBING EDITION", "DJEN") {}

    // ONLY OWNER

    /**
     * Sets the collaborators of the project with their cuts
     */
    function addCollaborators(Collaborators[] memory _collaborators)
        external
        onlyOwner
    {
        require(collaborators.length == 0, "Collaborators were already set");

        uint128 totalCut;
        for (uint256 i; i < _collaborators.length; i++) {
            collaborators.push(_collaborators[i]);
            totalCut += uint128(_collaborators[i].cut);
        }

        require(totalCut == basisPoints, "Total cut does not add to 100%");
    }

    // ONLY COLLABORATORS

    /**
     * @dev Allows to withdraw the Ether in the contract and split it among the collaborators
     */
    function withdraw() external onlyOwner {
        uint256 totalBalance = address(this).balance;

        for (uint256 i; i < collaborators.length; i++) {
            payable(collaborators[i].addr).transfer(
                mulScale(totalBalance, collaborators[i].cut, basisPoints)
            );
        }
    }

    /**
     * @dev Sets the base URI for the API that provides the NFT data.
     */
    function setBaseTokenURI(string memory _uri) external onlyOwner {
        baseURI = _uri;
    }

    /**
     * @dev Sets the claim price for each token
     */
    function setClaimPrice(uint256 _claimPrice) external onlyOwner {
        claimPrice = _claimPrice;
    }

    /**
     * @dev Populates the available tokens
     */
    function addAvailableTokens(uint16 from, uint16 to)
        external
        onlyOwner
    {
       for (uint16 i = from; i <= to; i++) {
            availableTokens.push(i);
        }
    }

    /**
     * @dev Sets the date that users can start claiming tokens
     */
    function setStartClaimDate(uint256 _startClaimDate)
        external
        onlyOwner
    {
        startClaimDate = _startClaimDate;
    }

     /**
     * Set 240 random DJENs aside for rewards and wages
     */
    function reserveDjens() external onlyOwner {        
        require(availableTokens.length >= 80, "No tokens left to reserve");
        require(totalReserved < resDjens,"240 DJens have been already reserved, you can not reserve more");
        uint256[] memory tokenIds = new uint256[](80);

        totalMintedTokens += 80;
		totalReserved += 80;

        for (uint256 i; i < 80; i++) {
            tokenIds[i] = getTokenToBeClaimed();
        }
        _batchMint(msg.sender, tokenIds);
    }

    /**
     * @dev Claim a single token
     */
    function claimToken() external payable callerIsUser claimStarted {
        require(msg.value >= claimPrice, "Not enough Ether to claim a token");

        require(
            claimedTokensPerWallet[msg.sender] < maxClaimsPerWallet,
            "You cannot claim more tokens"
        );

        require(availableTokens.length > 0, "No tokens left to be claimed");

        claimedTokensPerWallet[msg.sender]++;
        totalMintedTokens++;

        _mint(msg.sender, getTokenToBeClaimed());
    }

    /**
     * @dev Claim up to 50 tokens at once
     */
    function claimTokens(uint256 amount)
        external
        payable
        callerIsUser
        claimStarted
    {
        require(
            msg.value >= claimPrice * amount,
            "Not enough Ether to claim the tokens"
        );

        require(
            claimedTokensPerWallet[msg.sender] + amount <= maxClaimsPerWallet,
            "You cannot claim more tokens"
        );

        require(availableTokens.length >= amount, "No tokens left to be claimed");

        uint256[] memory tokenIds = new uint256[](amount);

        claimedTokensPerWallet[msg.sender] += amount;
        totalMintedTokens += amount;

        for (uint256 i; i < amount; i++) {
            tokenIds[i] = getTokenToBeClaimed();
        }

        _batchMint(msg.sender, tokenIds);
    }

    /**
     * @dev Returns the tokenId by index
     */
    function tokenByIndex(uint256 tokenId) external view returns (uint256) {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );

        return tokenId;
    }

    /**
     * @dev Returns the base URI for the tokens API.
     */
    function baseTokenURI() external view returns (string memory) {
        return baseURI;
    }

    /**
     * @dev Returns how many tokens are still available to be claimed
     */
    function getAvailableTokens() external view returns (uint256) {
        return availableTokens.length;
    }

    /**
     * @dev Returns the claim price
     */
    function getClaimPrice() external view returns (uint256) {
        return claimPrice;
    }

    /**
     * @dev Returns the total supply
     */
    function totalSupply() external view virtual returns (uint256) {
        return totalMintedTokens;
    }

    // Private and Internal functions

    /**
     * @dev Returns a random available token to be claimed
     */
    function getTokenToBeClaimed() private returns (uint256) {
        uint256 random = _getRandomNumber(availableTokens.length);
        uint256 tokenId = uint256(availableTokens[random]);

        availableTokens[random] = availableTokens[availableTokens.length - 1];
        availableTokens.pop();

        return tokenId;
    }

    /**
     * @dev Generates a pseudo-random number.
     */
    function _getRandomNumber(uint256 _upper) private view returns (uint256) {
        uint256 random = uint256(
            keccak256(
                abi.encodePacked(
                    availableTokens.length,
                    blockhash(block.number - 1),
                    block.coinbase,
                    block.difficulty,
                    msg.sender
                )
            )
        );

        return random % _upper;
    }

    /**
     * @dev See {ERC721}.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function mulScale(
        uint256 x,
        uint256 y,
        uint128 scale
    ) internal pure returns (uint256) {
        uint256 a = x / scale;
        uint256 b = x % scale;
        uint256 c = y / scale;
        uint256 d = y % scale;

        return a * c * scale + a * d + b * c + (b * d) / scale;
    }
}

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":"uint16","name":"from","type":"uint16"},{"internalType":"uint16","name":"to","type":"uint16"}],"name":"addAvailableTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"cut","type":"uint256"}],"internalType":"struct DjEnerates.Collaborators[]","name":"_collaborators","type":"tuple[]"}],"name":"addCollaborators","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAvailableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveDjens","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":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimPrice","type":"uint256"}],"name":"setClaimPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startClaimDate","type":"uint256"}],"name":"setStartClaimDate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

636127ac7060075567011c37937e0800006008556127106009556000600a8190556032600b5570f000000000000000000000000000002710600c55600d55610100604052604460808181529062002c7060a03980516200006891600e916020909101906200015e565b503480156200007657600080fd5b506040518060400160405280601d81526020017f444a454e455241544553202d20434c554242494e472045444954494f4e00000081525060405180604001604052806004815260200163222522a760e11b8152506000620000dc6200015a60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200013b9060019060208501906200015e565b508051620001519060029060208401906200015e565b50505062000241565b3390565b8280546200016c9062000204565b90600052602060002090601f016020900481019282620001905760008555620001db565b82601f10620001ab57805160ff1916838001178555620001db565b82800160010185558215620001db579182015b82811115620001db578251825591602001919060010190620001be565b50620001e9929150620001ed565b5090565b5b80821115620001e95760008155600101620001ee565b600181811c908216806200021957607f821691505b602082108114156200023b57634e487b7160e01b600052602260045260246000fd5b50919050565b612a1f80620002516000396000f3fe6080604052600436106101cd5760003560e01c80634f6ccce7116100f7578063a22cb46511610095578063e35568cb11610064578063e35568cb146104d9578063e985e9c5146104ee578063efb3d00814610537578063f2fde38b1461055757600080fd5b8063a22cb46514610464578063b88d4fde14610484578063c87b56dd146104a4578063d547cfb7146104c457600080fd5b806370a08231116100d157806370a08231146103fc578063715018a61461041c5780638da5cb5b1461043157806395d89b411461044f57600080fd5b80634f6ccce71461039c57806351f468c0146103bc5780636352211e146103dc57600080fd5b806321f6d5871161016f5780633ccfd60b1161013e5780633ccfd60b1461034c57806342842e0e146103615780634451d89f1461038157806346e04a2f1461038957600080fd5b806321f6d587146102d757806323ab18f1146102ec57806323b872dd1461030c57806330176e131461032c57600080fd5b8063088e0a27116101ab578063088e0a27146102615780630955f63c14610278578063095ea7b31461029857806318160ddd146102b857600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461256d565b610577565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105c9565b6040516101fe91906126c4565b34801561023557600080fd5b50610249610244366004612614565b61065b565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b506102766106e8565b005b34801561028457600080fd5b5061027661029336600461249c565b6108a6565b3480156102a457600080fd5b506102766102b3366004612473565b610a47565b3480156102c457600080fd5b50600a545b6040519081526020016101fe565b3480156102e357600080fd5b506008546102c9565b3480156102f857600080fd5b50610276610307366004612614565b610b5d565b34801561031857600080fd5b50610276610327366004612385565b610b8c565b34801561033857600080fd5b506102766103473660046125a5565b610bbd565b34801561035857600080fd5b50610276610bfa565b34801561036d57600080fd5b5061027661037c366004612385565b610d09565b610276610d24565b610276610397366004612614565b610f19565b3480156103a857600080fd5b506102c96103b7366004612614565b6111d3565b3480156103c857600080fd5b506102766103d7366004612614565b6111fe565b3480156103e857600080fd5b506102496103f7366004612614565b61122d565b34801561040857600080fd5b506102c9610417366004612339565b6112a4565b34801561042857600080fd5b5061027661132b565b34801561043d57600080fd5b506000546001600160a01b0316610249565b34801561045b57600080fd5b5061021c61139f565b34801561047057600080fd5b5061027661047f366004612439565b6113ae565b34801561049057600080fd5b5061027661049f3660046123c0565b611473565b3480156104b057600080fd5b5061021c6104bf366004612614565b6114ab565b3480156104d057600080fd5b5061021c611576565b3480156104e557600080fd5b506010546102c9565b3480156104fa57600080fd5b506101f2610509366004612353565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054357600080fd5b506102766105523660046125eb565b611585565b34801561056357600080fd5b50610276610572366004612339565b61162a565b60006001600160e01b031982166380ac58cd60e01b14806105a857506001600160e01b03198216635b5e139f60e01b145b806105c357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d890612905565b80601f016020809104026020016040519081016040528092919081815260200182805461060490612905565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600061066682611714565b6106cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000546001600160a01b031633146107125760405162461bcd60e51b81526004016106c390612775565b601054605011156107655760405162461bcd60e51b815260206004820152601960248201527f4e6f20746f6b656e73206c65667420746f20726573657276650000000000000060448201526064016106c3565b600c54600d54600160801b9091046001600160801b0316116107ef5760405162461bcd60e51b815260206004820152603e60248201527f32343020444a656e732068617665206265656e20616c7265616479207265736560448201527f727665642c20796f752063616e206e6f742072657365727665206d6f7265000060648201526084016106c3565b604080516050808252610a20820190925260009160208201610a00803683370190505090506050600a60008282546108279190612877565b925050819055506050600d60008282546108419190612877565b90915550600090505b60508110156108985761085b611731565b82828151811061087b57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061089081612962565b91505061084a565b506108a33382611888565b50565b6000546001600160a01b031633146108d05760405162461bcd60e51b81526004016106c390612775565b601154156109205760405162461bcd60e51b815260206004820152601e60248201527f436f6c6c61626f7261746f7273207765726520616c726561647920736574000060448201526064016106c3565b6000805b82518110156109e557601183828151811061094f57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018082018555600094855293839020825160029092020180546001600160a01b0319166001600160a01b0390921691909117815591015191015582518390829081106109ba57634e487b7160e01b600052603260045260246000fd5b602002602001015160200151826109d19190612855565b9150806109dd81612962565b915050610924565b50600c546001600160801b03828116911614610a435760405162461bcd60e51b815260206004820152601e60248201527f546f74616c2063757420646f6573206e6f742061646420746f2031303025000060448201526064016106c3565b5050565b6000610a528261122d565b9050806001600160a01b0316836001600160a01b03161415610ac05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c3565b336001600160a01b0382161480610adc5750610adc8133610509565b610b4e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c3565b610b588383611a97565b505050565b6000546001600160a01b03163314610b875760405162461bcd60e51b81526004016106c390612775565b600755565b610b963382611b05565b610bb25760405162461bcd60e51b81526004016106c3906127aa565b610b58838383611baa565b6000546001600160a01b03163314610be75760405162461bcd60e51b81526004016106c390612775565b8051610a4390600e906020840190612223565b6000546001600160a01b03163314610c245760405162461bcd60e51b81526004016106c390612775565b4760005b601154811015610a435760118181548110610c5357634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160000160009054906101000a90046001600160a01b03166001600160a01b03166108fc610cce8460118581548110610ca957634e487b7160e01b600052603260045260246000fd5b6000918252602090912060016002909202010154600c546001600160801b0316611d4a565b6040518115909202916000818181858888f19350505050158015610cf6573d6000803e3d6000fd5b5080610d0181612962565b915050610c28565b610b5883838360405180602001604052806000815250611473565b323314610d735760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106c3565b60075415801590610d8657504260075411155b610dc65760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106c3565b600854341015610e225760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f75676820457468657220746f20636c61696d206120746f6b656044820152603760f91b60648201526084016106c3565b600b54336000908152600f602052604090205410610e825760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e6e6f7420636c61696d206d6f726520746f6b656e730000000060448201526064016106c3565b601054610ed15760405162461bcd60e51b815260206004820152601c60248201527f4e6f20746f6b656e73206c65667420746f20626520636c61696d65640000000060448201526064016106c3565b336000908152600f60205260408120805491610eec83612962565b9091555050600a8054906000610f0183612962565b9190505550610f1733610f12611731565b611e21565b565b323314610f685760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106c3565b60075415801590610f7b57504260075411155b610fbb5760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106c3565b80600854610fc991906128a3565b3410156110245760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520746f6044820152636b656e7360e01b60648201526084016106c3565b600b54336000908152600f6020526040902054611042908390612877565b11156110905760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e6e6f7420636c61696d206d6f726520746f6b656e730000000060448201526064016106c3565b6010548111156110e25760405162461bcd60e51b815260206004820152601c60248201527f4e6f20746f6b656e73206c65667420746f20626520636c61696d65640000000060448201526064016106c3565b60008167ffffffffffffffff81111561110b57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611134578160200160208202803683370190505b50336000908152600f6020526040812080549293508492909190611159908490612877565b9250508190555081600a60008282546111729190612877565b90915550600090505b828110156111c85761118b611731565b8282815181106111ab57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806111c081612962565b91505061117b565b50610a433382611888565b60006111de82611714565b6111fa5760405162461bcd60e51b81526004016106c390612729565b5090565b6000546001600160a01b031633146112285760405162461bcd60e51b81526004016106c390612775565b600855565b6000818152600360205260408120546001600160a01b0316806105c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c3565b60006001600160a01b03821661130f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c3565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146113555760405162461bcd60e51b81526004016106c390612775565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600280546105d890612905565b6001600160a01b0382163314156114075760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61147d3383611b05565b6114995760405162461bcd60e51b81526004016106c3906127aa565b6114a584848484611f54565b50505050565b60606114b682611714565b61151a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c3565b6000611524611576565b90506000815111611544576040518060200160405280600081525061156f565b8061154e84611f87565b60405160200161155f929190612658565b6040516020818303038152906040525b9392505050565b6060600e80546105d890612905565b6000546001600160a01b031633146115af5760405162461bcd60e51b81526004016106c390612775565b815b8161ffff168161ffff1611610b58576010805460018101825560008290529081047f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67201805461ffff8085166002600f909516949094026101000a938402930219169190911790558061162281612940565b9150506115b1565b6000546001600160a01b031633146116545760405162461bcd60e51b81526004016106c390612775565b6001600160a01b0381166116b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c3565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000908152600360205260409020546001600160a01b0316151590565b6000806117426010805490506120a1565b905060006010828154811061176757634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050601060016010805490506117a591906128c2565b815481106117c357634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff166010838154811061180857634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601080548061185657634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905592915050565b6001600160a01b0382166118de5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c3565b80516001600160a01b03831660009081526004602052604081208054909190611908908490612877565b90915550600090505b8151811015610b585761194a82828151811061193d57634e487b7160e01b600052603260045260246000fd5b6020026020010151611714565b156119975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c3565b6119bd6000848484815181106114a557634e487b7160e01b600052603260045260246000fd5b82600360008484815181106119e257634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550818181518110611a3c57634e487b7160e01b600052603260045260246000fd5b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480611a8f81612962565b915050611911565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611acc8261122d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1082611714565b611b2c5760405162461bcd60e51b81526004016106c390612729565b6000611b378361122d565b9050806001600160a01b0316846001600160a01b03161480611b725750836001600160a01b0316611b678461065b565b6001600160a01b0316145b80611ba257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bbd8261122d565b6001600160a01b031614611c255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c3565b6001600160a01b038216611c875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c3565b611c92600082611a97565b6001600160a01b0383166000908152600460205260408120805460019290611cbb9084906128c2565b90915550506001600160a01b0382166000908152600460205260408120805460019290611ce9908490612877565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611d606001600160801b0384168661288f565b90506000611d776001600160801b0385168761297d565b90506000611d8e6001600160801b0386168761288f565b90506000611da56001600160801b0387168861297d565b90506001600160801b038616611dbb82856128a3565b611dc5919061288f565b611dcf83856128a3565b611dd983876128a3565b6001600160801b038916611ded86896128a3565b611df791906128a3565b611e019190612877565b611e0b9190612877565b611e159190612877565b98975050505050505050565b6001600160a01b038216611e775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c3565b611e8081611714565b15611ecd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c3565b6001600160a01b0382166000908152600460205260408120805460019290611ef6908490612877565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611f5f848484611baa565b611f6b84848484612116565b6114a55760405162461bcd60e51b81526004016106c3906126d7565b606081611fab5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fd55780611fbf81612962565b9150611fce9050600a8361288f565b9150611faf565b60008167ffffffffffffffff811115611ffe57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612028576020820181803683370190505b5090505b8415611ba25761203d6001836128c2565b915061204a600a8661297d565b612055906030612877565b60f81b81838151811061207857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061209a600a8661288f565b945061202c565b60105460009081906120b46001436128c2565b6040805160208101939093529040908201526bffffffffffffffffffffffff1941606090811b82168184015244607484015233901b16609482015260a80160408051601f198184030181529190528051602090910120905061156f838261297d565b60006001600160a01b0384163b1561221857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061215a903390899088908890600401612687565b602060405180830381600087803b15801561217457600080fd5b505af19250505080156121a4575060408051601f3d908101601f191682019092526121a191810190612589565b60015b6121fe573d8080156121d2576040519150601f19603f3d011682016040523d82523d6000602084013e6121d7565b606091505b5080516121f65760405162461bcd60e51b81526004016106c3906126d7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ba2565b506001949350505050565b82805461222f90612905565b90600052602060002090601f0160209004810192826122515760008555612297565b82601f1061226a57805160ff1916838001178555612297565b82800160010185558215612297579182015b8281111561229757825182559160200191906001019061227c565b506111fa9291505b808211156111fa576000815560010161229f565b600067ffffffffffffffff8311156122cd576122cd6129bd565b6122e0601f8401601f1916602001612824565b90508281528383830111156122f457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461232257600080fd5b919050565b803561ffff8116811461232257600080fd5b60006020828403121561234a578081fd5b61156f8261230b565b60008060408385031215612365578081fd5b61236e8361230b565b915061237c6020840161230b565b90509250929050565b600080600060608486031215612399578081fd5b6123a28461230b565b92506123b06020850161230b565b9150604084013590509250925092565b600080600080608085870312156123d5578081fd5b6123de8561230b565b93506123ec6020860161230b565b925060408501359150606085013567ffffffffffffffff81111561240e578182fd5b8501601f8101871361241e578182fd5b61242d878235602084016122b3565b91505092959194509250565b6000806040838503121561244b578182fd5b6124548361230b565b915060208301358015158114612468578182fd5b809150509250929050565b60008060408385031215612485578182fd5b61248e8361230b565b946020939093013593505050565b600060208083850312156124ae578182fd5b823567ffffffffffffffff808211156124c5578384fd5b818501915085601f8301126124d8578384fd5b8135818111156124ea576124ea6129bd565b6124f8848260051b01612824565b8181528481019250838501600683901b85018601891015612517578687fd5b8694505b8285101561256157604080828b031215612533578788fd5b61253b6127fb565b6125448361230b565b81528288013588820152855260019590950194938601930161251b565b50979650505050505050565b60006020828403121561257e578081fd5b813561156f816129d3565b60006020828403121561259a578081fd5b815161156f816129d3565b6000602082840312156125b6578081fd5b813567ffffffffffffffff8111156125cc578182fd5b8201601f810184136125dc578182fd5b611ba2848235602084016122b3565b600080604083850312156125fd578182fd5b61260683612327565b915061237c60208401612327565b600060208284031215612625578081fd5b5035919050565b600081518084526126448160208601602086016128d9565b601f01601f19169290920160200192915050565b6000835161266a8184602088016128d9565b83519083019061267e8183602088016128d9565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126ba9083018461262c565b9695505050505050565b60208152600061156f602083018461262c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6040805190810167ffffffffffffffff8111828210171561281e5761281e6129bd565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561284d5761284d6129bd565b604052919050565b60006001600160801b0380831681851680830382111561267e5761267e612991565b6000821982111561288a5761288a612991565b500190565b60008261289e5761289e6129a7565b500490565b60008160001904831182151516156128bd576128bd612991565b500290565b6000828210156128d4576128d4612991565b500390565b60005b838110156128f45781810151838201526020016128dc565b838111156114a55750506000910152565b600181811c9082168061291957607f821691505b6020821081141561293a57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561295857612958612991565b6001019392505050565b600060001982141561297657612976612991565b5060010190565b60008261298c5761298c6129a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108a357600080fdfea26469706673582212207c9e58a5ec532215d54bfdcbecb1e0a49302ff0564b31f4bef23d927ec7d43a964736f6c6343000804003368747470733a2f2f697066732e696f2f697066732f516d5250474a576b71644639686871724e6a774757377475464864755372746f6544413250746e55363548596a582f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80634f6ccce7116100f7578063a22cb46511610095578063e35568cb11610064578063e35568cb146104d9578063e985e9c5146104ee578063efb3d00814610537578063f2fde38b1461055757600080fd5b8063a22cb46514610464578063b88d4fde14610484578063c87b56dd146104a4578063d547cfb7146104c457600080fd5b806370a08231116100d157806370a08231146103fc578063715018a61461041c5780638da5cb5b1461043157806395d89b411461044f57600080fd5b80634f6ccce71461039c57806351f468c0146103bc5780636352211e146103dc57600080fd5b806321f6d5871161016f5780633ccfd60b1161013e5780633ccfd60b1461034c57806342842e0e146103615780634451d89f1461038157806346e04a2f1461038957600080fd5b806321f6d587146102d757806323ab18f1146102ec57806323b872dd1461030c57806330176e131461032c57600080fd5b8063088e0a27116101ab578063088e0a27146102615780630955f63c14610278578063095ea7b31461029857806318160ddd146102b857600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461256d565b610577565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105c9565b6040516101fe91906126c4565b34801561023557600080fd5b50610249610244366004612614565b61065b565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b506102766106e8565b005b34801561028457600080fd5b5061027661029336600461249c565b6108a6565b3480156102a457600080fd5b506102766102b3366004612473565b610a47565b3480156102c457600080fd5b50600a545b6040519081526020016101fe565b3480156102e357600080fd5b506008546102c9565b3480156102f857600080fd5b50610276610307366004612614565b610b5d565b34801561031857600080fd5b50610276610327366004612385565b610b8c565b34801561033857600080fd5b506102766103473660046125a5565b610bbd565b34801561035857600080fd5b50610276610bfa565b34801561036d57600080fd5b5061027661037c366004612385565b610d09565b610276610d24565b610276610397366004612614565b610f19565b3480156103a857600080fd5b506102c96103b7366004612614565b6111d3565b3480156103c857600080fd5b506102766103d7366004612614565b6111fe565b3480156103e857600080fd5b506102496103f7366004612614565b61122d565b34801561040857600080fd5b506102c9610417366004612339565b6112a4565b34801561042857600080fd5b5061027661132b565b34801561043d57600080fd5b506000546001600160a01b0316610249565b34801561045b57600080fd5b5061021c61139f565b34801561047057600080fd5b5061027661047f366004612439565b6113ae565b34801561049057600080fd5b5061027661049f3660046123c0565b611473565b3480156104b057600080fd5b5061021c6104bf366004612614565b6114ab565b3480156104d057600080fd5b5061021c611576565b3480156104e557600080fd5b506010546102c9565b3480156104fa57600080fd5b506101f2610509366004612353565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561054357600080fd5b506102766105523660046125eb565b611585565b34801561056357600080fd5b50610276610572366004612339565b61162a565b60006001600160e01b031982166380ac58cd60e01b14806105a857506001600160e01b03198216635b5e139f60e01b145b806105c357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d890612905565b80601f016020809104026020016040519081016040528092919081815260200182805461060490612905565b80156106515780601f1061062657610100808354040283529160200191610651565b820191906000526020600020905b81548152906001019060200180831161063457829003601f168201915b5050505050905090565b600061066682611714565b6106cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000546001600160a01b031633146107125760405162461bcd60e51b81526004016106c390612775565b601054605011156107655760405162461bcd60e51b815260206004820152601960248201527f4e6f20746f6b656e73206c65667420746f20726573657276650000000000000060448201526064016106c3565b600c54600d54600160801b9091046001600160801b0316116107ef5760405162461bcd60e51b815260206004820152603e60248201527f32343020444a656e732068617665206265656e20616c7265616479207265736560448201527f727665642c20796f752063616e206e6f742072657365727665206d6f7265000060648201526084016106c3565b604080516050808252610a20820190925260009160208201610a00803683370190505090506050600a60008282546108279190612877565b925050819055506050600d60008282546108419190612877565b90915550600090505b60508110156108985761085b611731565b82828151811061087b57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061089081612962565b91505061084a565b506108a33382611888565b50565b6000546001600160a01b031633146108d05760405162461bcd60e51b81526004016106c390612775565b601154156109205760405162461bcd60e51b815260206004820152601e60248201527f436f6c6c61626f7261746f7273207765726520616c726561647920736574000060448201526064016106c3565b6000805b82518110156109e557601183828151811061094f57634e487b7160e01b600052603260045260246000fd5b602090810291909101810151825460018082018555600094855293839020825160029092020180546001600160a01b0319166001600160a01b0390921691909117815591015191015582518390829081106109ba57634e487b7160e01b600052603260045260246000fd5b602002602001015160200151826109d19190612855565b9150806109dd81612962565b915050610924565b50600c546001600160801b03828116911614610a435760405162461bcd60e51b815260206004820152601e60248201527f546f74616c2063757420646f6573206e6f742061646420746f2031303025000060448201526064016106c3565b5050565b6000610a528261122d565b9050806001600160a01b0316836001600160a01b03161415610ac05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106c3565b336001600160a01b0382161480610adc5750610adc8133610509565b610b4e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106c3565b610b588383611a97565b505050565b6000546001600160a01b03163314610b875760405162461bcd60e51b81526004016106c390612775565b600755565b610b963382611b05565b610bb25760405162461bcd60e51b81526004016106c3906127aa565b610b58838383611baa565b6000546001600160a01b03163314610be75760405162461bcd60e51b81526004016106c390612775565b8051610a4390600e906020840190612223565b6000546001600160a01b03163314610c245760405162461bcd60e51b81526004016106c390612775565b4760005b601154811015610a435760118181548110610c5357634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020160000160009054906101000a90046001600160a01b03166001600160a01b03166108fc610cce8460118581548110610ca957634e487b7160e01b600052603260045260246000fd5b6000918252602090912060016002909202010154600c546001600160801b0316611d4a565b6040518115909202916000818181858888f19350505050158015610cf6573d6000803e3d6000fd5b5080610d0181612962565b915050610c28565b610b5883838360405180602001604052806000815250611473565b323314610d735760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106c3565b60075415801590610d8657504260075411155b610dc65760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106c3565b600854341015610e225760405162461bcd60e51b815260206004820152602160248201527f4e6f7420656e6f75676820457468657220746f20636c61696d206120746f6b656044820152603760f91b60648201526084016106c3565b600b54336000908152600f602052604090205410610e825760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e6e6f7420636c61696d206d6f726520746f6b656e730000000060448201526064016106c3565b601054610ed15760405162461bcd60e51b815260206004820152601c60248201527f4e6f20746f6b656e73206c65667420746f20626520636c61696d65640000000060448201526064016106c3565b336000908152600f60205260408120805491610eec83612962565b9091555050600a8054906000610f0183612962565b9190505550610f1733610f12611731565b611e21565b565b323314610f685760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016106c3565b60075415801590610f7b57504260075411155b610fbb5760405162461bcd60e51b8152602060048201526011602482015270596f752061726520746f6f206561726c7960781b60448201526064016106c3565b80600854610fc991906128a3565b3410156110245760405162461bcd60e51b8152602060048201526024808201527f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520746f6044820152636b656e7360e01b60648201526084016106c3565b600b54336000908152600f6020526040902054611042908390612877565b11156110905760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e6e6f7420636c61696d206d6f726520746f6b656e730000000060448201526064016106c3565b6010548111156110e25760405162461bcd60e51b815260206004820152601c60248201527f4e6f20746f6b656e73206c65667420746f20626520636c61696d65640000000060448201526064016106c3565b60008167ffffffffffffffff81111561110b57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611134578160200160208202803683370190505b50336000908152600f6020526040812080549293508492909190611159908490612877565b9250508190555081600a60008282546111729190612877565b90915550600090505b828110156111c85761118b611731565b8282815181106111ab57634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806111c081612962565b91505061117b565b50610a433382611888565b60006111de82611714565b6111fa5760405162461bcd60e51b81526004016106c390612729565b5090565b6000546001600160a01b031633146112285760405162461bcd60e51b81526004016106c390612775565b600855565b6000818152600360205260408120546001600160a01b0316806105c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106c3565b60006001600160a01b03821661130f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106c3565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146113555760405162461bcd60e51b81526004016106c390612775565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6060600280546105d890612905565b6001600160a01b0382163314156114075760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106c3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61147d3383611b05565b6114995760405162461bcd60e51b81526004016106c3906127aa565b6114a584848484611f54565b50505050565b60606114b682611714565b61151a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106c3565b6000611524611576565b90506000815111611544576040518060200160405280600081525061156f565b8061154e84611f87565b60405160200161155f929190612658565b6040516020818303038152906040525b9392505050565b6060600e80546105d890612905565b6000546001600160a01b031633146115af5760405162461bcd60e51b81526004016106c390612775565b815b8161ffff168161ffff1611610b58576010805460018101825560008290529081047f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67201805461ffff8085166002600f909516949094026101000a938402930219169190911790558061162281612940565b9150506115b1565b6000546001600160a01b031633146116545760405162461bcd60e51b81526004016106c390612775565b6001600160a01b0381166116b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c3565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000908152600360205260409020546001600160a01b0316151590565b6000806117426010805490506120a1565b905060006010828154811061176757634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff169050601060016010805490506117a591906128c2565b815481106117c357634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff166010838154811061180857634e487b7160e01b600052603260045260246000fd5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550601080548061185657634e487b7160e01b600052603160045260246000fd5b600082815260209020601060001990920191820401805461ffff6002600f8516026101000a0219169055905592915050565b6001600160a01b0382166118de5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c3565b80516001600160a01b03831660009081526004602052604081208054909190611908908490612877565b90915550600090505b8151811015610b585761194a82828151811061193d57634e487b7160e01b600052603260045260246000fd5b6020026020010151611714565b156119975760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c3565b6119bd6000848484815181106114a557634e487b7160e01b600052603260045260246000fd5b82600360008484815181106119e257634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550818181518110611a3c57634e487b7160e01b600052603260045260246000fd5b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480611a8f81612962565b915050611911565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611acc8261122d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b1082611714565b611b2c5760405162461bcd60e51b81526004016106c390612729565b6000611b378361122d565b9050806001600160a01b0316846001600160a01b03161480611b725750836001600160a01b0316611b678461065b565b6001600160a01b0316145b80611ba257506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611bbd8261122d565b6001600160a01b031614611c255760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106c3565b6001600160a01b038216611c875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106c3565b611c92600082611a97565b6001600160a01b0383166000908152600460205260408120805460019290611cbb9084906128c2565b90915550506001600160a01b0382166000908152600460205260408120805460019290611ce9908490612877565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080611d606001600160801b0384168661288f565b90506000611d776001600160801b0385168761297d565b90506000611d8e6001600160801b0386168761288f565b90506000611da56001600160801b0387168861297d565b90506001600160801b038616611dbb82856128a3565b611dc5919061288f565b611dcf83856128a3565b611dd983876128a3565b6001600160801b038916611ded86896128a3565b611df791906128a3565b611e019190612877565b611e0b9190612877565b611e159190612877565b98975050505050505050565b6001600160a01b038216611e775760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106c3565b611e8081611714565b15611ecd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106c3565b6001600160a01b0382166000908152600460205260408120805460019290611ef6908490612877565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611f5f848484611baa565b611f6b84848484612116565b6114a55760405162461bcd60e51b81526004016106c3906126d7565b606081611fab5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fd55780611fbf81612962565b9150611fce9050600a8361288f565b9150611faf565b60008167ffffffffffffffff811115611ffe57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612028576020820181803683370190505b5090505b8415611ba25761203d6001836128c2565b915061204a600a8661297d565b612055906030612877565b60f81b81838151811061207857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061209a600a8661288f565b945061202c565b60105460009081906120b46001436128c2565b6040805160208101939093529040908201526bffffffffffffffffffffffff1941606090811b82168184015244607484015233901b16609482015260a80160408051601f198184030181529190528051602090910120905061156f838261297d565b60006001600160a01b0384163b1561221857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061215a903390899088908890600401612687565b602060405180830381600087803b15801561217457600080fd5b505af19250505080156121a4575060408051601f3d908101601f191682019092526121a191810190612589565b60015b6121fe573d8080156121d2576040519150601f19603f3d011682016040523d82523d6000602084013e6121d7565b606091505b5080516121f65760405162461bcd60e51b81526004016106c3906126d7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ba2565b506001949350505050565b82805461222f90612905565b90600052602060002090601f0160209004810192826122515760008555612297565b82601f1061226a57805160ff1916838001178555612297565b82800160010185558215612297579182015b8281111561229757825182559160200191906001019061227c565b506111fa9291505b808211156111fa576000815560010161229f565b600067ffffffffffffffff8311156122cd576122cd6129bd565b6122e0601f8401601f1916602001612824565b90508281528383830111156122f457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461232257600080fd5b919050565b803561ffff8116811461232257600080fd5b60006020828403121561234a578081fd5b61156f8261230b565b60008060408385031215612365578081fd5b61236e8361230b565b915061237c6020840161230b565b90509250929050565b600080600060608486031215612399578081fd5b6123a28461230b565b92506123b06020850161230b565b9150604084013590509250925092565b600080600080608085870312156123d5578081fd5b6123de8561230b565b93506123ec6020860161230b565b925060408501359150606085013567ffffffffffffffff81111561240e578182fd5b8501601f8101871361241e578182fd5b61242d878235602084016122b3565b91505092959194509250565b6000806040838503121561244b578182fd5b6124548361230b565b915060208301358015158114612468578182fd5b809150509250929050565b60008060408385031215612485578182fd5b61248e8361230b565b946020939093013593505050565b600060208083850312156124ae578182fd5b823567ffffffffffffffff808211156124c5578384fd5b818501915085601f8301126124d8578384fd5b8135818111156124ea576124ea6129bd565b6124f8848260051b01612824565b8181528481019250838501600683901b85018601891015612517578687fd5b8694505b8285101561256157604080828b031215612533578788fd5b61253b6127fb565b6125448361230b565b81528288013588820152855260019590950194938601930161251b565b50979650505050505050565b60006020828403121561257e578081fd5b813561156f816129d3565b60006020828403121561259a578081fd5b815161156f816129d3565b6000602082840312156125b6578081fd5b813567ffffffffffffffff8111156125cc578182fd5b8201601f810184136125dc578182fd5b611ba2848235602084016122b3565b600080604083850312156125fd578182fd5b61260683612327565b915061237c60208401612327565b600060208284031215612625578081fd5b5035919050565b600081518084526126448160208601602086016128d9565b601f01601f19169290920160200192915050565b6000835161266a8184602088016128d9565b83519083019061267e8183602088016128d9565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126ba9083018461262c565b9695505050505050565b60208152600061156f602083018461262c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6040805190810167ffffffffffffffff8111828210171561281e5761281e6129bd565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561284d5761284d6129bd565b604052919050565b60006001600160801b0380831681851680830382111561267e5761267e612991565b6000821982111561288a5761288a612991565b500190565b60008261289e5761289e6129a7565b500490565b60008160001904831182151516156128bd576128bd612991565b500290565b6000828210156128d4576128d4612991565b500390565b60005b838110156128f45781810151838201526020016128dc565b838111156114a55750506000910152565b600181811c9082168061291957607f821691505b6020821081141561293a57634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141561295857612958612991565b6001019392505050565b600060001982141561297657612976612991565b5060010190565b60008261298c5761298c6129a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108a357600080fdfea26469706673582212207c9e58a5ec532215d54bfdcbecb1e0a49302ff0564b31f4bef23d927ec7d43a964736f6c63430008040033

Deployed Bytecode Sourcemap

37110:7649:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23449:355;;;;;;;;;;-1:-1:-1;23449:355:0;;;;;:::i;:::-;;:::i;:::-;;;7828:14:1;;7821:22;7803:41;;7791:2;7776:18;23449:355:0;;;;;;;;24618:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26224:308::-;;;;;;;;;;-1:-1:-1;26224:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7126:32:1;;;7108:51;;7096:2;7081:18;26224:308:0;7063:102:1;40310:507:0;;;;;;;;;;;;;:::i;:::-;;38400:481;;;;;;;;;;-1:-1:-1;38400:481:0;;;;;:::i;:::-;;:::i;25723:435::-;;;;;;;;;;-1:-1:-1;25723:435:0;;;;;:::i;:::-;;:::i;43163:106::-;;;;;;;;;;-1:-1:-1;43244:17:0;;43163:106;;;18336:25:1;;;18324:2;18309:18;43163:106:0;18291:76:1;43006:93:0;;;;;;;;;;-1:-1:-1;43081:10:0;;43006:93;;40081:145;;;;;;;;;;-1:-1:-1;40081:145:0;;;;;:::i;:::-;;:::i;27283:376::-;;;;;;;;;;-1:-1:-1;27283:376:0;;;;;:::i;:::-;;:::i;39446:97::-;;;;;;;;;;-1:-1:-1;39446:97:0;;;;;:::i;:::-;;:::i;39031:318::-;;;;;;;;;;;;;:::i;27730:185::-;;;;;;;;;;-1:-1:-1;27730:185:0;;;;;:::i;:::-;;:::i;40877:511::-;;;:::i;41457:809::-;;;;;;:::i;:::-;;:::i;42334:227::-;;;;;;;;;;-1:-1:-1;42334:227:0;;;;;:::i;:::-;;:::i;39618:106::-;;;;;;;;;;-1:-1:-1;39618:106:0;;;;;:::i;:::-;;:::i;24225:326::-;;;;;;;;;;-1:-1:-1;24225:326:0;;;;;:::i;:::-;;:::i;23868:295::-;;;;;;;;;;-1:-1:-1;23868:295:0;;;;;:::i;:::-;;:::i;21655:148::-;;;;;;;;;;;;;:::i;21004:87::-;;;;;;;;;;-1:-1:-1;21050:7:0;21077:6;-1:-1:-1;;;;;21077:6:0;21004:87;;24787:104;;;;;;;;;;;;;:::i;26604:327::-;;;;;;;;;;-1:-1:-1;26604:327:0;;;;;:::i;:::-;;:::i;27986:365::-;;;;;;;;;;-1:-1:-1;27986:365:0;;;;;:::i;:::-;;:::i;24962:468::-;;;;;;;;;;-1:-1:-1;24962:468:0;;;;;:::i;:::-;;:::i;42641:95::-;;;;;;;;;;;;;:::i;42833:110::-;;;;;;;;;;-1:-1:-1;42913:15:0;:22;42833:110;;27002:214;;;;;;;;;;-1:-1:-1;27002:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;27173:25:0;;;27144:4;27173:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27002:214;39794:197;;;;;;;;;;-1:-1:-1;39794:197:0;;;;;:::i;:::-;;:::i;21958:244::-;;;;;;;;;;-1:-1:-1;21958:244:0;;;;;:::i;:::-;;:::i;23449:355::-;23596:4;-1:-1:-1;;;;;;23638:40:0;;-1:-1:-1;;;23638:40:0;;:105;;-1:-1:-1;;;;;;;23695:48:0;;-1:-1:-1;;;23695:48:0;23638:105;:158;;;-1:-1:-1;;;;;;;;;;2200:40:0;;;23760:36;23618:178;23449:355;-1:-1:-1;;23449:355:0:o;24618:100::-;24672:13;24705:5;24698:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24618:100;:::o;26224:308::-;26345:7;26392:16;26400:7;26392;:16::i;:::-;26370:110;;;;-1:-1:-1;;;26370:110:0;;14380:2:1;26370:110:0;;;14362:21:1;14419:2;14399:18;;;14392:30;14458:34;14438:18;;;14431:62;-1:-1:-1;;;14509:18:1;;;14502:42;14561:19;;26370:110:0;;;;;;;;;-1:-1:-1;26500:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26500:24:0;;26224:308::o;40310:507::-;21050:7;21077:6;-1:-1:-1;;;;;21077:6:0;4855:10;21224:23;21216:68;;;;-1:-1:-1;;;21216:68:0;;;;;;;:::i;:::-;40380:15:::1;:22:::0;40406:2:::1;-1:-1:-1::0;40380:28:0::1;40372:66;;;::::0;-1:-1:-1;;;40372:66:0;;18038:2:1;40372:66:0::1;::::0;::::1;18020:21:1::0;18077:2;18057:18;;;18050:30;18116:27;18096:18;;;18089:55;18161:18;;40372:66:0::1;18010:175:1::0;40372:66:0::1;40473:8;::::0;40457:13:::1;::::0;-1:-1:-1;;;40473:8:0;;::::1;-1:-1:-1::0;;;;;40473:8:0::1;-1:-1:-1::0;40449:98:0::1;;;::::0;-1:-1:-1;;;40449:98:0;;17607:2:1;40449:98:0::1;::::0;::::1;17589:21:1::0;17646:2;17626:18;;;17619:30;17685:34;17665:18;;;17658:62;17756:32;17736:18;;;17729:60;17806:19;;40449:98:0::1;17579:252:1::0;40449:98:0::1;40586:17;::::0;;40600:2:::1;40586:17:::0;;;;;::::1;::::0;;;40558:25:::1;::::0;40586:17:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40586:17:0::1;40558:45;;40637:2;40616:17;;:23;;;;;;;:::i;:::-;;;;;;;;40661:2;40644:13;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;40681:9:0::1;::::0;-1:-1:-1;40676:91:0::1;40696:2;40692:1;:6;40676:91;;;40734:21;:19;:21::i;:::-;40720:8;40729:1;40720:11;;;;;;-1:-1:-1::0;;;40720:11:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;:35;40700:3;::::1;::::0;::::1;:::i;:::-;;;;40676:91;;;;40777:32;40788:10;40800:8;40777:10;:32::i;:::-;21295:1;40310:507::o:0;38400:481::-;21050:7;21077:6;-1:-1:-1;;;;;21077:6:0;4855:10;21224:23;21216:68;;;;-1:-1:-1;;;21216:68:0;;;;;;;:::i;:::-;38526:13:::1;:20:::0;:25;38518:68:::1;;;::::0;-1:-1:-1;;;38518:68:0;;9821:2:1;38518:68:0::1;::::0;::::1;9803:21:1::0;9860:2;9840:18;;;9833:30;9899:32;9879:18;;;9872:60;9949:18;;38518:68:0::1;9793:180:1::0;38518:68:0::1;38599:16;38631:9:::0;38626:169:::1;38646:14;:21;38642:1;:25;38626:169;;;38689:13;38708:14;38723:1;38708:17;;;;;;-1:-1:-1::0;;;38708:17:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;38689:37;;::::1;::::0;;::::1;::::0;;-1:-1:-1;38689:37:0;;;;;;;;;::::1;::::0;;::::1;;::::0;;-1:-1:-1;;;;;;38689:37:0::1;-1:-1:-1::0;;;;;38689:37:0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;38761:17;;;;38776:1;;38761:17;::::1;;;-1:-1:-1::0;;;38761:17:0::1;;;;;;;;;;;;;;;:21;;;38741:42;;;;;:::i;:::-;::::0;-1:-1:-1;38669:3:0;::::1;::::0;::::1;:::i;:::-;;;;38626:169;;;-1:-1:-1::0;38827:11:0::1;::::0;-1:-1:-1;;;;;38815:23:0;;::::1;38827:11:::0;::::1;38815:23;38807:66;;;::::0;-1:-1:-1;;;38807:66:0;;11296:2:1;38807:66:0::1;::::0;::::1;11278:21:1::0;11335:2;11315:18;;;11308:30;11374:32;11354:18;;;11347:60;11424:18;;38807:66:0::1;11268:180:1::0;38807:66:0::1;21295:1;38400:481:::0;:::o;25723:435::-;25804:13;25820:23;25835:7;25820:14;:23::i;:::-;25804:39;;25868:5;-1:-1:-1;;;;;25862:11:0;:2;-1:-1:-1;;;;;25862:11:0;;;25854:57;;;;-1:-1:-1;;;25854:57:0;;16382:2:1;25854:57:0;;;16364:21:1;16421:2;16401:18;;;16394:30;16460:34;16440:18;;;16433:62;-1:-1:-1;;;16511:18:1;;;16504:31;16552:19;;25854:57:0;16354:223:1;25854:57:0;4855:10;-1:-1:-1;;;;;25946:21:0;;;;:86;;-1:-1:-1;25988:44:0;26012:5;4855:10;27002:214;:::i;25988:44::-;25924:192;;;;-1:-1:-1;;;25924:192:0;;12427:2:1;25924:192:0;;;12409:21:1;12466:2;12446:18;;;12439:30;12505:34;12485:18;;;12478:62;12576:26;12556:18;;;12549:54;12620:19;;25924:192:0;12399:246:1;25924:192:0;26129:21;26138:2;26142:7;26129:8;:21::i;:::-;25723:435;;;:::o;40081:145::-;21050:7;21077:6;-1:-1:-1;;;;;21077:6:0;4855:10;21224:23;21216:68;;;;-1:-1:-1;;;21216:68:0;;;;;;;:::i;:::-;40186:14:::1;:32:::0;40081:145::o;27283:376::-;27492:41;4855:10;27525:7;27492:18;:41::i;:::-;27470:140;;;;-1:-1:-1;;;27470:140:0;;;;;;;:::i;:::-;27623:28;27633:4;27639:2;27643:7;27623:9;:28::i;39446:97::-;21050:7;21077:6;-1:-1:-1;;;;;21077:6:0;4855:10;21224:23;21216:68;;;;-1:-1:-1;;;21216:68:0;;;;;;;:::i;:::-;39521:14;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;39031:318::-:0;21050:7;21077:6;-1:-1:-1;;;;;21077:6:0;4855:10;21224:23;21216:68;;;;-1:-1:-1;;;21216:68:0;;;;;;;:::i;:::-;39104:21:::1;39081:20;39138:204;39158:13;:20:::0;39154:24;::::1;39138:204;;;39208:13;39222:1;39208:16;;;;;;-1:-1:-1::0;;;39208:16:0::1;;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;-1:-1:-1::0;;;;;39208:21:0::1;-1:-1:-1::0;;;;;39200:39:0::1;:130;39258:57;39267:12;39281:13;39295:1;39281:16;;;;;;-1:-1:-1::0;;;39281:16:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;:20:::1;:16;::::0;;::::1;;:20;::::0;39303:11:::1;::::0;-1:-1:-1;;;;;39303:11:0::1;39258:8;:57::i;:::-;39200:130;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;39180:3:0;::::1;::::0;::::1;:::i;:::-;;;;39138:204;;27730:185:::0;27868:39;27885:4;27891:2;27895:7;27868:39;;;;;;;;;;;;:16;:39::i;40877:511::-;37192:9;37205:10;37192:23;37184:66;;;;-1:-1:-1;;;37184:66:0;;12068:2:1;37184:66:0;;;12050:21:1;12107:2;12087:18;;;12080:30;12146:32;12126:18;;;12119:60;12196:18;;37184:66:0;12040:180:1;37184:66:0;37335:14:::1;::::0;:19;;::::1;::::0;:56:::1;;;37376:15;37358:14;;:33;;37335:56;37313:123;;;::::0;-1:-1:-1;;;37313:123:0;;12852:2:1;37313:123:0::1;::::0;::::1;12834:21:1::0;12891:2;12871:18;;;12864:30;-1:-1:-1;;;12910:18:1;;;12903:47;12967:18;;37313:123:0::1;12824:167:1::0;37313:123:0::1;40974:10:::2;;40961:9;:23;;40953:69;;;::::0;-1:-1:-1;;;40953:69:0;;14793:2:1;40953:69:0::2;::::0;::::2;14775:21:1::0;14832:2;14812:18;;;14805:30;14871:34;14851:18;;;14844:62;-1:-1:-1;;;14922:18:1;;;14915:31;14963:19;;40953:69:0::2;14765:223:1::0;40953:69:0::2;41094:18;::::0;41080:10:::2;41057:34;::::0;;;:22:::2;:34;::::0;;;;;:55:::2;41035:133;;;::::0;-1:-1:-1;;;41035:133:0;;10939:2:1;41035:133:0::2;::::0;::::2;10921:21:1::0;10978:2;10958:18;;;10951:30;11017;10997:18;;;10990:58;11065:18;;41035:133:0::2;10911:178:1::0;41035:133:0::2;41189:15;:22:::0;41181:67:::2;;;::::0;-1:-1:-1;;;41181:67:0;;8700:2:1;41181:67:0::2;::::0;::::2;8682:21:1::0;8739:2;8719:18;;;8712:30;8778;8758:18;;;8751:58;8826:18;;41181:67:0::2;8672:178:1::0;41181:67:0::2;41284:10;41261:34;::::0;;;:22:::2;:34;::::0;;;;:36;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;41308:17:0::2;:19:::0;;;:17:::2;:19;::::0;::::2;:::i;:::-;;;;;;41340:40;41346:10;41358:21;:19;:21::i;:::-;41340:5;:40::i;:::-;40877:511::o:0;41457:809::-;37192:9;37205:10;37192:23;37184:66;;;;-1:-1:-1;;;37184:66:0;;12068:2:1;37184:66:0;;;12050:21:1;12107:2;12087:18;;;12080:30;12146:32;12126:18;;;12119:60;12196:18;;37184:66:0;12040:180:1;37184:66:0;37335:14:::1;::::0;:19;;::::1;::::0;:56:::1;;;37376:15;37358:14;;:33;;37335:56;37313:123;;;::::0;-1:-1:-1;;;37313:123:0;;12852:2:1;37313:123:0::1;::::0;::::1;12834:21:1::0;12891:2;12871:18;;;12864:30;-1:-1:-1;;;12910:18:1;;;12903:47;12967:18;;37313:123:0::1;12824:167:1::0;37313:123:0::1;41637:6:::2;41624:10;;:19;;;;:::i;:::-;41611:9;:32;;41589:118;;;::::0;-1:-1:-1;;;41589:118:0;;16784:2:1;41589:118:0::2;::::0;::::2;16766:21:1::0;16823:2;16803:18;;;16796:30;16862:34;16842:18;;;16835:62;-1:-1:-1;;;16913:18:1;;;16906:34;16957:19;;41589:118:0::2;16756:226:1::0;41589:118:0::2;41789:18;::::0;41765:10:::2;41742:34;::::0;;;:22:::2;:34;::::0;;;;;:43:::2;::::0;41779:6;;41742:43:::2;:::i;:::-;:65;;41720:143;;;::::0;-1:-1:-1;;;41720:143:0;;10939:2:1;41720:143:0::2;::::0;::::2;10921:21:1::0;10978:2;10958:18;;;10951:30;11017;10997:18;;;10990:58;11065:18;;41720:143:0::2;10911:178:1::0;41720:143:0::2;41884:15;:22:::0;:32;-1:-1:-1;41884:32:0::2;41876:73;;;::::0;-1:-1:-1;;;41876:73:0;;8700:2:1;41876:73:0::2;::::0;::::2;8682:21:1::0;8739:2;8719:18;;;8712:30;8778;8758:18;;;8751:58;8826:18;;41876:73:0::2;8672:178:1::0;41876:73:0::2;41962:25;42004:6;41990:21;;;;;;-1:-1:-1::0;;;41990:21:0::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;41990:21:0::2;-1:-1:-1::0;42047:10:0::2;42024:34;::::0;;;:22:::2;:34;::::0;;;;:44;;41962:49;;-1:-1:-1;42062:6:0;;42024:34;;;:44:::2;::::0;42062:6;;42024:44:::2;:::i;:::-;;;;;;;;42100:6;42079:17;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;42124:9:0::2;::::0;-1:-1:-1;42119:95:0::2;42139:6;42135:1;:10;42119:95;;;42181:21;:19;:21::i;:::-;42167:8;42176:1;42167:11;;;;;;-1:-1:-1::0;;;42167:11:0::2;;;;;;;;;;::::0;;::::2;::::0;;;;;:35;42147:3;::::2;::::0;::::2;:::i;:::-;;;;42119:95;;;;42226:32;42237:10;42249:8;42226:10;:32::i;42334:227::-:0;42396:7;42438:16;42446:7;42438;:16::i;:::-;42416:110;;;;-1:-1:-1;;;42416:110:0;;;;;;;:::i;:::-;-1:-1:-1;42546:7:0;42334:227::o;39618:106::-;21050:7;21077:6;-1:-1:-1;;;;;21077:6:0;4855:10;21224:23;21216:68;;;;-1:-1:-1;;;21216:68:0;;;;;;;:::i;:::-;39692:10:::1;:24:::0;39618:106::o;24225:326::-;24342:7;24383:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24383:16:0;24432:19;24410:110;;;;-1:-1:-1;;;24410:110:0;;13609:2:1;24410:110:0;;;13591:21:1;13648:2;13628:18;;;13621:30;13687:34;13667:18;;;13660:62;-1:-1:-1;;;13738:18:1;;;13731:39;13787:19;;24410:110:0;13581:231:1;23868:295:0;23985:7;-1:-1:-1;;;;;24032:19:0;;24010:111;;;;-1:-1:-1;;;24010:111:0;;13198:2:1;24010:111:0;;;13180:21:1;13237:2;13217:18;;;13210:30;13276:34;13256:18;;;13249:62;-1:-1:-1;;;13327:18:1;;;13320:40;13377:19;;24010:111:0;13170:232:1;24010:111:0;-1:-1:-1;;;;;;24139:16:0;;;;;:9;:16;;;;;;;23868:295::o;21655:148::-;21050:7;21077:6;-1:-1:-1;;;;;21077:6:0;4855:10;21224:23;21216:68;;;;-1:-1:-1;;;21216:68:0;;;;;;;:::i;:::-;21762:1:::1;21746:6:::0;;21725:40:::1;::::0;-1:-1:-1;;;;;21746:6:0;;::::1;::::0;21725:40:::1;::::0;21762:1;;21725:40:::1;21793:1;21776:19:::0;;-1:-1:-1;;;;;;21776:19:0::1;::::0;;21655:148::o;24787:104::-;24843:13;24876:7;24869:14;;;;;:::i;26604:327::-;-1:-1:-1;;;;;26739:24:0;;4855:10;26739:24;;26731:62;;;;-1:-1:-1;;;26731:62:0;;10585:2:1;26731:62:0;;;10567:21:1;10624:2;10604:18;;;10597:30;10663:27;10643:18;;;10636:55;10708:18;;26731:62:0;10557:175:1;26731:62:0;4855:10;26806:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26806:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26806:53:0;;;;;;;;;;26875:48;;7803:41:1;;;26806:42:0;;4855:10;26875:48;;7776:18:1;26875:48:0;;;;;;;26604:327;;:::o;27986:365::-;28175:41;4855:10;28208:7;28175:18;:41::i;:::-;28153:140;;;;-1:-1:-1;;;28153:140:0;;;;;;;:::i;:::-;28304:39;28318:4;28324:2;28328:7;28337:5;28304:13;:39::i;:::-;27986:365;;;;:::o;24962:468::-;25080:13;25133:16;25141:7;25133;:16::i;:::-;25111:113;;;;-1:-1:-1;;;25111:113:0;;15966:2:1;25111:113:0;;;15948:21:1;16005:2;15985:18;;;15978:30;16044:34;16024:18;;;16017:62;-1:-1:-1;;;16095:18:1;;;16088:45;16150:19;;25111:113:0;15938:237:1;25111:113:0;25237:21;25261:10;:8;:10::i;:::-;25237:34;;25326:1;25308:7;25302:21;:25;:120;;;;;;;;;;;;;;;;;25371:7;25380:18;:7;:16;:18::i;:::-;25354:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25302:120;25282:140;24962:468;-1:-1:-1;;;24962:468:0:o;42641:95::-;42688:13;42721:7;42714:14;;;;;:::i;39794:197::-;21050:7;21077:6;-1:-1:-1;;;;;21077:6:0;4855:10;21224:23;21216:68;;;;-1:-1:-1;;;21216:68:0;;;;;;;:::i;:::-;39914:4;39898:86:::1;39925:2;39920:7;;:1;:7;;;39898:86;;39949:15;:23:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;39949:23:0;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;;::::0;;;;;;;::::1;;;::::0;;::::1;::::0;::::1;;;::::0;;;::::1;::::0;;39970:1;39929:3:::1;39970:1:::0;39929:3:::1;:::i;:::-;;;;39898:86;;21958:244:::0;21050:7;21077:6;-1:-1:-1;;;;;21077:6:0;4855:10;21224:23;21216:68;;;;-1:-1:-1;;;21216:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22047:22:0;::::1;22039:73;;;::::0;-1:-1:-1;;;22039:73:0;;9057:2:1;22039:73:0::1;::::0;::::1;9039:21:1::0;9096:2;9076:18;;;9069:30;9135:34;9115:18;;;9108:62;-1:-1:-1;;;9186:18:1;;;9179:36;9232:19;;22039:73:0::1;9029:228:1::0;22039:73:0::1;22149:6;::::0;;22128:38:::1;::::0;-1:-1:-1;;;;;22128:38:0;;::::1;::::0;22149:6;::::1;::::0;22128:38:::1;::::0;::::1;22177:6;:17:::0;;-1:-1:-1;;;;;;22177:17:0::1;-1:-1:-1::0;;;;;22177:17:0;;;::::1;::::0;;;::::1;::::0;;21958:244::o;29898:127::-;29963:4;29987:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29987:16:0;:30;;;29898:127::o;43396:335::-;43444:7;43464:14;43481:40;43498:15;:22;;;;43481:16;:40::i;:::-;43464:57;;43532:15;43558;43574:6;43558:23;;;;;;-1:-1:-1;;;43558:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43550:32;;43532:50;;43621:15;43662:1;43637:15;:22;;;;:26;;;;:::i;:::-;43621:43;;;;;;-1:-1:-1;;;43621:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43595:15;43611:6;43595:23;;;;;;-1:-1:-1;;;43595:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:69;;;;;;;;;;;;;;;;;;43675:15;:21;;;;;-1:-1:-1;;;43675:21:0;;;;;;;;;;;;;;;;;-1:-1:-1;;43675:21:0;;;;;;;;;;;;;;;;;;;;;;;;43716:7;43396:335;-1:-1:-1;;43396:335:0:o;32377:532::-;-1:-1:-1;;;;;32495:16:0;;32487:61;;;;-1:-1:-1;;;32487:61:0;;14019:2:1;32487:61:0;;;14001:21:1;;;14038:18;;;14031:30;14097:34;14077:18;;;14070:62;14149:18;;32487:61:0;13991:182:1;32487:61:0;32576:15;;-1:-1:-1;;;;;32559:13:0;;;;;;:9;:13;;;;;:32;;:13;;;:32;;32576:15;;32559:32;:::i;:::-;;;;-1:-1:-1;32609:9:0;;-1:-1:-1;32604:298:0;32624:8;:15;32620:1;:19;32604:298;;;32670:20;32678:8;32687:1;32678:11;;;;;;-1:-1:-1;;;32678:11:0;;;;;;;;;;;;;;;32670:7;:20::i;:::-;32669:21;32661:62;;;;-1:-1:-1;;;32661:62:0;;9464:2:1;32661:62:0;;;9446:21:1;9503:2;9483:18;;;9476:30;9542;9522:18;;;9515:58;9590:18;;32661:62:0;9436:178:1;32661:62:0;32740:49;32769:1;32773:2;32777:8;32786:1;32777:11;;;;;;-1:-1:-1;;;32777:11:0;;;;;;;;32740:49;32829:2;32806:7;:20;32814:8;32823:1;32814:11;;;;;;-1:-1:-1;;;32814:11:0;;;;;;;;;;;;;;;32806:20;;;;;;;;;;;;:25;;;;;-1:-1:-1;;;;;32806:25:0;;;;;-1:-1:-1;;;;;32806:25:0;;;;;;32878:8;32887:1;32878:11;;;;;;-1:-1:-1;;;32878:11:0;;;;;;;;;;;;;;;32874:2;-1:-1:-1;;;;;32853:37:0;32870:1;-1:-1:-1;;;;;32853:37:0;;;;;;;;;;;32641:3;;;;:::i;:::-;;;;32604:298;;34568:174;34643:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34643:29:0;-1:-1:-1;;;;;34643:29:0;;;;;;;;:24;;34697:23;34643:24;34697:14;:23::i;:::-;-1:-1:-1;;;;;34688:46:0;;;;;;;;;;;34568:174;;:::o;30192:459::-;30321:4;30365:16;30373:7;30365;:16::i;:::-;30343:110;;;;-1:-1:-1;;;30343:110:0;;;;;;;:::i;:::-;30464:13;30480:23;30495:7;30480:14;:23::i;:::-;30464:39;;30533:5;-1:-1:-1;;;;;30522:16:0;:7;-1:-1:-1;;;;;30522:16:0;;:64;;;;30579:7;-1:-1:-1;;;;;30555:31:0;:20;30567:7;30555:11;:20::i;:::-;-1:-1:-1;;;;;30555:31:0;;30522:64;:120;;;-1:-1:-1;;;;;;27173:25:0;;;27144:4;27173:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30603:39;30514:129;30192:459;-1:-1:-1;;;;30192:459:0:o;33835:615::-;34008:4;-1:-1:-1;;;;;33981:31:0;:23;33996:7;33981:14;:23::i;:::-;-1:-1:-1;;;;;33981:31:0;;33959:122;;;;-1:-1:-1;;;33959:122:0;;15556:2:1;33959:122:0;;;15538:21:1;15595:2;15575:18;;;15568:30;15634:34;15614:18;;;15607:62;-1:-1:-1;;;15685:18:1;;;15678:39;15734:19;;33959:122:0;15528:231:1;33959:122:0;-1:-1:-1;;;;;34100:16:0;;34092:65;;;;-1:-1:-1;;;34092:65:0;;10180:2:1;34092:65:0;;;10162:21:1;10219:2;10199:18;;;10192:30;10258:34;10238:18;;;10231:62;-1:-1:-1;;;10309:18:1;;;10302:34;10353:19;;34092:65:0;10152:226:1;34092:65:0;34274:29;34291:1;34295:7;34274:8;:29::i;:::-;-1:-1:-1;;;;;34316:15:0;;;;;;:9;:15;;;;;:20;;34335:1;;34316:15;:20;;34335:1;;34316:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34347:13:0;;;;;;:9;:13;;;;;:18;;34364:1;;34347:13;:18;;34364:1;;34347:18;:::i;:::-;;;;-1:-1:-1;;34376:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34376:21:0;-1:-1:-1;;;;;34376:21:0;;;;;;;;;34415:27;;34376:16;;34415:27;;;;;;;33835:615;;;:::o;44432:324::-;44544:7;;44576:9;-1:-1:-1;;;;;44576:9:0;;:1;:9;:::i;:::-;44564:21;-1:-1:-1;44596:9:0;44608;-1:-1:-1;;;;;44608:9:0;;:1;:9;:::i;:::-;44596:21;-1:-1:-1;44628:9:0;44640;-1:-1:-1;;;;;44640:9:0;;:1;:9;:::i;:::-;44628:21;-1:-1:-1;44660:9:0;44672;-1:-1:-1;;;;;44672:9:0;;:1;:9;:::i;:::-;44660:21;-1:-1:-1;;;;;;44733:15:0;;44734:5;44660:21;44734:1;:5;:::i;:::-;44733:15;;;;:::i;:::-;44725:5;44729:1;44725;:5;:::i;:::-;44717;44721:1;44717;:5;:::i;:::-;-1:-1:-1;;;;;44701:13:0;;:5;44705:1;44701;:5;:::i;:::-;:13;;;;:::i;:::-;:21;;;;:::i;:::-;:29;;;;:::i;:::-;:47;;;;:::i;:::-;44694:54;44432:324;-1:-1:-1;;;;;;;;44432:324:0:o;31987:382::-;-1:-1:-1;;;;;32067:16:0;;32059:61;;;;-1:-1:-1;;;32059:61:0;;14019:2:1;32059:61:0;;;14001:21:1;;;14038:18;;;14031:30;14097:34;14077:18;;;14070:62;14149:18;;32059:61:0;13991:182:1;32059:61:0;32140:16;32148:7;32140;:16::i;:::-;32139:17;32131:58;;;;-1:-1:-1;;;32131:58:0;;9464:2:1;32131:58:0;;;9446:21:1;9503:2;9483:18;;;9476:30;9542;9522:18;;;9515:58;9590:18;;32131:58:0;9436:178:1;32131:58:0;-1:-1:-1;;;;;32260:13:0;;;;;;:9;:13;;;;;:18;;32277:1;;32260:13;:18;;32277:1;;32260:18;:::i;:::-;;;;-1:-1:-1;;32289:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32289:21:0;-1:-1:-1;;;;;32289:21:0;;;;;;;;32328:33;;32289:16;;;32328:33;;32289:16;;32328:33;31987:382;;:::o;29233:352::-;29390:28;29400:4;29406:2;29410:7;29390:9;:28::i;:::-;29451:48;29474:4;29480:2;29484:7;29493:5;29451:22;:48::i;:::-;29429:148;;;;-1:-1:-1;;;29429:148:0;;;;;;;:::i;2477:723::-;2533:13;2754:10;2750:53;;-1:-1:-1;;2781:10:0;;;;;;;;;;;;-1:-1:-1;;;2781:10:0;;;;;2477:723::o;2750:53::-;2828:5;2813:12;2869:78;2876:9;;2869:78;;2902:8;;;;:::i;:::-;;-1:-1:-1;2925:10:0;;-1:-1:-1;2933:2:0;2925:10;;:::i;:::-;;;2869:78;;;2957:19;2989:6;2979:17;;;;;;-1:-1:-1;;;2979:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2979:17:0;;2957:39;;3007:154;3014:10;;3007:154;;3041:11;3051:1;3041:11;;:::i;:::-;;-1:-1:-1;3110:10:0;3118:2;3110:5;:10;:::i;:::-;3097:24;;:2;:24;:::i;:::-;3084:39;;3067:6;3074;3067:14;;;;;;-1:-1:-1;;;3067:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;3067:56:0;;;;;;;;-1:-1:-1;3138:11:0;3147:2;3138:11;;:::i;:::-;;;3007:154;;43804:459;43994:15;:22;43868:7;;;;44049:16;44064:1;44049:12;:16;:::i;:::-;43955:239;;;;;;6668:19:1;;;;44039:27:0;;6703:12:1;;;6696:28;-1:-1:-1;;44089:14:0;6812:2:1;6808:15;;;6804:24;;6790:12;;;6783:46;44126:16:0;6845:12:1;;;6838:28;44165:10:0;6901:15:1;;6897:24;6882:13;;;6875:47;6938:13;;43955:239:0;;;-1:-1:-1;;43955:239:0;;;;;;;;;43927:282;;43955:239;43927:282;;;;;-1:-1:-1;44240:15:0;44249:6;43927:282;44240:15;:::i;35307:1053::-;35462:4;-1:-1:-1;;;;;35483:13:0;;6173:20;6212:8;35479:874;;35536:175;;-1:-1:-1;;;35536:175:0;;-1:-1:-1;;;;;35536:36:0;;;;;:175;;4855:10;;35630:4;;35657:7;;35687:5;;35536:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35536:175:0;;;;;;;;-1:-1:-1;;35536:175:0;;;;;;;;;;;;:::i;:::-;;;35515:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35898:13:0;;35894:389;;35941:108;;-1:-1:-1;;;35941:108:0;;;;;;;:::i;35894:389::-;36233:6;36227:13;36218:6;36214:2;36210:15;36203:38;35515:783;-1:-1:-1;;;;;;35775:55:0;-1:-1:-1;;;35775:55:0;;-1:-1:-1;35768:62:0;;35479:874;-1:-1:-1;36337:4:0;35307:1053;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;522:2;474:124;;;:::o;603:159::-;670:20;;730:6;719:18;;709:29;;699:2;;752:1;749;742:12;767:196;826:6;879:2;867:9;858:7;854:23;850:32;847:2;;;900:6;892;885:22;847:2;928:29;947:9;928:29;:::i;968:270::-;1036:6;1044;1097:2;1085:9;1076:7;1072:23;1068:32;1065:2;;;1118:6;1110;1103:22;1065:2;1146:29;1165:9;1146:29;:::i;:::-;1136:39;;1194:38;1228:2;1217:9;1213:18;1194:38;:::i;:::-;1184:48;;1055:183;;;;;:::o;1243:338::-;1320:6;1328;1336;1389:2;1377:9;1368:7;1364:23;1360:32;1357:2;;;1410:6;1402;1395:22;1357:2;1438:29;1457:9;1438:29;:::i;:::-;1428:39;;1486:38;1520:2;1509:9;1505:18;1486:38;:::i;:::-;1476:48;;1571:2;1560:9;1556:18;1543:32;1533:42;;1347:234;;;;;:::o;1586:696::-;1681:6;1689;1697;1705;1758:3;1746:9;1737:7;1733:23;1729:33;1726:2;;;1780:6;1772;1765:22;1726:2;1808:29;1827:9;1808:29;:::i;:::-;1798:39;;1856:38;1890:2;1879:9;1875:18;1856:38;:::i;:::-;1846:48;;1941:2;1930:9;1926:18;1913:32;1903:42;;1996:2;1985:9;1981:18;1968:32;2023:18;2015:6;2012:30;2009:2;;;2060:6;2052;2045:22;2009:2;2088:22;;2141:4;2133:13;;2129:27;-1:-1:-1;2119:2:1;;2175:6;2167;2160:22;2119:2;2203:73;2268:7;2263:2;2250:16;2245:2;2241;2237:11;2203:73;:::i;:::-;2193:83;;;1716:566;;;;;;;:::o;2287:367::-;2352:6;2360;2413:2;2401:9;2392:7;2388:23;2384:32;2381:2;;;2434:6;2426;2419:22;2381:2;2462:29;2481:9;2462:29;:::i;:::-;2452:39;;2541:2;2530:9;2526:18;2513:32;2588:5;2581:13;2574:21;2567:5;2564:32;2554:2;;2615:6;2607;2600:22;2554:2;2643:5;2633:15;;;2371:283;;;;;:::o;2659:264::-;2727:6;2735;2788:2;2776:9;2767:7;2763:23;2759:32;2756:2;;;2809:6;2801;2794:22;2756:2;2837:29;2856:9;2837:29;:::i;:::-;2827:39;2913:2;2898:18;;;;2885:32;;-1:-1:-1;;;2746:177:1:o;2928:1266::-;3043:6;3074:2;3117;3105:9;3096:7;3092:23;3088:32;3085:2;;;3138:6;3130;3123:22;3085:2;3183:9;3170:23;3212:18;3253:2;3245:6;3242:14;3239:2;;;3274:6;3266;3259:22;3239:2;3317:6;3306:9;3302:22;3292:32;;3362:7;3355:4;3351:2;3347:13;3343:27;3333:2;;3389:6;3381;3374:22;3333:2;3430;3417:16;3452:2;3448;3445:10;3442:2;;;3458:18;;:::i;:::-;3498:36;3530:2;3525;3522:1;3518:10;3514:19;3498:36;:::i;:::-;3568:15;;;3599:12;;;;-1:-1:-1;3631:11:1;;;3673:1;3669:10;;;3661:19;;3657:28;;3654:41;-1:-1:-1;3651:2:1;;;3713:6;3705;3698:22;3651:2;3740:6;3731:15;;3755:409;3769:2;3766:1;3763:9;3755:409;;;3824:4;3867:2;3861:3;3852:7;3848:17;3844:26;3841:2;;;3888:6;3880;3873:22;3841:2;3923:22;;:::i;:::-;3972:23;3991:3;3972:23;:::i;:::-;3958:38;;4045:12;;;4032:26;4016:14;;;4009:50;4072:18;;3787:1;3780:9;;;;;4110:12;;;;4142;3755:409;;;-1:-1:-1;4183:5:1;3054:1140;-1:-1:-1;;;;;;;3054:1140:1:o;4199:255::-;4257:6;4310:2;4298:9;4289:7;4285:23;4281:32;4278:2;;;4331:6;4323;4316:22;4278:2;4375:9;4362:23;4394:30;4418:5;4394:30;:::i;4459:259::-;4528:6;4581:2;4569:9;4560:7;4556:23;4552:32;4549:2;;;4602:6;4594;4587:22;4549:2;4639:9;4633:16;4658:30;4682:5;4658:30;:::i;4723:480::-;4792:6;4845:2;4833:9;4824:7;4820:23;4816:32;4813:2;;;4866:6;4858;4851:22;4813:2;4911:9;4898:23;4944:18;4936:6;4933:30;4930:2;;;4981:6;4973;4966:22;4930:2;5009:22;;5062:4;5054:13;;5050:27;-1:-1:-1;5040:2:1;;5096:6;5088;5081:22;5040:2;5124:73;5189:7;5184:2;5171:16;5166:2;5162;5158:11;5124:73;:::i;5208:266::-;5274:6;5282;5335:2;5323:9;5314:7;5310:23;5306:32;5303:2;;;5356:6;5348;5341:22;5303:2;5384:28;5402:9;5384:28;:::i;:::-;5374:38;;5431:37;5464:2;5453:9;5449:18;5431:37;:::i;5479:190::-;5538:6;5591:2;5579:9;5570:7;5566:23;5562:32;5559:2;;;5612:6;5604;5597:22;5559:2;-1:-1:-1;5640:23:1;;5549:120;-1:-1:-1;5549:120:1:o;5674:257::-;5715:3;5753:5;5747:12;5780:6;5775:3;5768:19;5796:63;5852:6;5845:4;5840:3;5836:14;5829:4;5822:5;5818:16;5796:63;:::i;:::-;5913:2;5892:15;-1:-1:-1;;5888:29:1;5879:39;;;;5920:4;5875:50;;5723:208;-1:-1:-1;;5723:208:1:o;5936:470::-;6115:3;6153:6;6147:13;6169:53;6215:6;6210:3;6203:4;6195:6;6191:17;6169:53;:::i;:::-;6285:13;;6244:16;;;;6307:57;6285:13;6244:16;6341:4;6329:17;;6307:57;:::i;:::-;6380:20;;6123:283;-1:-1:-1;;;;6123:283:1:o;7170:488::-;-1:-1:-1;;;;;7439:15:1;;;7421:34;;7491:15;;7486:2;7471:18;;7464:43;7538:2;7523:18;;7516:34;;;7586:3;7581:2;7566:18;;7559:31;;;7364:4;;7607:45;;7632:19;;7624:6;7607:45;:::i;:::-;7599:53;7373:285;-1:-1:-1;;;;;;7373:285:1:o;7855:219::-;8004:2;7993:9;7986:21;7967:4;8024:44;8064:2;8053:9;8049:18;8041:6;8024:44;:::i;8079:414::-;8281:2;8263:21;;;8320:2;8300:18;;;8293:30;8359:34;8354:2;8339:18;;8332:62;-1:-1:-1;;;8425:2:1;8410:18;;8403:48;8483:3;8468:19;;8253:240::o;11453:408::-;11655:2;11637:21;;;11694:2;11674:18;;;11667:30;11733:34;11728:2;11713:18;;11706:62;-1:-1:-1;;;11799:2:1;11784:18;;11777:42;11851:3;11836:19;;11627:234::o;14993:356::-;15195:2;15177:21;;;15214:18;;;15207:30;15273:34;15268:2;15253:18;;15246:62;15340:2;15325:18;;15167:182::o;16987:413::-;17189:2;17171:21;;;17228:2;17208:18;;;17201:30;17267:34;17262:2;17247:18;;17240:62;-1:-1:-1;;;17333:2:1;17318:18;;17311:47;17390:3;17375:19;;17161:239::o;18372:257::-;18444:4;18438:11;;;18476:17;;18523:18;18508:34;;18544:22;;;18505:62;18502:2;;;18570:18;;:::i;:::-;18606:4;18599:24;18418:211;:::o;18634:275::-;18705:2;18699:9;18770:2;18751:13;;-1:-1:-1;;18747:27:1;18735:40;;18805:18;18790:34;;18826:22;;;18787:62;18784:2;;;18852:18;;:::i;:::-;18888:2;18881:22;18679:230;;-1:-1:-1;18679:230:1:o;18914:253::-;18954:3;-1:-1:-1;;;;;19043:2:1;19040:1;19036:10;19073:2;19070:1;19066:10;19104:3;19100:2;19096:12;19091:3;19088:21;19085:2;;;19112:18;;:::i;19172:128::-;19212:3;19243:1;19239:6;19236:1;19233:13;19230:2;;;19249:18;;:::i;:::-;-1:-1:-1;19285:9:1;;19220:80::o;19305:120::-;19345:1;19371;19361:2;;19376:18;;:::i;:::-;-1:-1:-1;19410:9:1;;19351:74::o;19430:168::-;19470:7;19536:1;19532;19528:6;19524:14;19521:1;19518:21;19513:1;19506:9;19499:17;19495:45;19492:2;;;19543:18;;:::i;:::-;-1:-1:-1;19583:9:1;;19482:116::o;19603:125::-;19643:4;19671:1;19668;19665:8;19662:2;;;19676:18;;:::i;:::-;-1:-1:-1;19713:9:1;;19652:76::o;19733:258::-;19805:1;19815:113;19829:6;19826:1;19823:13;19815:113;;;19905:11;;;19899:18;19886:11;;;19879:39;19851:2;19844:10;19815:113;;;19946:6;19943:1;19940:13;19937:2;;;-1:-1:-1;;19981:1:1;19963:16;;19956:27;19786:205::o;19996:380::-;20075:1;20071:12;;;;20118;;;20139:2;;20193:4;20185:6;20181:17;20171:27;;20139:2;20246;20238:6;20235:14;20215:18;20212:38;20209:2;;;20292:10;20287:3;20283:20;20280:1;20273:31;20327:4;20324:1;20317:15;20355:4;20352:1;20345:15;20209:2;;20051:325;;;:::o;20381:197::-;20419:3;20447:6;20488:2;20481:5;20477:14;20515:2;20506:7;20503:15;20500:2;;;20521:18;;:::i;:::-;20570:1;20557:15;;20427:151;-1:-1:-1;;;20427:151:1:o;20583:135::-;20622:3;-1:-1:-1;;20643:17:1;;20640:2;;;20663:18;;:::i;:::-;-1:-1:-1;20710:1:1;20699:13;;20630:88::o;20723:112::-;20755:1;20781;20771:2;;20786:18;;:::i;:::-;-1:-1:-1;20820:9:1;;20761:74::o;20840:127::-;20901:10;20896:3;20892:20;20889:1;20882:31;20932:4;20929:1;20922:15;20956:4;20953:1;20946:15;20972:127;21033:10;21028:3;21024:20;21021:1;21014:31;21064:4;21061:1;21054:15;21088:4;21085:1;21078:15;21104:127;21165:10;21160:3;21156:20;21153:1;21146:31;21196:4;21193:1;21186:15;21220:4;21217:1;21210:15;21236:131;-1:-1:-1;;;;;;21310:32:1;;21300:43;;21290:2;;21357:1;21354;21347:12

Swarm Source

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