ETH Price: $3,334.52 (-1.77%)
Gas: 42 Gwei

Token

RamsSyndicate (RAM)
 

Overview

Max Total Supply

344 RAM

Holders

118

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RAM
0xb486482123c3b32b4fdeadbbaac0ff2fad0a7489
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The metaverse is currently being built… but its underworld society has already formed a syndicate. Which gang of criminals will gain supremacy? Only you can decide… The Syndicate was created to bring together once competing gangs like the thieves, coiners, rioters, coppers, ...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RamsSyndicate

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-04
*/

// SPDX-License-Identifier: GPL-3.0

/*
 _ __                      __,
( /  )                    (                   /o         _/_
 /--<  __,  _ _ _   (      `.  __  , _ _   __/,  _, __,  /  _
/   \_(_/(_/ / / /_/_)_  (___)/ (_/_/ / /_(_/_(_(__(_/(_(__(/_
                                 /
                                '
*/

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional 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);
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
pragma solidity ^0.8.10;

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
            if( owner == _owners[i] ){
                ++count;
            }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    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);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }
    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");
    }
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    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"
        );
    }
    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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.10;

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

pragma solidity ^0.8.10;

interface IWatcher {
    function watchTransfer(address _from, address _to, uint256 _tokenId) external;
}

contract RamsSyndicate is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;

    //sale settings
    uint256 constant private MAX_SUPPLY = 6000;
    uint256 constant private MAX_PRESALE_MINT = 3;
    uint256 private TEAM_RESERVE_AVAILABLE_MINTS = 50;
    uint256 private COST = 0.04 ether;
    uint256 private MAX_SALE_MINT = 10;
    address public _trustedContract = 0x0000000000000000000000000000000000000000;

    bool public isPresaleActive = false;
    bool public isSaleActive = false;

    //presale settings
    mapping(address => bool) public presaleWhitelist;
    mapping(address => uint256) public presaleWhitelistMints;

    string private baseURI;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721P(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

    // internal
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }

    function _publicSupply() internal view virtual returns (uint256) {
        return MAX_SUPPLY - TEAM_RESERVE_AVAILABLE_MINTS;
    }

    function _transferNotice(address _from, address _to, uint256 _tokenId) internal {
        if (_trustedContract != address(0)) {
            IWatcher(_trustedContract).watchTransfer(_from, _to, _tokenId);
        }
    }

    // external
    function isWhitelisted (address _address) external view returns (bool) {
        return presaleWhitelist[_address];
    }

    function setTrustedContract(address _contractAddress) public onlyOwner {
        _trustedContract = _contractAddress;
    }

    function flipPresaleState() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function mint(uint256 _mintAmount) external payable {
        uint256 totalSupply = totalSupply();
        require(isSaleActive, "Sale is not active");
        require(_mintAmount > 0, "Minted amount should be positive" );
        require(_mintAmount <= MAX_SALE_MINT, "Minted amount exceeds sale limit" );
        require(totalSupply + _mintAmount <= _publicSupply(), "The requested amount exceeds the remaining supply" );
        require(msg.value >= COST * _mintAmount);

        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function mintPresale(uint256 _mintAmount) external payable {
        require(isPresaleActive, "Presale is not active");
        require(presaleWhitelist[msg.sender], "Caller is not whitelisted");

        uint256 totalSupply = totalSupply();
        uint256 availableMints = MAX_PRESALE_MINT - presaleWhitelistMints[msg.sender];

        require(_mintAmount <= availableMints, "Too many mints requested");
        require(totalSupply + _mintAmount <= _publicSupply(), "The requested amount exceeds the remaining supply");
        require(msg.value >= COST * _mintAmount , "Wrong amount provided");

        presaleWhitelistMints[msg.sender] += _mintAmount;

        for(uint256 i = 0; i < _mintAmount; i++){
            _safeMint(msg.sender, totalSupply + i);
        }
    }

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

    function addToWhitelist(address[] calldata _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            require(_addresses[i] != address(0), "Null address is not allowed");
            presaleWhitelist[_addresses[i]] = true;
            presaleWhitelistMints[_addresses[i]] > 0 ? presaleWhitelistMints[_addresses[i]] : 0;
        }
    }

    function setCost(uint256 _newCost) external onlyOwner {
        COST = _newCost;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) external onlyOwner {
        MAX_SALE_MINT = _newMaxMintAmount;
    }

    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }

    // admin minting
    function reserve(address _to, uint256 _reserveAmount) public onlyOwner {
        uint256 supply = totalSupply();
        require(
            _reserveAmount > 0 && _reserveAmount <= TEAM_RESERVE_AVAILABLE_MINTS,
            "Not enough reserve left for team"
        );
        for (uint256 i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        TEAM_RESERVE_AVAILABLE_MINTS -= _reserveAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function transferFrom(address _from, address _to, uint256 _tokenId) public override {
        ERC721P.transferFrom(_from, _to, _tokenId);
        _transferNotice(_from, _to, _tokenId);
    }

    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
        ERC721P.safeTransferFrom(_from, _to, _tokenId, _data);
        _transferNotice(_from, _to, _tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_trustedContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhitelist","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":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserve","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"setTrustedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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"}]

60806040526032600755668e1bc9bf040000600855600a600981905580546001600160b01b03191690553480156200003657600080fd5b5060405162002af538038062002af58339810160408190526200005991620002ff565b825183908390620000729060009060208501906200018c565b508051620000889060019060208401906200018c565b505050620000a56200009f620000be60201b60201c565b620000c2565b6001600655620000b58162000114565b505050620003cd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200018890600d9060208401906200018c565b5050565b8280546200019a9062000390565b90600052602060002090601f016020900481019282620001be576000855562000209565b82601f10620001d957805160ff191683800117855562000209565b8280016001018555821562000209579182015b8281111562000209578251825591602001919060010190620001ec565b50620002179291506200021b565b5090565b5b808211156200021757600081556001016200021c565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025a57600080fd5b81516001600160401b038082111562000277576200027762000232565b604051601f8301601f19908116603f01168101908282118183101715620002a257620002a262000232565b81604052838152602092508683858801011115620002bf57600080fd5b600091505b83821015620002e35785820183015181830184015290820190620002c4565b83821115620002f55760008385830101525b9695505050505050565b6000806000606084860312156200031557600080fd5b83516001600160401b03808211156200032d57600080fd5b6200033b8783880162000248565b945060208601519150808211156200035257600080fd5b620003608783880162000248565b935060408601519150808211156200037757600080fd5b50620003868682870162000248565b9150509250925092565b600181811c90821680620003a557607f821691505b60208210811415620003c757634e487b7160e01b600052602260045260246000fd5b50919050565b61271880620003dd6000396000f3fe60806040526004361061021a5760003560e01c806360d938dc11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610649578063eb8835ab14610692578063f2fde38b146106c2578063f759867a146106e2578063f81227d4146106f557600080fd5b8063a22cb465146105a9578063aaf50292146105c9578063b88d4fde146105e9578063c87b56dd14610609578063cc47a40b1461062957600080fd5b80637f649783116100f25780637f649783146105165780638462151c146105365780638da5cb5b1461056357806395d89b4114610581578063a0712d681461059657600080fd5b806360d938dc146104a05780636352211e146104c157806370a08231146104e1578063715018a61461050157600080fd5b806334918dfd116101a657806344a0d68a1161017557806344a0d68a146103f25780634f6ccce71461041257806355105e9e1461043257806355f804b31461045f578063564566a81461047f57600080fd5b806334918dfd1461036f5780633af32abf146103845780633ccfd60b146103bd57806342842e0e146103d257600080fd5b8063088a4ed0116101ed578063088a4ed0146102ce578063095ea7b3146102f057806318160ddd1461031057806323b872dd1461032f5780632f745c591461034f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc146102765780630856f5ce146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461202b565b61070a565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610735565b60405161024b91906120a0565b34801561028257600080fd5b506102966102913660046120b3565b6107c7565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50600a54610296906001600160a01b031681565b3480156102da57600080fd5b506102ee6102e93660046120b3565b610854565b005b3480156102fc57600080fd5b506102ee61030b3660046120e8565b610883565b34801561031c57600080fd5b506002545b60405190815260200161024b565b34801561033b57600080fd5b506102ee61034a366004612112565b610999565b34801561035b57600080fd5b5061032161036a3660046120e8565b6109af565b34801561037b57600080fd5b506102ee610a5e565b34801561039057600080fd5b5061023f61039f36600461214e565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103c957600080fd5b506102ee610aa9565b3480156103de57600080fd5b506102ee6103ed366004612112565b610af9565b3480156103fe57600080fd5b506102ee61040d3660046120b3565b610b14565b34801561041e57600080fd5b5061032161042d3660046120b3565b610b43565b34801561043e57600080fd5b5061032161044d36600461214e565b600c6020526000908152604090205481565b34801561046b57600080fd5b506102ee61047a3660046121f5565b610ba0565b34801561048b57600080fd5b50600a5461023f90600160a81b900460ff1681565b3480156104ac57600080fd5b50600a5461023f90600160a01b900460ff1681565b3480156104cd57600080fd5b506102966104dc3660046120b3565b610be1565b3480156104ed57600080fd5b506103216104fc36600461214e565b610c6d565b34801561050d57600080fd5b506102ee610d3f565b34801561052257600080fd5b506102ee61053136600461223e565b610d73565b34801561054257600080fd5b5061055661055136600461214e565b610f37565b60405161024b91906122b3565b34801561056f57600080fd5b506005546001600160a01b0316610296565b34801561058d57600080fd5b50610269611001565b6102ee6105a43660046120b3565b611010565b3480156105b557600080fd5b506102ee6105c43660046122f7565b611188565b3480156105d557600080fd5b506102ee6105e436600461214e565b61124d565b3480156105f557600080fd5b506102ee610604366004612333565b611299565b34801561061557600080fd5b506102696106243660046120b3565b6112b6565b34801561063557600080fd5b506102ee6106443660046120e8565b611373565b34801561065557600080fd5b5061023f6106643660046123af565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561069e57600080fd5b5061023f6106ad36600461214e565b600b6020526000908152604090205460ff1681565b3480156106ce57600080fd5b506102ee6106dd36600461214e565b611450565b6102ee6106f03660046120b3565b6114eb565b34801561070157600080fd5b506102ee6116ec565b60006001600160e01b0319821663780e9d6360e01b148061072f575061072f82611737565b92915050565b606060008054610744906123e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906123e2565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611787565b6108385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b0316331461087e5760405162461bcd60e51b815260040161082f9061241d565b600955565b600061088e82610be1565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082f565b336001600160a01b038216148061091857506109188133610664565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082f565b61099483836117d1565b505050565b6109a483838361183f565b610994838383611870565b60006109ba83610c6d565b82106109d85760405162461bcd60e51b815260040161082f90612452565b6000805b600254811015610a4557600281815481106109f9576109f9612482565b6000918252602090912001546001600160a01b0386811691161415610a355783821415610a2957915061072f9050565b610a32826124ae565b91505b610a3e816124ae565b90506109dc565b5060405162461bcd60e51b815260040161082f90612452565b6005546001600160a01b03163314610a885760405162461bcd60e51b815260040161082f9061241d565b600a805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b03163314610ad35760405162461bcd60e51b815260040161082f9061241d565b60405133904780156108fc02916000818181858888f19350505050610af757600080fd5b565b61099483838360405180602001604052806000815250611299565b6005546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161082f9061241d565b600855565b6000610b4e60025490565b8210610b9c5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161082f565b5090565b6005546001600160a01b03163314610bca5760405162461bcd60e51b815260040161082f9061241d565b8051610bdd90600d906020840190611f85565b5050565b60008060028381548110610bf757610bf7612482565b6000918252602090912001546001600160a01b031690508061072f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082f565b60006001600160a01b038216610cd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082f565b600254600090815b81811015610d365760028181548110610cfb57610cfb612482565b6000918252602090912001546001600160a01b0386811691161415610d2657610d23836124ae565b92505b610d2f816124ae565b9050610ce0565b50909392505050565b6005546001600160a01b03163314610d695760405162461bcd60e51b815260040161082f9061241d565b610af760006118f3565b6005546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161082f9061241d565b60005b81811015610994576000838383818110610dbc57610dbc612482565b9050602002016020810190610dd1919061214e565b6001600160a01b03161415610e285760405162461bcd60e51b815260206004820152601b60248201527f4e756c6c2061646472657373206973206e6f7420616c6c6f7765640000000000604482015260640161082f565b6001600b6000858585818110610e4057610e40612482565b9050602002016020810190610e55919061214e565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600c81858585818110610e9557610e95612482565b9050602002016020810190610eaa919061214e565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610ed7576000610f24565b600c6000848484818110610eed57610eed612482565b9050602002016020810190610f02919061214e565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610f2f816124ae565b915050610da0565b6060610f4282610c6d565b600010610f615760405162461bcd60e51b815260040161082f90612452565b6000610f6c83610c6d565b905060008167ffffffffffffffff811115610f8957610f89612169565b604051908082528060200260200182016040528015610fb2578160200160208202803683370190505b50905060005b82811015610ff957610fca85826109af565b828281518110610fdc57610fdc612482565b602090810291909101015280610ff1816124ae565b915050610fb8565b509392505050565b606060018054610744906123e2565b600061101b60025490565b600a54909150600160a81b900460ff1661106c5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161082f565b600082116110bc5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f736974697665604482015260640161082f565b60095482111561110e5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d6974604482015260640161082f565b611116611945565b61112083836124c9565b111561113e5760405162461bcd60e51b815260040161082f906124e1565b8160085461114c9190612532565b34101561115857600080fd5b60005b82811015610994576111763361117183856124c9565b61195c565b80611180816124ae565b91505061115b565b6001600160a01b0382163314156111e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082f565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146112775760405162461bcd60e51b815260040161082f9061241d565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112a584848484611976565b6112b0848484611870565b50505050565b60606112c182611787565b6113175760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161082f565b60006113216119a8565b90506000815111611341576040518060200160405280600081525061136c565b8061134b846119b7565b60405160200161135c929190612551565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461139d5760405162461bcd60e51b815260040161082f9061241d565b60006113a860025490565b90506000821180156113bc57506007548211155b6114085760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082f565b60005b82811015611433576114218461117183856124c9565b8061142b816124ae565b91505061140b565b5081600760008282546114469190612590565b9091555050505050565b6005546001600160a01b0316331461147a5760405162461bcd60e51b815260040161082f9061241d565b6001600160a01b0381166114df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b6114e8816118f3565b50565b600a54600160a01b900460ff1661153c5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161082f565b336000908152600b602052604090205460ff1661159b5760405162461bcd60e51b815260206004820152601960248201527f43616c6c6572206973206e6f742077686974656c697374656400000000000000604482015260640161082f565b60006115a660025490565b336000908152600c6020526040812054919250906115c5906003612590565b9050808311156116175760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79206d696e7473207265717565737465640000000000000000604482015260640161082f565b61161f611945565b61162984846124c9565b11156116475760405162461bcd60e51b815260040161082f906124e1565b826008546116559190612532565b34101561169c5760405162461bcd60e51b815260206004820152601560248201527415dc9bdb99c8185b5bdd5b9d081c1c9bdd9a591959605a1b604482015260640161082f565b336000908152600c6020526040812080548592906116bb9084906124c9565b90915550600090505b838110156112b0576116da3361117183866124c9565b806116e4816124ae565b9150506116c4565b6005546001600160a01b031633146117165760405162461bcd60e51b815260040161082f9061241d565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061176857506001600160e01b03198216635b5e139f60e01b145b8061072f57506301ffc9a760e01b6001600160e01b031983161461072f565b6002546000908210801561072f575060006001600160a01b0316600283815481106117b4576117b4612482565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180682610be1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118493382611abd565b6118655760405162461bcd60e51b815260040161082f906125a7565b610994838383611ba3565b600a546001600160a01b03161561099457600a5460405162a1651960e21b81526001600160a01b03858116600483015284811660248301526044820184905290911690630285946490606401600060405180830381600087803b1580156118d657600080fd5b505af11580156118ea573d6000803e3d6000fd5b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006007546117706119579190612590565b905090565b610bdd828260405180602001604052806000815250611cf9565b6119803383611abd565b61199c5760405162461bcd60e51b815260040161082f906125a7565b6112b084848484611d2c565b6060600d8054610744906123e2565b6060816119db5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0557806119ef816124ae565b91506119fe9050600a8361260e565b91506119df565b60008167ffffffffffffffff811115611a2057611a20612169565b6040519080825280601f01601f191660200182016040528015611a4a576020820181803683370190505b5090505b8415611ab557611a5f600183612590565b9150611a6c600a86612622565b611a779060306124c9565b60f81b818381518110611a8c57611a8c612482565b60200101906001600160f81b031916908160001a905350611aae600a8661260e565b9450611a4e565b949350505050565b6000611ac882611787565b611b295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082f565b6000611b3483610be1565b9050806001600160a01b0316846001600160a01b03161480611b6f5750836001600160a01b0316611b64846107c7565b6001600160a01b0316145b80611ab557506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611ab5565b826001600160a01b0316611bb682610be1565b6001600160a01b031614611c1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082f565b6001600160a01b038216611c805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b611c8b6000826117d1565b8160028281548110611c9f57611c9f612482565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611d038383611d5f565b611d106000848484611e87565b6109945760405162461bcd60e51b815260040161082f90612636565b611d37848484611ba3565b611d4384848484611e87565b6112b05760405162461bcd60e51b815260040161082f90612636565b6001600160a01b038216611db55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082f565b611dbe81611787565b15611e0b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ecb903390899088908890600401612688565b6020604051808303816000875af1925050508015611f06575060408051601f3d908101601f19168201909252611f03918101906126c5565b60015b611f60573d808015611f34576040519150601f19603f3d011682016040523d82523d6000602084013e611f39565b606091505b508051611f585760405162461bcd60e51b815260040161082f90612636565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab5565b506001949350505050565b828054611f91906123e2565b90600052602060002090601f016020900481019282611fb35760008555611ff9565b82601f10611fcc57805160ff1916838001178555611ff9565b82800160010185558215611ff9579182015b82811115611ff9578251825591602001919060010190611fde565b50610b9c9291505b80821115610b9c5760008155600101612001565b6001600160e01b0319811681146114e857600080fd5b60006020828403121561203d57600080fd5b813561136c81612015565b60005b8381101561206357818101518382015260200161204b565b838111156112b05750506000910152565b6000815180845261208c816020860160208601612048565b601f01601f19169290920160200192915050565b60208152600061136c6020830184612074565b6000602082840312156120c557600080fd5b5035919050565b80356001600160a01b03811681146120e357600080fd5b919050565b600080604083850312156120fb57600080fd5b612104836120cc565b946020939093013593505050565b60008060006060848603121561212757600080fd5b612130846120cc565b925061213e602085016120cc565b9150604084013590509250925092565b60006020828403121561216057600080fd5b61136c826120cc565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561219a5761219a612169565b604051601f8501601f19908116603f011681019082821181831017156121c2576121c2612169565b816040528093508581528686860111156121db57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561220757600080fd5b813567ffffffffffffffff81111561221e57600080fd5b8201601f8101841361222f57600080fd5b611ab58482356020840161217f565b6000806020838503121561225157600080fd5b823567ffffffffffffffff8082111561226957600080fd5b818501915085601f83011261227d57600080fd5b81358181111561228c57600080fd5b8660208260051b85010111156122a157600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156122eb578351835292840192918401916001016122cf565b50909695505050505050565b6000806040838503121561230a57600080fd5b612313836120cc565b91506020830135801515811461232857600080fd5b809150509250929050565b6000806000806080858703121561234957600080fd5b612352856120cc565b9350612360602086016120cc565b925060408501359150606085013567ffffffffffffffff81111561238357600080fd5b8501601f8101871361239457600080fd5b6123a38782356020840161217f565b91505092959194509250565b600080604083850312156123c257600080fd5b6123cb836120cc565b91506123d9602084016120cc565b90509250929050565b600181811c908216806123f657607f821691505b6020821081141561241757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124c2576124c2612498565b5060010190565b600082198211156124dc576124dc612498565b500190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b600081600019048311821515161561254c5761254c612498565b500290565b60008351612563818460208801612048565b835190830190612577818360208801612048565b64173539b7b760d91b9101908152600501949350505050565b6000828210156125a2576125a2612498565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261261d5761261d6125f8565b500490565b600082612631576126316125f8565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126bb90830184612074565b9695505050505050565b6000602082840312156126d757600080fd5b815161136c8161201556fea26469706673582212208f53964d8f1b477db8ec85cad9f291d75e15aef112b02442106d8898d6a0661364736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d52616d7353796e64696361746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352414d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d544e664351346169355035417839564538527259646a38615433676d374a5a50725555655665744b4d6563682f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806360d938dc11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610649578063eb8835ab14610692578063f2fde38b146106c2578063f759867a146106e2578063f81227d4146106f557600080fd5b8063a22cb465146105a9578063aaf50292146105c9578063b88d4fde146105e9578063c87b56dd14610609578063cc47a40b1461062957600080fd5b80637f649783116100f25780637f649783146105165780638462151c146105365780638da5cb5b1461056357806395d89b4114610581578063a0712d681461059657600080fd5b806360d938dc146104a05780636352211e146104c157806370a08231146104e1578063715018a61461050157600080fd5b806334918dfd116101a657806344a0d68a1161017557806344a0d68a146103f25780634f6ccce71461041257806355105e9e1461043257806355f804b31461045f578063564566a81461047f57600080fd5b806334918dfd1461036f5780633af32abf146103845780633ccfd60b146103bd57806342842e0e146103d257600080fd5b8063088a4ed0116101ed578063088a4ed0146102ce578063095ea7b3146102f057806318160ddd1461031057806323b872dd1461032f5780632f745c591461034f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc146102765780630856f5ce146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461202b565b61070a565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610735565b60405161024b91906120a0565b34801561028257600080fd5b506102966102913660046120b3565b6107c7565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50600a54610296906001600160a01b031681565b3480156102da57600080fd5b506102ee6102e93660046120b3565b610854565b005b3480156102fc57600080fd5b506102ee61030b3660046120e8565b610883565b34801561031c57600080fd5b506002545b60405190815260200161024b565b34801561033b57600080fd5b506102ee61034a366004612112565b610999565b34801561035b57600080fd5b5061032161036a3660046120e8565b6109af565b34801561037b57600080fd5b506102ee610a5e565b34801561039057600080fd5b5061023f61039f36600461214e565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103c957600080fd5b506102ee610aa9565b3480156103de57600080fd5b506102ee6103ed366004612112565b610af9565b3480156103fe57600080fd5b506102ee61040d3660046120b3565b610b14565b34801561041e57600080fd5b5061032161042d3660046120b3565b610b43565b34801561043e57600080fd5b5061032161044d36600461214e565b600c6020526000908152604090205481565b34801561046b57600080fd5b506102ee61047a3660046121f5565b610ba0565b34801561048b57600080fd5b50600a5461023f90600160a81b900460ff1681565b3480156104ac57600080fd5b50600a5461023f90600160a01b900460ff1681565b3480156104cd57600080fd5b506102966104dc3660046120b3565b610be1565b3480156104ed57600080fd5b506103216104fc36600461214e565b610c6d565b34801561050d57600080fd5b506102ee610d3f565b34801561052257600080fd5b506102ee61053136600461223e565b610d73565b34801561054257600080fd5b5061055661055136600461214e565b610f37565b60405161024b91906122b3565b34801561056f57600080fd5b506005546001600160a01b0316610296565b34801561058d57600080fd5b50610269611001565b6102ee6105a43660046120b3565b611010565b3480156105b557600080fd5b506102ee6105c43660046122f7565b611188565b3480156105d557600080fd5b506102ee6105e436600461214e565b61124d565b3480156105f557600080fd5b506102ee610604366004612333565b611299565b34801561061557600080fd5b506102696106243660046120b3565b6112b6565b34801561063557600080fd5b506102ee6106443660046120e8565b611373565b34801561065557600080fd5b5061023f6106643660046123af565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561069e57600080fd5b5061023f6106ad36600461214e565b600b6020526000908152604090205460ff1681565b3480156106ce57600080fd5b506102ee6106dd36600461214e565b611450565b6102ee6106f03660046120b3565b6114eb565b34801561070157600080fd5b506102ee6116ec565b60006001600160e01b0319821663780e9d6360e01b148061072f575061072f82611737565b92915050565b606060008054610744906123e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906123e2565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611787565b6108385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b0316331461087e5760405162461bcd60e51b815260040161082f9061241d565b600955565b600061088e82610be1565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082f565b336001600160a01b038216148061091857506109188133610664565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082f565b61099483836117d1565b505050565b6109a483838361183f565b610994838383611870565b60006109ba83610c6d565b82106109d85760405162461bcd60e51b815260040161082f90612452565b6000805b600254811015610a4557600281815481106109f9576109f9612482565b6000918252602090912001546001600160a01b0386811691161415610a355783821415610a2957915061072f9050565b610a32826124ae565b91505b610a3e816124ae565b90506109dc565b5060405162461bcd60e51b815260040161082f90612452565b6005546001600160a01b03163314610a885760405162461bcd60e51b815260040161082f9061241d565b600a805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b03163314610ad35760405162461bcd60e51b815260040161082f9061241d565b60405133904780156108fc02916000818181858888f19350505050610af757600080fd5b565b61099483838360405180602001604052806000815250611299565b6005546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161082f9061241d565b600855565b6000610b4e60025490565b8210610b9c5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161082f565b5090565b6005546001600160a01b03163314610bca5760405162461bcd60e51b815260040161082f9061241d565b8051610bdd90600d906020840190611f85565b5050565b60008060028381548110610bf757610bf7612482565b6000918252602090912001546001600160a01b031690508061072f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082f565b60006001600160a01b038216610cd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082f565b600254600090815b81811015610d365760028181548110610cfb57610cfb612482565b6000918252602090912001546001600160a01b0386811691161415610d2657610d23836124ae565b92505b610d2f816124ae565b9050610ce0565b50909392505050565b6005546001600160a01b03163314610d695760405162461bcd60e51b815260040161082f9061241d565b610af760006118f3565b6005546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161082f9061241d565b60005b81811015610994576000838383818110610dbc57610dbc612482565b9050602002016020810190610dd1919061214e565b6001600160a01b03161415610e285760405162461bcd60e51b815260206004820152601b60248201527f4e756c6c2061646472657373206973206e6f7420616c6c6f7765640000000000604482015260640161082f565b6001600b6000858585818110610e4057610e40612482565b9050602002016020810190610e55919061214e565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600c81858585818110610e9557610e95612482565b9050602002016020810190610eaa919061214e565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610ed7576000610f24565b600c6000848484818110610eed57610eed612482565b9050602002016020810190610f02919061214e565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610f2f816124ae565b915050610da0565b6060610f4282610c6d565b600010610f615760405162461bcd60e51b815260040161082f90612452565b6000610f6c83610c6d565b905060008167ffffffffffffffff811115610f8957610f89612169565b604051908082528060200260200182016040528015610fb2578160200160208202803683370190505b50905060005b82811015610ff957610fca85826109af565b828281518110610fdc57610fdc612482565b602090810291909101015280610ff1816124ae565b915050610fb8565b509392505050565b606060018054610744906123e2565b600061101b60025490565b600a54909150600160a81b900460ff1661106c5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161082f565b600082116110bc5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f736974697665604482015260640161082f565b60095482111561110e5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d6974604482015260640161082f565b611116611945565b61112083836124c9565b111561113e5760405162461bcd60e51b815260040161082f906124e1565b8160085461114c9190612532565b34101561115857600080fd5b60005b82811015610994576111763361117183856124c9565b61195c565b80611180816124ae565b91505061115b565b6001600160a01b0382163314156111e15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082f565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146112775760405162461bcd60e51b815260040161082f9061241d565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112a584848484611976565b6112b0848484611870565b50505050565b60606112c182611787565b6113175760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161082f565b60006113216119a8565b90506000815111611341576040518060200160405280600081525061136c565b8061134b846119b7565b60405160200161135c929190612551565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461139d5760405162461bcd60e51b815260040161082f9061241d565b60006113a860025490565b90506000821180156113bc57506007548211155b6114085760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082f565b60005b82811015611433576114218461117183856124c9565b8061142b816124ae565b91505061140b565b5081600760008282546114469190612590565b9091555050505050565b6005546001600160a01b0316331461147a5760405162461bcd60e51b815260040161082f9061241d565b6001600160a01b0381166114df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b6114e8816118f3565b50565b600a54600160a01b900460ff1661153c5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161082f565b336000908152600b602052604090205460ff1661159b5760405162461bcd60e51b815260206004820152601960248201527f43616c6c6572206973206e6f742077686974656c697374656400000000000000604482015260640161082f565b60006115a660025490565b336000908152600c6020526040812054919250906115c5906003612590565b9050808311156116175760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79206d696e7473207265717565737465640000000000000000604482015260640161082f565b61161f611945565b61162984846124c9565b11156116475760405162461bcd60e51b815260040161082f906124e1565b826008546116559190612532565b34101561169c5760405162461bcd60e51b815260206004820152601560248201527415dc9bdb99c8185b5bdd5b9d081c1c9bdd9a591959605a1b604482015260640161082f565b336000908152600c6020526040812080548592906116bb9084906124c9565b90915550600090505b838110156112b0576116da3361117183866124c9565b806116e4816124ae565b9150506116c4565b6005546001600160a01b031633146117165760405162461bcd60e51b815260040161082f9061241d565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061176857506001600160e01b03198216635b5e139f60e01b145b8061072f57506301ffc9a760e01b6001600160e01b031983161461072f565b6002546000908210801561072f575060006001600160a01b0316600283815481106117b4576117b4612482565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180682610be1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118493382611abd565b6118655760405162461bcd60e51b815260040161082f906125a7565b610994838383611ba3565b600a546001600160a01b03161561099457600a5460405162a1651960e21b81526001600160a01b03858116600483015284811660248301526044820184905290911690630285946490606401600060405180830381600087803b1580156118d657600080fd5b505af11580156118ea573d6000803e3d6000fd5b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006007546117706119579190612590565b905090565b610bdd828260405180602001604052806000815250611cf9565b6119803383611abd565b61199c5760405162461bcd60e51b815260040161082f906125a7565b6112b084848484611d2c565b6060600d8054610744906123e2565b6060816119db5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0557806119ef816124ae565b91506119fe9050600a8361260e565b91506119df565b60008167ffffffffffffffff811115611a2057611a20612169565b6040519080825280601f01601f191660200182016040528015611a4a576020820181803683370190505b5090505b8415611ab557611a5f600183612590565b9150611a6c600a86612622565b611a779060306124c9565b60f81b818381518110611a8c57611a8c612482565b60200101906001600160f81b031916908160001a905350611aae600a8661260e565b9450611a4e565b949350505050565b6000611ac882611787565b611b295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082f565b6000611b3483610be1565b9050806001600160a01b0316846001600160a01b03161480611b6f5750836001600160a01b0316611b64846107c7565b6001600160a01b0316145b80611ab557506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611ab5565b826001600160a01b0316611bb682610be1565b6001600160a01b031614611c1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082f565b6001600160a01b038216611c805760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b611c8b6000826117d1565b8160028281548110611c9f57611c9f612482565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611d038383611d5f565b611d106000848484611e87565b6109945760405162461bcd60e51b815260040161082f90612636565b611d37848484611ba3565b611d4384848484611e87565b6112b05760405162461bcd60e51b815260040161082f90612636565b6001600160a01b038216611db55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082f565b611dbe81611787565b15611e0b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ecb903390899088908890600401612688565b6020604051808303816000875af1925050508015611f06575060408051601f3d908101601f19168201909252611f03918101906126c5565b60015b611f60573d808015611f34576040519150601f19603f3d011682016040523d82523d6000602084013e611f39565b606091505b508051611f585760405162461bcd60e51b815260040161082f90612636565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab5565b506001949350505050565b828054611f91906123e2565b90600052602060002090601f016020900481019282611fb35760008555611ff9565b82601f10611fcc57805160ff1916838001178555611ff9565b82800160010185558215611ff9579182015b82811115611ff9578251825591602001919060010190611fde565b50610b9c9291505b80821115610b9c5760008155600101612001565b6001600160e01b0319811681146114e857600080fd5b60006020828403121561203d57600080fd5b813561136c81612015565b60005b8381101561206357818101518382015260200161204b565b838111156112b05750506000910152565b6000815180845261208c816020860160208601612048565b601f01601f19169290920160200192915050565b60208152600061136c6020830184612074565b6000602082840312156120c557600080fd5b5035919050565b80356001600160a01b03811681146120e357600080fd5b919050565b600080604083850312156120fb57600080fd5b612104836120cc565b946020939093013593505050565b60008060006060848603121561212757600080fd5b612130846120cc565b925061213e602085016120cc565b9150604084013590509250925092565b60006020828403121561216057600080fd5b61136c826120cc565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561219a5761219a612169565b604051601f8501601f19908116603f011681019082821181831017156121c2576121c2612169565b816040528093508581528686860111156121db57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561220757600080fd5b813567ffffffffffffffff81111561221e57600080fd5b8201601f8101841361222f57600080fd5b611ab58482356020840161217f565b6000806020838503121561225157600080fd5b823567ffffffffffffffff8082111561226957600080fd5b818501915085601f83011261227d57600080fd5b81358181111561228c57600080fd5b8660208260051b85010111156122a157600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156122eb578351835292840192918401916001016122cf565b50909695505050505050565b6000806040838503121561230a57600080fd5b612313836120cc565b91506020830135801515811461232857600080fd5b809150509250929050565b6000806000806080858703121561234957600080fd5b612352856120cc565b9350612360602086016120cc565b925060408501359150606085013567ffffffffffffffff81111561238357600080fd5b8501601f8101871361239457600080fd5b6123a38782356020840161217f565b91505092959194509250565b600080604083850312156123c257600080fd5b6123cb836120cc565b91506123d9602084016120cc565b90509250929050565b600181811c908216806123f657607f821691505b6020821081141561241757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124c2576124c2612498565b5060010190565b600082198211156124dc576124dc612498565b500190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b600081600019048311821515161561254c5761254c612498565b500290565b60008351612563818460208801612048565b835190830190612577818360208801612048565b64173539b7b760d91b9101908152600501949350505050565b6000828210156125a2576125a2612498565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261261d5761261d6125f8565b500490565b600082612631576126316125f8565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126bb90830184612074565b9695505050505050565b6000602082840312156126d757600080fd5b815161136c8161201556fea26469706673582212208f53964d8f1b477db8ec85cad9f291d75e15aef112b02442106d8898d6a0661364736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d52616d7353796e64696361746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352414d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d544e664351346169355035417839564538527259646a38615433676d374a5a50725555655665744b4d6563682f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RamsSyndicate
Arg [1] : _symbol (string): RAM
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmTNfCQ4ai5P5Ax9VE8RrYdj8aT3gm7JZPrUUeVetKMech/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 52616d7353796e64696361746500000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 52414d0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d544e66435134616935
Arg [9] : 5035417839564538527259646a38615433676d374a5a50725555655665744b4d
Arg [10] : 6563682f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

33839:5418:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32222:225;;;;;;;;;;-1:-1:-1;32222:225:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;32222:225:0;;;;;;;;26313:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26947:221::-;;;;;;;;;;-1:-1:-1;26947:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;26947:221:0;1528:203:1;34202:76:0;;;;;;;;;;-1:-1:-1;34202:76:0;;;;-1:-1:-1;;;;;34202:76:0;;;37744:124;;;;;;;;;;-1:-1:-1;37744:124:0;;;;;:::i;:::-;;:::i;:::-;;26529:412;;;;;;;;;;-1:-1:-1;26529:412:0;;;;;:::i;:::-;;:::i;33383:110::-;;;;;;;;;;-1:-1:-1;33471:7:0;:14;33383:110;;;2319:25:1;;;2307:2;2292:18;33383:110:0;2173:177:1;38825:193:0;;;;;;;;;;-1:-1:-1;38825:193:0;;;;;:::i;:::-;;:::i;32453:500::-;;;;;;;;;;-1:-1:-1;32453:500:0;;;;;:::i;:::-;;:::i;35622:91::-;;;;;;;;;;;;;:::i;35250:123::-;;;;;;;;;;-1:-1:-1;35250:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;35339:26:0;35315:4;35339:26;;;:16;:26;;;;;;;;;35250:123;37133:114;;;;;;;;;;;;;:::i;27990:185::-;;;;;;;;;;-1:-1:-1;27990:185:0;;;;;:::i;:::-;;:::i;37648:88::-;;;;;;;;;;-1:-1:-1;37648:88:0;;;;;:::i;:::-;;:::i;33499:194::-;;;;;;;;;;-1:-1:-1;33499:194:0;;;;;:::i;:::-;;:::i;34449:56::-;;;;;;;;;;-1:-1:-1;34449:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;38713:104;;;;;;;;;;-1:-1:-1;38713:104:0;;;;;:::i;:::-;;:::i;34329:32::-;;;;;;;;;;-1:-1:-1;34329:32:0;;;;-1:-1:-1;;;34329:32:0;;;;;;34287:35;;;;;;;;;;-1:-1:-1;34287:35:0;;;;-1:-1:-1;;;34287:35:0;;;;;;26068:239;;;;;;;;;;-1:-1:-1;26068:239:0;;;;;:::i;:::-;;:::i;25640:422::-;;;;;;;;;;-1:-1:-1;25640:422:0;;;;;:::i;:::-;;:::i;2710:94::-;;;;;;;;;;;;;:::i;37255:385::-;;;;;;;;;;-1:-1:-1;37255:385:0;;;;;:::i;:::-;;:::i;32959:418::-;;;;;;;;;;-1:-1:-1;32959:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2059:87::-;;;;;;;;;;-1:-1:-1;2132:6:0;;-1:-1:-1;;;;;2132:6:0;2059:87;;26419:104;;;;;;;;;;;;;:::i;35721:605::-;;;;;;:::i;:::-;;:::i;27174:295::-;;;;;;;;;;-1:-1:-1;27174:295:0;;;;;:::i;:::-;;:::i;35381:125::-;;;;;;;;;;-1:-1:-1;35381:125:0;;;;;:::i;:::-;;:::i;39026:228::-;;;;;;;;;;-1:-1:-1;39026:228:0;;;;;:::i;:::-;;:::i;37876:353::-;;;;;;;;;;-1:-1:-1;37876:353:0;;;;;:::i;:::-;;:::i;38259:446::-;;;;;;;;;;-1:-1:-1;38259:446:0;;;;;:::i;:::-;;:::i;27475:164::-;;;;;;;;;;-1:-1:-1;27475:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27596:25:0;;;27572:4;27596:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27475:164;34394:48;;;;;;;;;;-1:-1:-1;34394:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;2959:192;;;;;;;;;;-1:-1:-1;2959:192:0;;;;;:::i;:::-;;:::i;36334:791::-;;;;;;:::i;:::-;;:::i;35514:100::-;;;;;;;;;;;;;:::i;32222:225::-;32325:4;-1:-1:-1;;;;;;32349:50:0;;-1:-1:-1;;;32349:50:0;;:90;;;32403:36;32427:11;32403:23;:36::i;:::-;32342:97;32222:225;-1:-1:-1;;32222:225:0:o;26313:100::-;26367:13;26400:5;26393:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26313:100;:::o;26947:221::-;27023:7;27051:16;27059:7;27051;:16::i;:::-;27043:73;;;;-1:-1:-1;;;27043:73:0;;7237:2:1;27043:73:0;;;7219:21:1;7276:2;7256:18;;;7249:30;7315:34;7295:18;;;7288:62;-1:-1:-1;;;7366:18:1;;;7359:42;7418:19;;27043:73:0;;;;;;;;;-1:-1:-1;27136:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27136:24:0;;26947:221::o;37744:124::-;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;37827:13:::1;:33:::0;37744:124::o;26529:412::-;26610:13;26626:24;26642:7;26626:15;:24::i;:::-;26610:40;;26675:5;-1:-1:-1;;;;;26669:11:0;:2;-1:-1:-1;;;;;26669:11:0;;;26661:57;;;;-1:-1:-1;;;26661:57:0;;8011:2:1;26661:57:0;;;7993:21:1;8050:2;8030:18;;;8023:30;8089:34;8069:18;;;8062:62;-1:-1:-1;;;8140:18:1;;;8133:31;8181:19;;26661:57:0;7809:397:1;26661:57:0;988:10;-1:-1:-1;;;;;26753:21:0;;;;:62;;-1:-1:-1;26778:37:0;26795:5;988:10;27475:164;:::i;26778:37::-;26731:168;;;;-1:-1:-1;;;26731:168:0;;8413:2:1;26731:168:0;;;8395:21:1;8452:2;8432:18;;;8425:30;8491:34;8471:18;;;8464:62;8562:26;8542:18;;;8535:54;8606:19;;26731:168:0;8211:420:1;26731:168:0;26912:21;26921:2;26925:7;26912:8;:21::i;:::-;26599:342;26529:412;;:::o;38825:193::-;38920:42;38941:5;38948:3;38953:8;38920:20;:42::i;:::-;38973:37;38989:5;38996:3;39001:8;38973:15;:37::i;32453:500::-;32542:15;32586:24;32604:5;32586:17;:24::i;:::-;32578:5;:32;32570:67;;;;-1:-1:-1;;;32570:67:0;;;;;;;:::i;:::-;32648:10;32674:6;32669:226;32686:7;:14;32682:18;;32669:226;;;32735:7;32743:1;32735:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32726:19:0;;;32735:10;;32726:19;32722:162;;;32779:5;32770;:14;32766:102;;;32815:1;-1:-1:-1;32808:8:0;;-1:-1:-1;32808:8:0;32766:102;32861:7;;;:::i;:::-;;;32766:102;32702:3;;;:::i;:::-;;;32669:226;;;-1:-1:-1;32905:40:0;;-1:-1:-1;;;32905:40:0;;;;;;;:::i;35622:91::-;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;35693:12:::1;::::0;;-1:-1:-1;;;;35677:28:0;::::1;-1:-1:-1::0;;;35693:12:0;;;::::1;;;35692:13;35677:28:::0;;::::1;;::::0;;35622:91::o;37133:114::-;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;37191:47:::1;::::0;37199:10:::1;::::0;37216:21:::1;37191:47:::0;::::1;;;::::0;::::1;::::0;;;37216:21;37199:10;37191:47;::::1;;;;;;37183:56;;;::::0;::::1;;37133:114::o:0;27990:185::-;28128:39;28145:4;28151:2;28155:7;28128:39;;;;;;;;;;;;:16;:39::i;37648:88::-;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;37713:4:::1;:15:::0;37648:88::o;33499:194::-;33574:7;33610:24;33471:7;:14;;33383:110;33610:24;33602:5;:32;33594:68;;;;-1:-1:-1;;;33594:68:0;;9593:2:1;33594:68:0;;;9575:21:1;9632:2;9612:18;;;9605:30;9671:25;9651:18;;;9644:53;9714:18;;33594:68:0;9391:347:1;33594:68:0;-1:-1:-1;33680:5:0;33499:194::o;38713:104::-;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;38788:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38713:104:::0;:::o;26068:239::-;26140:7;26160:13;26176:7;26184;26176:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26176:16:0;;-1:-1:-1;26211:19:0;26203:73;;;;-1:-1:-1;;;26203:73:0;;9945:2:1;26203:73:0;;;9927:21:1;9984:2;9964:18;;;9957:30;10023:34;10003:18;;;9996:62;-1:-1:-1;;;10074:18:1;;;10067:39;10123:19;;26203:73:0;9743:405:1;25640:422:0;25712:7;-1:-1:-1;;;;;25740:19:0;;25732:74;;;;-1:-1:-1;;;25732:74:0;;10355:2:1;25732:74:0;;;10337:21:1;10394:2;10374:18;;;10367:30;10433:34;10413:18;;;10406:62;-1:-1:-1;;;10484:18:1;;;10477:40;10534:19;;25732:74:0;10153:406:1;25732:74:0;25856:7;:14;25817:10;;;25881:127;25902:6;25898:1;:10;25881:127;;;25943:7;25951:1;25943:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;25934:19:0;;;25943:10;;25934:19;25930:67;;;25974:7;;;:::i;:::-;;;25930:67;25910:3;;;:::i;:::-;;;25881:127;;;-1:-1:-1;26049:5:0;;25640:422;-1:-1:-1;;;25640:422:0:o;2710:94::-;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;2775:21:::1;2793:1;2775:9;:21::i;37255:385::-:0;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;37345:9:::1;37340:293;37360:21:::0;;::::1;37340:293;;;37436:1;37411:10:::0;;37422:1;37411:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37411:27:0::1;;;37403:67;;;::::0;-1:-1:-1;;;37403:67:0;;10766:2:1;37403:67:0::1;::::0;::::1;10748:21:1::0;10805:2;10785:18;;;10778:30;10844:29;10824:18;;;10817:57;10891:18;;37403:67:0::1;10564:351:1::0;37403:67:0::1;37519:4;37485:16;:31;37502:10;;37513:1;37502:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37485:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;37485:31:0;;;:38;;-1:-1:-1;;37485:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;37538:21:::1;-1:-1:-1::0;37560:10:0;;37571:1;37560:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37538:36:0::1;-1:-1:-1::0;;;;;37538:36:0::1;;;;;;;;;;;;;:40;:83;;37620:1;37538:83;;;37581:21;:36;37603:10;;37614:1;37603:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;37581:36:0::1;-1:-1:-1::0;;;;;37581:36:0::1;;;;;;;;;;;;;37538:83;-1:-1:-1::0;37383:3:0;::::1;::::0;::::1;:::i;:::-;;;;37340:293;;32959:418:::0;33018:16;33059:24;33077:5;33059:17;:24::i;:::-;33055:1;:28;33047:63;;;;-1:-1:-1;;;33047:63:0;;;;;;;:::i;:::-;33121:18;33142:16;33152:5;33142:9;:16::i;:::-;33121:37;;33169:25;33211:10;33197:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33197:25:0;;33169:53;;33238:9;33233:111;33257:10;33253:1;:14;33233:111;;;33303:29;33323:5;33330:1;33303:19;:29::i;:::-;33289:8;33298:1;33289:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;33269:3;;;;:::i;:::-;;;;33233:111;;;-1:-1:-1;33361:8:0;32959:418;-1:-1:-1;;;32959:418:0:o;26419:104::-;26475:13;26508:7;26501:14;;;;;:::i;35721:605::-;35784:19;35806:13;33471:7;:14;;33383:110;35806:13;35838:12;;35784:35;;-1:-1:-1;;;;35838:12:0;;;;35830:43;;;;-1:-1:-1;;;35830:43:0;;11122:2:1;35830:43:0;;;11104:21:1;11161:2;11141:18;;;11134:30;-1:-1:-1;;;11180:18:1;;;11173:48;11238:18;;35830:43:0;10920:342:1;35830:43:0;35906:1;35892:11;:15;35884:61;;;;-1:-1:-1;;;35884:61:0;;11469:2:1;35884:61:0;;;11451:21:1;;;11488:18;;;11481:30;11547:34;11527:18;;;11520:62;11599:18;;35884:61:0;11267:356:1;35884:61:0;35979:13;;35964:11;:28;;35956:74;;;;-1:-1:-1;;;35956:74:0;;11830:2:1;35956:74:0;;;11812:21:1;;;11849:18;;;11842:30;11908:34;11888:18;;;11881:62;11960:18;;35956:74:0;11628:356:1;35956:74:0;36078:15;:13;:15::i;:::-;36049:25;36063:11;36049;:25;:::i;:::-;:44;;36041:107;;;;-1:-1:-1;;;36041:107:0;;;;;;;:::i;:::-;36187:11;36180:4;;:18;;;;:::i;:::-;36167:9;:31;;36159:40;;;;;;36217:9;36212:107;36236:11;36232:1;:15;36212:107;;;36269:38;36279:10;36291:15;36305:1;36291:11;:15;:::i;:::-;36269:9;:38::i;:::-;36249:3;;;;:::i;:::-;;;;36212:107;;27174:295;-1:-1:-1;;;;;27277:24:0;;988:10;27277:24;;27269:62;;;;-1:-1:-1;;;27269:62:0;;12915:2:1;27269:62:0;;;12897:21:1;12954:2;12934:18;;;12927:30;12993:27;12973:18;;;12966:55;13038:18;;27269:62:0;12713:349:1;27269:62:0;988:10;27344:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27344:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27344:53:0;;;;;;;;;;27413:48;;540:41:1;;;27344:42:0;;988:10;27413:48;;513:18:1;27413:48:0;;;;;;;27174:295;;:::o;35381:125::-;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;35463:16:::1;:35:::0;;-1:-1:-1;;;;;;35463:35:0::1;-1:-1:-1::0;;;;;35463:35:0;;;::::1;::::0;;;::::1;::::0;;35381:125::o;39026:228::-;39145:53;39170:5;39177:3;39182:8;39192:5;39145:24;:53::i;:::-;39209:37;39225:5;39232:3;39237:8;39209:15;:37::i;:::-;39026:228;;;;:::o;37876:353::-;37952:13;37986:17;37994:8;37986:7;:17::i;:::-;37978:63;;;;-1:-1:-1;;;37978:63:0;;13269:2:1;37978:63:0;;;13251:21:1;13308:2;13288:18;;;13281:30;13347:34;13327:18;;;13320:62;-1:-1:-1;;;13398:18:1;;;13391:31;13439:19;;37978:63:0;13067:397:1;37978:63:0;38052:28;38083:10;:8;:10::i;:::-;38052:41;;38142:1;38117:14;38111:28;:32;:110;;;;;;;;;;;;;;;;;38170:14;38186:19;:8;:17;:19::i;:::-;38153:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38111:110;38104:117;37876:353;-1:-1:-1;;;37876:353:0:o;38259:446::-;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;38341:14:::1;38358:13;33471:7:::0;:14;;33383:110;38358:13:::1;38341:30;;38421:1;38404:14;:18;:68;;;;;38444:28;;38426:14;:46;;38404:68;38382:150;;;::::0;-1:-1:-1;;;38382:150:0;;14313:2:1;38382:150:0::1;::::0;::::1;14295:21:1::0;;;14332:18;;;14325:30;14391:34;14371:18;;;14364:62;14443:18;;38382:150:0::1;14111:356:1::0;38382:150:0::1;38548:9;38543:98;38567:14;38563:1;:18;38543:98;;;38603:26;38613:3:::0;38618:10:::1;38627:1:::0;38618:6;:10:::1;:::i;38603:26::-;38583:3:::0;::::1;::::0;::::1;:::i;:::-;;;;38543:98;;;;38683:14;38651:28;;:46;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;38259:446:0:o;2959:192::-;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3048:22:0;::::1;3040:73;;;::::0;-1:-1:-1;;;3040:73:0;;14804:2:1;3040:73:0::1;::::0;::::1;14786:21:1::0;14843:2;14823:18;;;14816:30;14882:34;14862:18;;;14855:62;-1:-1:-1;;;14933:18:1;;;14926:36;14979:19;;3040:73:0::1;14602:402:1::0;3040:73:0::1;3124:19;3134:8;3124:9;:19::i;:::-;2959:192:::0;:::o;36334:791::-;36412:15;;-1:-1:-1;;;36412:15:0;;;;36404:49;;;;-1:-1:-1;;;36404:49:0;;15211:2:1;36404:49:0;;;15193:21:1;15250:2;15230:18;;;15223:30;-1:-1:-1;;;15269:18:1;;;15262:51;15330:18;;36404:49:0;15009:345:1;36404:49:0;36489:10;36472:28;;;;:16;:28;;;;;;;;36464:66;;;;-1:-1:-1;;;36464:66:0;;15561:2:1;36464:66:0;;;15543:21:1;15600:2;15580:18;;;15573:30;15639:27;15619:18;;;15612:55;15684:18;;36464:66:0;15359:349:1;36464:66:0;36543:19;36565:13;33471:7;:14;;33383:110;36565:13;36655:10;36589:22;36633:33;;;:21;:33;;;;;;36543:35;;-1:-1:-1;36589:22:0;36614:52;;34057:1;36614:52;:::i;:::-;36589:77;;36702:14;36687:11;:29;;36679:66;;;;-1:-1:-1;;;36679:66:0;;15915:2:1;36679:66:0;;;15897:21:1;15954:2;15934:18;;;15927:30;15993:26;15973:18;;;15966:54;16037:18;;36679:66:0;15713:348:1;36679:66:0;36793:15;:13;:15::i;:::-;36764:25;36778:11;36764;:25;:::i;:::-;:44;;36756:106;;;;-1:-1:-1;;;36756:106:0;;;;;;;:::i;:::-;36901:11;36894:4;;:18;;;;:::i;:::-;36881:9;:31;;36873:66;;;;-1:-1:-1;;;36873:66:0;;16268:2:1;36873:66:0;;;16250:21:1;16307:2;16287:18;;;16280:30;-1:-1:-1;;;16326:18:1;;;16319:51;16387:18;;36873:66:0;16066:345:1;36873:66:0;36974:10;36952:33;;;;:21;:33;;;;;:48;;36989:11;;36952:33;:48;;36989:11;;36952:48;:::i;:::-;;;;-1:-1:-1;37017:9:0;;-1:-1:-1;37013:105:0;37036:11;37032:1;:15;37013:105;;;37068:38;37078:10;37090:15;37104:1;37090:11;:15;:::i;37068:38::-;37049:3;;;;:::i;:::-;;;;37013:105;;35514:100;2132:6;;-1:-1:-1;;;;;2132:6:0;988:10;2279:23;2271:68;;;;-1:-1:-1;;;2271:68:0;;;;;;;:::i;:::-;35591:15:::1;::::0;;-1:-1:-1;;;;35572:34:0;::::1;-1:-1:-1::0;;;35591:15:0;;;::::1;;;35590:16;35572:34:::0;;::::1;;::::0;;35514:100::o;25341:293::-;25443:4;-1:-1:-1;;;;;;25476:40:0;;-1:-1:-1;;;25476:40:0;;:101;;-1:-1:-1;;;;;;;25529:48:0;;-1:-1:-1;;;25529:48:0;25476:101;:150;;;-1:-1:-1;;;;;;;;;;24803:40:0;;;25590:36;24694:157;28836:155;28935:7;:14;28901:4;;28925:24;;:58;;;;;28981:1;-1:-1:-1;;;;;28953:30:0;:7;28961;28953:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28953:16:0;:30;;28918:65;28836:155;-1:-1:-1;;28836:155:0:o;31009:175::-;31084:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31084:29:0;-1:-1:-1;;;;;31084:29:0;;;;;;;;:24;;31138;31084;31138:15;:24::i;:::-;-1:-1:-1;;;;;31129:47:0;;;;;;;;;;;31009:175;;:::o;27645:339::-;27840:41;988:10;27873:7;27840:18;:41::i;:::-;27832:103;;;;-1:-1:-1;;;27832:103:0;;;;;;;:::i;:::-;27948:28;27958:4;27964:2;27968:7;27948:9;:28::i;35002:223::-;35097:16;;-1:-1:-1;;;;;35097:16:0;:30;35093:125;;35153:16;;35144:62;;-1:-1:-1;;;35144:62:0;;-1:-1:-1;;;;;17092:15:1;;;35144:62:0;;;17074:34:1;17144:15;;;17124:18;;;17117:43;17176:18;;;17169:34;;;35153:16:0;;;;35144:40;;17009:18:1;;35144:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35002:223;;;:::o;3159:173::-;3234:6;;;-1:-1:-1;;;;;3251:17:0;;;-1:-1:-1;;;;;;3251:17:0;;;;;;;3284:40;;3234:6;;;3251:17;3234:6;;3284:40;;3215:16;;3284:40;3204:128;3159:173;:::o;34862:132::-;34918:7;34958:28;;34002:4;34945:41;;;;:::i;:::-;34938:48;;34862:132;:::o;29352:110::-;29428:26;29438:2;29442:7;29428:26;;;;;;;;;;;;:9;:26::i;28181:328::-;28356:41;988:10;28389:7;28356:18;:41::i;:::-;28348:103;;;;-1:-1:-1;;;28348:103:0;;;;;;;:::i;:::-;28462:39;28476:4;28482:2;28486:7;28495:5;28462:13;:39::i;34755:99::-;34806:13;34839:7;34832:14;;;;;:::i;3592:723::-;3648:13;3869:10;3865:53;;-1:-1:-1;;3896:10:0;;;;;;;;;;;;-1:-1:-1;;;3896:10:0;;;;;3592:723::o;3865:53::-;3943:5;3928:12;3984:78;3991:9;;3984:78;;4017:8;;;;:::i;:::-;;-1:-1:-1;4040:10:0;;-1:-1:-1;4048:2:0;4040:10;;:::i;:::-;;;3984:78;;;4072:19;4104:6;4094:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4094:17:0;;4072:39;;4122:154;4129:10;;4122:154;;4156:11;4166:1;4156:11;;:::i;:::-;;-1:-1:-1;4225:10:0;4233:2;4225:5;:10;:::i;:::-;4212:24;;:2;:24;:::i;:::-;4199:39;;4182:6;4189;4182:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4182:56:0;;;;;;;;-1:-1:-1;4253:11:0;4262:2;4253:11;;:::i;:::-;;;4122:154;;;4300:6;3592:723;-1:-1:-1;;;;3592:723:0:o;28997:349::-;29090:4;29115:16;29123:7;29115;:16::i;:::-;29107:73;;;;-1:-1:-1;;;29107:73:0;;17790:2:1;29107:73:0;;;17772:21:1;17829:2;17809:18;;;17802:30;17868:34;17848:18;;;17841:62;-1:-1:-1;;;17919:18:1;;;17912:42;17971:19;;29107:73:0;17588:408:1;29107:73:0;29191:13;29207:24;29223:7;29207:15;:24::i;:::-;29191:40;;29261:5;-1:-1:-1;;;;;29250:16:0;:7;-1:-1:-1;;;;;29250:16:0;;:51;;;;29294:7;-1:-1:-1;;;;;29270:31:0;:20;29282:7;29270:11;:20::i;:::-;-1:-1:-1;;;;;29270:31:0;;29250:51;:87;;;-1:-1:-1;;;;;;27596:25:0;;;27572:4;27596:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29305:32;27475:164;30486:517;30646:4;-1:-1:-1;;;;;30618:32:0;:24;30634:7;30618:15;:24::i;:::-;-1:-1:-1;;;;;30618:32:0;;30610:86;;;;-1:-1:-1;;;30610:86:0;;18203:2:1;30610:86:0;;;18185:21:1;18242:2;18222:18;;;18215:30;18281:34;18261:18;;;18254:62;-1:-1:-1;;;18332:18:1;;;18325:39;18381:19;;30610:86:0;18001:405:1;30610:86:0;-1:-1:-1;;;;;30715:16:0;;30707:65;;;;-1:-1:-1;;;30707:65:0;;18613:2:1;30707:65:0;;;18595:21:1;18652:2;18632:18;;;18625:30;18691:34;18671:18;;;18664:62;-1:-1:-1;;;18742:18:1;;;18735:34;18786:19;;30707:65:0;18411:400:1;30707:65:0;30889:29;30906:1;30910:7;30889:8;:29::i;:::-;30948:2;30929:7;30937;30929:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;30929:21:0;-1:-1:-1;;;;;30929:21:0;;;;;;30968:27;;30987:7;;30968:27;;;;;;;;;;30929:16;30968:27;30486:517;;;:::o;29468:321::-;29598:18;29604:2;29608:7;29598:5;:18::i;:::-;29649:54;29680:1;29684:2;29688:7;29697:5;29649:22;:54::i;:::-;29627:154;;;;-1:-1:-1;;;29627:154:0;;;;;;;:::i;28515:315::-;28672:28;28682:4;28688:2;28692:7;28672:9;:28::i;:::-;28719:48;28742:4;28748:2;28752:7;28761:5;28719:22;:48::i;:::-;28711:111;;;;-1:-1:-1;;;28711:111:0;;;;;;;:::i;29795:346::-;-1:-1:-1;;;;;29875:16:0;;29867:61;;;;-1:-1:-1;;;29867:61:0;;19437:2:1;29867:61:0;;;19419:21:1;;;19456:18;;;19449:30;19515:34;19495:18;;;19488:62;19567:18;;29867:61:0;19235:356:1;29867:61:0;29948:16;29956:7;29948;:16::i;:::-;29947:17;29939:58;;;;-1:-1:-1;;;29939:58:0;;19798:2:1;29939:58:0;;;19780:21:1;19837:2;19817:18;;;19810:30;19876;19856:18;;;19849:58;19924:18;;29939:58:0;19596:352:1;29939:58:0;30066:7;:16;;;;;;;-1:-1:-1;30066:16:0;;;;;;;-1:-1:-1;;;;;;30066:16:0;-1:-1:-1;;;;;30066:16:0;;;;;;;;30100:33;;30125:7;;-1:-1:-1;30100:33:0;;-1:-1:-1;;30100:33:0;29795:346;;:::o;31190:799::-;31345:4;-1:-1:-1;;;;;31366:13:0;;16959:20;17007:8;31362:620;;31402:72;;-1:-1:-1;;;31402:72:0;;-1:-1:-1;;;;;31402:36:0;;;;;:72;;988:10;;31453:4;;31459:7;;31468:5;;31402:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31402:72:0;;;;;;;;-1:-1:-1;;31402:72:0;;;;;;;;;;;;:::i;:::-;;;31398:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31644:13:0;;31640:272;;31687:60;;-1:-1:-1;;;31687:60:0;;;;;;;:::i;31640:272::-;31862:6;31856:13;31847:6;31843:2;31839:15;31832:38;31398:529;-1:-1:-1;;;;;;31525:51:0;-1:-1:-1;;;31525:51:0;;-1:-1:-1;31518:58:0;;31362:620;-1:-1:-1;31966:4:0;31190:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:615::-;4190:6;4198;4251:2;4239:9;4230:7;4226:23;4222:32;4219:52;;;4267:1;4264;4257:12;4219:52;4307:9;4294:23;4336:18;4377:2;4369:6;4366:14;4363:34;;;4393:1;4390;4383:12;4363:34;4431:6;4420:9;4416:22;4406:32;;4476:7;4469:4;4465:2;4461:13;4457:27;4447:55;;4498:1;4495;4488:12;4447:55;4538:2;4525:16;4564:2;4556:6;4553:14;4550:34;;;4580:1;4577;4570:12;4550:34;4633:7;4628:2;4618:6;4615:1;4611:14;4607:2;4603:23;4599:32;4596:45;4593:65;;;4654:1;4651;4644:12;4593:65;4685:2;4677:11;;;;;4707:6;;-1:-1:-1;4104:615:1;;-1:-1:-1;;;;4104:615:1:o;4724:632::-;4895:2;4947:21;;;5017:13;;4920:18;;;5039:22;;;4866:4;;4895:2;5118:15;;;;5092:2;5077:18;;;4866:4;5161:169;5175:6;5172:1;5169:13;5161:169;;;5236:13;;5224:26;;5305:15;;;;5270:12;;;;5197:1;5190:9;5161:169;;;-1:-1:-1;5347:3:1;;4724:632;-1:-1:-1;;;;;;4724:632:1:o;5361:347::-;5426:6;5434;5487:2;5475:9;5466:7;5462:23;5458:32;5455:52;;;5503:1;5500;5493:12;5455:52;5526:29;5545:9;5526:29;:::i;:::-;5516:39;;5605:2;5594:9;5590:18;5577:32;5652:5;5645:13;5638:21;5631:5;5628:32;5618:60;;5674:1;5671;5664:12;5618:60;5697:5;5687:15;;;5361:347;;;;;:::o;5713:667::-;5808:6;5816;5824;5832;5885:3;5873:9;5864:7;5860:23;5856:33;5853:53;;;5902:1;5899;5892:12;5853:53;5925:29;5944:9;5925:29;:::i;:::-;5915:39;;5973:38;6007:2;5996:9;5992:18;5973:38;:::i;:::-;5963:48;;6058:2;6047:9;6043:18;6030:32;6020:42;;6113:2;6102:9;6098:18;6085:32;6140:18;6132:6;6129:30;6126:50;;;6172:1;6169;6162:12;6126:50;6195:22;;6248:4;6240:13;;6236:27;-1:-1:-1;6226:55:1;;6277:1;6274;6267:12;6226:55;6300:74;6366:7;6361:2;6348:16;6343:2;6339;6335:11;6300:74;:::i;:::-;6290:84;;;5713:667;;;;;;;:::o;6385:260::-;6453:6;6461;6514:2;6502:9;6493:7;6489:23;6485:32;6482:52;;;6530:1;6527;6520:12;6482:52;6553:29;6572:9;6553:29;:::i;:::-;6543:39;;6601:38;6635:2;6624:9;6620:18;6601:38;:::i;:::-;6591:48;;6385:260;;;;;:::o;6650:380::-;6729:1;6725:12;;;;6772;;;6793:61;;6847:4;6839:6;6835:17;6825:27;;6793:61;6900:2;6892:6;6889:14;6869:18;6866:38;6863:161;;;6946:10;6941:3;6937:20;6934:1;6927:31;6981:4;6978:1;6971:15;7009:4;7006:1;6999:15;6863:161;;6650:380;;;:::o;7448:356::-;7650:2;7632:21;;;7669:18;;;7662:30;7728:34;7723:2;7708:18;;7701:62;7795:2;7780:18;;7448:356::o;8636:346::-;8838:2;8820:21;;;8877:2;8857:18;;;8850:30;-1:-1:-1;;;8911:2:1;8896:18;;8889:52;8973:2;8958:18;;8636:346::o;8987:127::-;9048:10;9043:3;9039:20;9036:1;9029:31;9079:4;9076:1;9069:15;9103:4;9100:1;9093:15;9119:127;9180:10;9175:3;9171:20;9168:1;9161:31;9211:4;9208:1;9201:15;9235:4;9232:1;9225:15;9251:135;9290:3;-1:-1:-1;;9311:17:1;;9308:43;;;9331:18;;:::i;:::-;-1:-1:-1;9378:1:1;9367:13;;9251:135::o;11989:128::-;12029:3;12060:1;12056:6;12053:1;12050:13;12047:39;;;12066:18;;:::i;:::-;-1:-1:-1;12102:9:1;;11989:128::o;12122:413::-;12324:2;12306:21;;;12363:2;12343:18;;;12336:30;12402:34;12397:2;12382:18;;12375:62;-1:-1:-1;;;12468:2:1;12453:18;;12446:47;12525:3;12510:19;;12122:413::o;12540:168::-;12580:7;12646:1;12642;12638:6;12634:14;12631:1;12628:21;12623:1;12616:9;12609:17;12605:45;12602:71;;;12653:18;;:::i;:::-;-1:-1:-1;12693:9:1;;12540:168::o;13469:637::-;13749:3;13787:6;13781:13;13803:53;13849:6;13844:3;13837:4;13829:6;13825:17;13803:53;:::i;:::-;13919:13;;13878:16;;;;13941:57;13919:13;13878:16;13975:4;13963:17;;13941:57;:::i;:::-;-1:-1:-1;;;14020:20:1;;14049:22;;;14098:1;14087:13;;13469:637;-1:-1:-1;;;;13469:637:1:o;14472:125::-;14512:4;14540:1;14537;14534:8;14531:34;;;14545:18;;:::i;:::-;-1:-1:-1;14582:9:1;;14472:125::o;16416:413::-;16618:2;16600:21;;;16657:2;16637:18;;;16630:30;16696:34;16691:2;16676:18;;16669:62;-1:-1:-1;;;16762:2:1;16747:18;;16740:47;16819:3;16804:19;;16416:413::o;17214:127::-;17275:10;17270:3;17266:20;17263:1;17256:31;17306:4;17303:1;17296:15;17330:4;17327:1;17320:15;17346:120;17386:1;17412;17402:35;;17417:18;;:::i;:::-;-1:-1:-1;17451:9:1;;17346:120::o;17471:112::-;17503:1;17529;17519:35;;17534:18;;:::i;:::-;-1:-1:-1;17568:9:1;;17471:112::o;18816:414::-;19018:2;19000:21;;;19057:2;19037:18;;;19030:30;19096:34;19091:2;19076:18;;19069:62;-1:-1:-1;;;19162:2:1;19147:18;;19140:48;19220:3;19205:19;;18816:414::o;19953:489::-;-1:-1:-1;;;;;20222:15:1;;;20204:34;;20274:15;;20269:2;20254:18;;20247:43;20321:2;20306:18;;20299:34;;;20369:3;20364:2;20349:18;;20342:31;;;20147:4;;20390:46;;20416:19;;20408:6;20390:46;:::i;:::-;20382:54;19953:489;-1:-1:-1;;;;;;19953:489:1:o;20447:249::-;20516:6;20569:2;20557:9;20548:7;20544:23;20540:32;20537:52;;;20585:1;20582;20575:12;20537:52;20617:9;20611:16;20636:30;20660:5;20636:30;:::i

Swarm Source

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