ETH Price: $3,332.76 (-0.32%)

Token

AngryDogs (AD)
 

Overview

Max Total Supply

36 AD

Holders

23

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 AD
0x4838b0aa50c7f8fa9a14bc95d6c6ba65aa57d861
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MintERC721

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 16 of 20: MintERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721Tradable.sol";


contract MintERC721 is ERC721Tradable {
    string private uribaseToken_;
      
    constructor(string memory collectionName, string memory collectionSymbol, string memory _baseuri, address _proxyRegistryAddress,address _adminwallet,uint256 _price) 
        ERC721Tradable(collectionName, collectionSymbol, _proxyRegistryAddress,_adminwallet,_price)
    {
        
        uribaseToken_ = _baseuri;
        
    }
        
    
    function baseTokenURI() override public view returns (string memory) {
        return uribaseToken_;
    }

    function contractURI() public view returns (string memory) {
        return uribaseToken_;
    }
    
    function updateURL(string memory _uri) public onlyOwner {
        uribaseToken_ = _uri;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 3 of 20: ContextMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 4 of 20: EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 5 of 20: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 20: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    mapping(address => uint256[]) private _ownerIds;

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

        if (!_ownerIdExists(to, tokenId)) {
            _addOwnerId(to, tokenId);
        }

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;
        
        
        if ( _ownerIdExists(from, tokenId)) {
            _deleteOwnerId(from, tokenId);
            
        }
        
        if (!_ownerIdExists(to, tokenId)) {
            _addOwnerId(to, tokenId);
            
        }

        emit Transfer(from, to, tokenId);
    }

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

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

            _ownerIds[owner][indexOfId] = lastId;
            _ownerIdIndex[owner][lastId] = indexOfId;
            _ownerIds[owner].pop();
    }
  }
  
  function _addOwnerId(address owner, uint256 id) internal {
      uint256 len = _ownerIds[owner].length;
      _ownerIdIndex[owner][id] = len;
      _ownerIds[owner].push(id);
  }

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

File 7 of 20: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 8 of 20: ERC721Tradable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

import "./ContextMixin.sol";
import "./NativeMetaTransaction.sol";
contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;
    uint256 private _currentTokenId = 0;
    
    mapping (address => uint256)public userMints;
    
    address private adminWallet;
    uint256 private NFTprice;
    
    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress,
        address _adminwallet,
        uint256 _price
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
        adminWallet = _adminwallet;
        NFTprice = _price;
    }

    /**
     * @dev Mints a token to an address with a tokenURI.
     * @param _to address of the future owner of the token
     */
    function mintTo(address _to) public onlyOwner {
        uint256 newTokenId = _getNextTokenId();
        _mint(_to, newTokenId);
        _incrementTokenId();
    }
    // Update Price 
    function UpdatePrice(uint256 price) public onlyOwner {
        NFTprice = price;
    }
    // Change Owner Wallet
    function UpdateWallet(address _adminWallet) public onlyOwner {
        adminWallet = _adminWallet;
    }
    
    // Update Price 
    function GetPrice() public view returns (uint256) {
        return NFTprice;
    }
    
    
    
    function mintNFT(uint256 totalMints_)public payable {
        require(userMints[msg.sender].add(totalMints_) <= 10, "Single user can not buy more than 10 NFTs");
        require(NFTprice.mul(totalMints_) == msg.value, "insufficient funds provided");
        require(ERC721Enumerable.totalSupply() < 1000, "Total supply Should be less than 1000 NFT.");
        
        for (uint256 i = 0; i< totalMints_; i++){
        _mint(msg.sender, _getNextTokenId());
        _incrementTokenId();
        
        userMints[msg.sender] = userMints[msg.sender] + 1;
        }
        
        
        
        address payable wallet = payable(adminWallet);
        wallet.transfer(msg.value);

    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }
    
    function getNexttokenId()public view returns (uint256){
        return _getNextTokenId();
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() private {
        _currentTokenId++;
    }

    function baseTokenURI() virtual public view returns (string memory);

    function tokenURI(uint256 _tokenId) override public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI(), Strings.toString(_tokenId)));
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.

        if (proxyRegistryAddress == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

File 9 of 20: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 20: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 20: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 12 of 20: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 13 of 20: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * This is a generic factory contract that can be used to mint tokens. The configuration
 * for minting is specified by an _optionId, which can be used to delineate various
 * ways of minting.
 */
interface FactoryERC721 {
    /**
     * Returns the name of this factory.
     */
    function name() external view returns (string memory);

    /**
     * Returns the symbol for this factory.
     */
    function symbol() external view returns (string memory);

    /**
     * Number of options the factory supports.
     */
    function numOptions() external view returns (uint256);

    /**
     * @dev Returns whether the option ID can be minted. Can return false if the developer wishes to
     * restrict a total supply per option ID (or overall).
     */
    function canMint(uint256 _optionId) external view returns (bool);

    /**
     * @dev Returns a URL specifying some metadata about the option. This metadata can be of the
     * same structure as the ERC721 metadata.
     */
    function tokenURI(uint256 _optionId) external view returns (string memory);

    /**
     * Indicates that this is a factory contract. Ideally would use EIP 165 supportsInterface()
     */
    function supportsFactoryInterface() external view returns (bool);

    /**
     * @dev Mints asset(s) in accordance to a specific address with a particular "option". This should be
     * callable only by the contract owner or the owner's Wyvern Proxy (later universal login will solve this).
     * Options should also be delineated 0 - (numOptions() - 1) for convenient indexing.
     * @param _optionId the option id
     * @param _toAddress address of the future owner of the asset(s)
     */
    function mint(uint256 _optionId, address _toAddress) external;
}

File 15 of 20: Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

File 17 of 20: NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {SafeMath} from  "./SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 18 of 20: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../Context.sol";

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

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

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

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

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

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

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

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

File 19 of 20: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"collectionName","type":"string"},{"internalType":"string","name":"collectionSymbol","type":"string"},{"internalType":"string","name":"_baseuri","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"address","name":"_adminwallet","type":"address"},{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GetPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"UpdatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_adminWallet","type":"address"}],"name":"UpdateWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNexttokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getOwnerIdIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getOwnerIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalMints_","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"updateURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600c805460ff1916905560006011553480156200002057600080fd5b506040516200305738038062003057833981016040819052620000439162000451565b85858484848484816000908051906020019062000062929190620002d7565b50805162000078906001906020840190620002d7565b505050620000956200008f6200010460201b60201c565b62000120565b601080546001600160a01b0319166001600160a01b038516179055620000bb8562000172565b601380546001600160a01b0319166001600160a01b03939093169290921790915560145550508451620000f791506015906020870190620002d7565b5050505050505062000563565b60006200011b620001d660201b620014531760201c565b905090565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c5460ff1615620001bb5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001c68162000235565b50600c805460ff19166001179055565b6000333014156200022f57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002329050565b50335b90565b6040518060800160405280604f815260200162003008604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600d55565b828054620002e59062000510565b90600052602060002090601f01602090048101928262000309576000855562000354565b82601f106200032457805160ff191683800117855562000354565b8280016001018555821562000354579182015b828111156200035457825182559160200191906001019062000337565b506200036292915062000366565b5090565b5b8082111562000362576000815560010162000367565b80516001600160a01b03811681146200039557600080fd5b919050565b600082601f830112620003ac57600080fd5b81516001600160401b0380821115620003c957620003c96200054d565b604051601f8301601f19908116603f01168101908282118183101715620003f457620003f46200054d565b816040528381526020925086838588010111156200041157600080fd5b600091505b8382101562000435578582018301518183018401529082019062000416565b83821115620004475760008385830101525b9695505050505050565b60008060008060008060c087890312156200046b57600080fd5b86516001600160401b03808211156200048357600080fd5b620004918a838b016200039a565b97506020890151915080821115620004a857600080fd5b620004b68a838b016200039a565b96506040890151915080821115620004cd57600080fd5b50620004dc89828a016200039a565b945050620004ed606088016200037d565b9250620004fd608088016200037d565b915060a087015190509295509295509295565b600181811c908216806200052557607f821691505b602082108114156200054757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a9580620005736000396000f3fe60806040526004361061020f5760003560e01c80636d90164e11610118578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d485146105b4578063e985e9c5146105f6578063ed6cb3a314610616578063f2fde38b14610659578063fbc51e4b1461067957600080fd5b8063c87b56dd14610567578063cc852c4314610587578063d547cfb7146105b4578063df282331146105c957600080fd5b80638da5cb5b116100e75780638da5cb5b146104e157806392642744146104ff57806395d89b4114610512578063a22cb46514610527578063b88d4fde1461054757600080fd5b80636d90164e1461047757806370a082311461048c578063715018a6146104ac578063755edd17146104c157600080fd5b806323b872dd1161019b57806342842e0e1161016a57806342842e0e146103e25780634f6ccce7146104025780635e53e852146104225780636352211e1461043757806369a3794a1461045757600080fd5b806323b872dd146103595780632d0335ab146103795780632f745c59146103af5780633408e470146103cf57600080fd5b80630c53c51c116101e25780630c53c51c146102c55780630f7e5970146102d857806318160ddd146103055780631a15ab711461032457806320379ee51461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046125b5565b610699565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c4565b60405161024091906127b5565b34801561027757600080fd5b5061028b610286366004612638565b610756565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461258b565b6107f0565b005b61025e6102d336600461250f565b610918565b3480156102e457600080fd5b5061025e604051806040016040528060018152602001603160f81b81525081565b34801561031157600080fd5b50600a545b604051908152602001610240565b34801561033057600080fd5b506102c361033f366004612638565b610b02565b34801561035057600080fd5b50600d54610316565b34801561036557600080fd5b506102c361037436600461242f565b610b50565b34801561038557600080fd5b506103166103943660046123e1565b6001600160a01b03166000908152600e602052604090205490565b3480156103bb57600080fd5b506103166103ca36600461258b565b610b88565b3480156103db57600080fd5b5046610316565b3480156103ee57600080fd5b506102c36103fd36600461242f565b610c1e565b34801561040e57600080fd5b5061031661041d366004612638565b610c39565b34801561042e57600080fd5b50610316610ccc565b34801561044357600080fd5b5061028b610452366004612638565b610cdb565b34801561046357600080fd5b506102c36104723660046123e1565b610d52565b34801561048357600080fd5b50601454610316565b34801561049857600080fd5b506103166104a73660046123e1565b610dbd565b3480156104b857600080fd5b506102c3610e44565b3480156104cd57600080fd5b506102c36104dc3660046123e1565b610e99565b3480156104ed57600080fd5b50600f546001600160a01b031661028b565b6102c361050d366004612638565b610f04565b34801561051e57600080fd5b5061025e6110e6565b34801561053357600080fd5b506102c36105423660046124d3565b6110f5565b34801561055357600080fd5b506102c361056236600461246b565b6111f7565b34801561057357600080fd5b5061025e610582366004612638565b611236565b34801561059357600080fd5b506105a76105a23660046123e1565b611270565b6040516102409190612771565b3480156105c057600080fd5b5061025e6112dc565b3480156105d557600080fd5b506103166105e43660046123e1565b60126020526000908152604090205481565b34801561060257600080fd5b506102346106113660046123fc565b6112eb565b34801561062257600080fd5b5061031661063136600461258b565b6001600160a01b03919091166000908152600660209081526040808320938352929052205490565b34801561066557600080fd5b506102c36106743660046123e1565b61133d565b34801561068557600080fd5b506102c36106943660046125ef565b6113f7565b60006001600160e01b0319821663780e9d6360e01b14806106be57506106be826114b0565b92915050565b6060600080546106d39061292e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff9061292e565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107fb82610cdb565b9050806001600160a01b0316836001600160a01b031614156108695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107cb565b806001600160a01b031661087b611500565b6001600160a01b03161480610897575061089781610611611500565b6109095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107cb565b610913838361150a565b505050565b60408051606081810183526001600160a01b0388166000818152600e6020908152908590205484528301529181018690526109568782878787611578565b6109ac5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016107cb565b6001600160a01b0387166000908152600e60205260409020546109d0906001611668565b6001600160a01b0388166000908152600e60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610a2090899033908a906126ff565b60405180910390a1600080306001600160a01b0316888a604051602001610a48929190612699565b60408051601f1981840301815290829052610a629161267d565b6000604051808303816000865af19150503d8060008114610a9f576040519150601f19603f3d011682016040523d82523d6000602084013e610aa4565b606091505b509150915081610af65760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016107cb565b98975050505050505050565b610b0a611500565b6001600160a01b0316610b25600f546001600160a01b031690565b6001600160a01b031614610b4b5760405162461bcd60e51b81526004016107cb9061281a565b601455565b610b61610b5b611500565b82611674565b610b7d5760405162461bcd60e51b81526004016107cb9061284f565b61091383838361174b565b6000610b9383610dbd565b8210610bf55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107cb565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b610913838383604051806020016040528060008152506111f7565b6000610c44600a5490565b8210610ca75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107cb565b600a8281548110610cba57610cba6129da565b90600052602060002001549050919050565b6000610cd6611938565b905090565b6000818152600260205260408120546001600160a01b0316806106be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107cb565b610d5a611500565b6001600160a01b0316610d75600f546001600160a01b031690565b6001600160a01b031614610d9b5760405162461bcd60e51b81526004016107cb9061281a565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610e285760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107cb565b506001600160a01b031660009081526003602052604090205490565b610e4c611500565b6001600160a01b0316610e67600f546001600160a01b031690565b6001600160a01b031614610e8d5760405162461bcd60e51b81526004016107cb9061281a565b610e976000611949565b565b610ea1611500565b6001600160a01b0316610ebc600f546001600160a01b031690565b6001600160a01b031614610ee25760405162461bcd60e51b81526004016107cb9061281a565b6000610eec611938565b9050610ef8828261199b565b610f00611b0b565b5050565b33600090815260126020526040902054600a90610f219083611668565b1115610f815760405162461bcd60e51b815260206004820152602960248201527f53696e676c6520757365722063616e206e6f7420627579206d6f7265207468616044820152686e203130204e46547360b81b60648201526084016107cb565b6014543490610f909083611b22565b14610fdd5760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f7669646564000000000060448201526064016107cb565b6103e8610fe9600a5490565b106110495760405162461bcd60e51b815260206004820152602a60248201527f546f74616c20737570706c792053686f756c64206265206c657373207468616e60448201526910189818181027232a1760b11b60648201526084016107cb565b60005b818110156110aa5761106533611060611938565b61199b565b61106d611b0b565b336000908152601260205260409020546110889060016128a0565b33600090815260126020526040902055806110a281612969565b91505061104c565b506013546040516001600160a01b039091169081903480156108fc02916000818181858888f19350505050158015610913573d6000803e3d6000fd5b6060600180546106d39061292e565b6110fd611500565b6001600160a01b0316826001600160a01b0316141561115e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107cb565b806005600061116b611500565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111af611500565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111eb911515815260200190565b60405180910390a35050565b611208611202611500565b83611674565b6112245760405162461bcd60e51b81526004016107cb9061284f565b61123084848484611b2e565b50505050565b60606112406112dc565b61124983611b61565b60405160200161125a9291906126d0565b6040516020818303038152906040529050919050565b6001600160a01b0381166000908152600760209081526040918290208054835181840281018401909452808452606093928301828280156112d057602002820191906000526020600020905b8154815260200190600101908083116112bc575b50505050509050919050565b6060601580546106d39061292e565b6010546000906001600160a01b038381169116141561130c575060016106be565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff165b9392505050565b611345611500565b6001600160a01b0316611360600f546001600160a01b031690565b6001600160a01b0316146113865760405162461bcd60e51b81526004016107cb9061281a565b6001600160a01b0381166113eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b6113f481611949565b50565b6113ff611500565b6001600160a01b031661141a600f546001600160a01b031690565b6001600160a01b0316146114405760405162461bcd60e51b81526004016107cb9061281a565b8051610f00906015906020840190612296565b6000333014156114aa57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506114ad9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806114e157506001600160e01b03198216635b5e139f60e01b145b806106be57506301ffc9a760e01b6001600160e01b03198316146106be565b6000610cd6611453565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061153f82610cdb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166115de5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016107cb565b60016115f16115ec87611c5f565b611cdc565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561163f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061133682846128a0565b6000818152600260205260408120546001600160a01b03166116ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cb565b60006116f883610cdb565b9050806001600160a01b0316846001600160a01b031614806117335750836001600160a01b031661172884610756565b6001600160a01b0316145b80611743575061174381856112eb565b949350505050565b826001600160a01b031661175e82610cdb565b6001600160a01b0316146117c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107cb565b6001600160a01b0382166118285760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107cb565b611833838383611d0c565b61183e60008261150a565b6001600160a01b03831660009081526003602052604081208054600192906118679084906128eb565b90915550506001600160a01b03821660009081526003602052604081208054600192906118959084906128a0565b9091555050600081815260026020526040902080546001600160a01b0319166001600160a01b0384161790556118cb8382611dc4565b156118da576118da8382611e3f565b6118e48282611dc4565b6118f2576118f28282611faf565b80826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b601154600090610cd6906001611668565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166119f15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107cb565b6000818152600260205260409020546001600160a01b031615611a565760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107cb565b611a6260008383611d0c565b6001600160a01b0382166000908152600360205260408120805460019290611a8b9084906128a0565b9091555050600081815260026020526040902080546001600160a01b0319166001600160a01b038416179055611ac18282611dc4565b611acf57611acf8282611faf565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60118054906000611b1b83612969565b9190505550565b600061133682846128cc565b611b3984848461174b565b611b4584848484611ff2565b6112305760405162461bcd60e51b81526004016107cb906127c8565b606081611b855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611baf5780611b9981612969565b9150611ba89050600a836128b8565b9150611b89565b60008167ffffffffffffffff811115611bca57611bca6129f0565b6040519080825280601f01601f191660200182016040528015611bf4576020820181803683370190505b5090505b841561174357611c096001836128eb565b9150611c16600a86612984565b611c219060306128a0565b60f81b818381518110611c3657611c366129da565b60200101906001600160f81b031916908160001a905350611c58600a866128b8565b9450611bf8565b6000604051806080016040528060438152602001612a1d6043913980516020918201208351848301516040808701518051908601209051611cbf950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611ce7600d5490565b60405161190160f01b6020820152602281019190915260428101839052606201611cbf565b6001600160a01b038316611d6757611d6281600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b611d8a565b816001600160a01b0316836001600160a01b031614611d8a57611d8a8382612106565b6001600160a01b038216611da157610913816121a3565b826001600160a01b0316826001600160a01b031614610913576109138282612252565b6001600160a01b038216600090815260076020526040812054611de9575060006106be565b6001600160a01b038316600081815260066020908152604080832086845282528083205493835260079091529020805482908110611e2957611e296129da565b9060005260206000200154831491505092915050565b6001600160a01b038216600090815260076020526040812054611e64906001906128eb565b6001600160a01b03841660009081526007602052604081208054929350909183908110611e9357611e936129da565b9060005260206000200154905080831415611f00576001600160a01b038416600081815260066020908152604080832087845282528083208390559282526007905220805480611ee557611ee56129c4565b60019003818190600052602060002001600090559055611230565b6001600160a01b0384166000818152600660209081526040808320878452825280832080549084905593835260079091529020805483919083908110611f4857611f486129da565b60009182526020808320909101929092556001600160a01b0387168082526006835260408083208684528452808320859055908252600790925220805480611f9257611f926129c4565b600190038181906000526020600020016000905590555050505050565b6001600160a01b03909116600090815260076020818152604080842080546006845282862087875284529185208290559282526001810183559183529091200155565b60006001600160a01b0384163b156120fb57836001600160a01b031663150b7a0261201b611500565b8786866040518563ffffffff1660e01b815260040161203d9493929190612734565b602060405180830381600087803b15801561205757600080fd5b505af1925050508015612087575060408051601f3d908101601f19168201909252612084918101906125d2565b60015b6120e1573d8080156120b5576040519150601f19603f3d011682016040523d82523d6000602084013e6120ba565b606091505b5080516120d95760405162461bcd60e51b81526004016107cb906127c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611743565b506001949350505050565b6000600161211384610dbd565b61211d91906128eb565b600083815260096020526040902054909150808214612170576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906121b5906001906128eb565b6000838152600b6020526040812054600a80549394509092849081106121dd576121dd6129da565b9060005260206000200154905080600a83815481106121fe576121fe6129da565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480612236576122366129c4565b6001900381819060005260206000200160009055905550505050565b600061225d83610dbd565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b8280546122a29061292e565b90600052602060002090601f0160209004810192826122c4576000855561230a565b82601f106122dd57805160ff191683800117855561230a565b8280016001018555821561230a579182015b8281111561230a5782518255916020019190600101906122ef565b5061231692915061231a565b5090565b5b80821115612316576000815560010161231b565b600067ffffffffffffffff8084111561234a5761234a6129f0565b604051601f8501601f19908116603f01168101908282118183101715612372576123726129f0565b8160405280935085815286868601111561238b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123bc57600080fd5b919050565b600082601f8301126123d257600080fd5b6113368383356020850161232f565b6000602082840312156123f357600080fd5b611336826123a5565b6000806040838503121561240f57600080fd5b612418836123a5565b9150612426602084016123a5565b90509250929050565b60008060006060848603121561244457600080fd5b61244d846123a5565b925061245b602085016123a5565b9150604084013590509250925092565b6000806000806080858703121561248157600080fd5b61248a856123a5565b9350612498602086016123a5565b925060408501359150606085013567ffffffffffffffff8111156124bb57600080fd5b6124c7878288016123c1565b91505092959194509250565b600080604083850312156124e657600080fd5b6124ef836123a5565b91506020830135801515811461250457600080fd5b809150509250929050565b600080600080600060a0868803121561252757600080fd5b612530866123a5565b9450602086013567ffffffffffffffff81111561254c57600080fd5b612558888289016123c1565b9450506040860135925060608601359150608086013560ff8116811461257d57600080fd5b809150509295509295909350565b6000806040838503121561259e57600080fd5b6125a7836123a5565b946020939093013593505050565b6000602082840312156125c757600080fd5b813561133681612a06565b6000602082840312156125e457600080fd5b815161133681612a06565b60006020828403121561260157600080fd5b813567ffffffffffffffff81111561261857600080fd5b8201601f8101841361262957600080fd5b6117438482356020840161232f565b60006020828403121561264a57600080fd5b5035919050565b60008151808452612669816020860160208601612902565b601f01601f19169290920160200192915050565b6000825161268f818460208701612902565b9190910192915050565b600083516126ab818460208801612902565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600083516126e2818460208801612902565b8351908301906126f6818360208801612902565b01949350505050565b6001600160a01b0384811682528316602082015260606040820181905260009061272b90830184612651565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276790830184612651565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127a95783518352928401929184019160010161278d565b50909695505050505050565b6020815260006113366020830184612651565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128b3576128b3612998565b500190565b6000826128c7576128c76129ae565b500490565b60008160001904831182151516156128e6576128e6612998565b500290565b6000828210156128fd576128fd612998565b500390565b60005b8381101561291d578181015183820152602001612905565b838111156112305750506000910152565b600181811c9082168061294257607f821691505b6020821081141561296357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297d5761297d612998565b5060010190565b600082612993576129936129ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113f457600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212202f494d28d03901f23fbe14c0c48a7bb5be0306fbb1dac6f1ba80e4313322708d64736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007ca0ee917aea318676654c32ff6df1d376c8eaf80000000000000000000000007ca0ee917aea318676654c32ff6df1d376c8eaf800000000000000000000000000000000000000000000000000d529ae9e8600000000000000000000000000000000000000000000000000000000000000000009416e677279446f6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d64704e39617654526e7778736b385638536d6a5864536e51537045526e42514d6354486b326441437a7a43472f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636d90164e11610118578063c87b56dd116100a0578063e8a3d4851161006f578063e8a3d485146105b4578063e985e9c5146105f6578063ed6cb3a314610616578063f2fde38b14610659578063fbc51e4b1461067957600080fd5b8063c87b56dd14610567578063cc852c4314610587578063d547cfb7146105b4578063df282331146105c957600080fd5b80638da5cb5b116100e75780638da5cb5b146104e157806392642744146104ff57806395d89b4114610512578063a22cb46514610527578063b88d4fde1461054757600080fd5b80636d90164e1461047757806370a082311461048c578063715018a6146104ac578063755edd17146104c157600080fd5b806323b872dd1161019b57806342842e0e1161016a57806342842e0e146103e25780634f6ccce7146104025780635e53e852146104225780636352211e1461043757806369a3794a1461045757600080fd5b806323b872dd146103595780632d0335ab146103795780632f745c59146103af5780633408e470146103cf57600080fd5b80630c53c51c116101e25780630c53c51c146102c55780630f7e5970146102d857806318160ddd146103055780631a15ab711461032457806320379ee51461034457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f3660046125b5565b610699565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c4565b60405161024091906127b5565b34801561027757600080fd5b5061028b610286366004612638565b610756565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be36600461258b565b6107f0565b005b61025e6102d336600461250f565b610918565b3480156102e457600080fd5b5061025e604051806040016040528060018152602001603160f81b81525081565b34801561031157600080fd5b50600a545b604051908152602001610240565b34801561033057600080fd5b506102c361033f366004612638565b610b02565b34801561035057600080fd5b50600d54610316565b34801561036557600080fd5b506102c361037436600461242f565b610b50565b34801561038557600080fd5b506103166103943660046123e1565b6001600160a01b03166000908152600e602052604090205490565b3480156103bb57600080fd5b506103166103ca36600461258b565b610b88565b3480156103db57600080fd5b5046610316565b3480156103ee57600080fd5b506102c36103fd36600461242f565b610c1e565b34801561040e57600080fd5b5061031661041d366004612638565b610c39565b34801561042e57600080fd5b50610316610ccc565b34801561044357600080fd5b5061028b610452366004612638565b610cdb565b34801561046357600080fd5b506102c36104723660046123e1565b610d52565b34801561048357600080fd5b50601454610316565b34801561049857600080fd5b506103166104a73660046123e1565b610dbd565b3480156104b857600080fd5b506102c3610e44565b3480156104cd57600080fd5b506102c36104dc3660046123e1565b610e99565b3480156104ed57600080fd5b50600f546001600160a01b031661028b565b6102c361050d366004612638565b610f04565b34801561051e57600080fd5b5061025e6110e6565b34801561053357600080fd5b506102c36105423660046124d3565b6110f5565b34801561055357600080fd5b506102c361056236600461246b565b6111f7565b34801561057357600080fd5b5061025e610582366004612638565b611236565b34801561059357600080fd5b506105a76105a23660046123e1565b611270565b6040516102409190612771565b3480156105c057600080fd5b5061025e6112dc565b3480156105d557600080fd5b506103166105e43660046123e1565b60126020526000908152604090205481565b34801561060257600080fd5b506102346106113660046123fc565b6112eb565b34801561062257600080fd5b5061031661063136600461258b565b6001600160a01b03919091166000908152600660209081526040808320938352929052205490565b34801561066557600080fd5b506102c36106743660046123e1565b61133d565b34801561068557600080fd5b506102c36106943660046125ef565b6113f7565b60006001600160e01b0319821663780e9d6360e01b14806106be57506106be826114b0565b92915050565b6060600080546106d39061292e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ff9061292e565b801561074c5780601f106107215761010080835404028352916020019161074c565b820191906000526020600020905b81548152906001019060200180831161072f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107fb82610cdb565b9050806001600160a01b0316836001600160a01b031614156108695760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107cb565b806001600160a01b031661087b611500565b6001600160a01b03161480610897575061089781610611611500565b6109095760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107cb565b610913838361150a565b505050565b60408051606081810183526001600160a01b0388166000818152600e6020908152908590205484528301529181018690526109568782878787611578565b6109ac5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b60648201526084016107cb565b6001600160a01b0387166000908152600e60205260409020546109d0906001611668565b6001600160a01b0388166000908152600e60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610a2090899033908a906126ff565b60405180910390a1600080306001600160a01b0316888a604051602001610a48929190612699565b60408051601f1981840301815290829052610a629161267d565b6000604051808303816000865af19150503d8060008114610a9f576040519150601f19603f3d011682016040523d82523d6000602084013e610aa4565b606091505b509150915081610af65760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016107cb565b98975050505050505050565b610b0a611500565b6001600160a01b0316610b25600f546001600160a01b031690565b6001600160a01b031614610b4b5760405162461bcd60e51b81526004016107cb9061281a565b601455565b610b61610b5b611500565b82611674565b610b7d5760405162461bcd60e51b81526004016107cb9061284f565b61091383838361174b565b6000610b9383610dbd565b8210610bf55760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107cb565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b610913838383604051806020016040528060008152506111f7565b6000610c44600a5490565b8210610ca75760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107cb565b600a8281548110610cba57610cba6129da565b90600052602060002001549050919050565b6000610cd6611938565b905090565b6000818152600260205260408120546001600160a01b0316806106be5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107cb565b610d5a611500565b6001600160a01b0316610d75600f546001600160a01b031690565b6001600160a01b031614610d9b5760405162461bcd60e51b81526004016107cb9061281a565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610e285760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107cb565b506001600160a01b031660009081526003602052604090205490565b610e4c611500565b6001600160a01b0316610e67600f546001600160a01b031690565b6001600160a01b031614610e8d5760405162461bcd60e51b81526004016107cb9061281a565b610e976000611949565b565b610ea1611500565b6001600160a01b0316610ebc600f546001600160a01b031690565b6001600160a01b031614610ee25760405162461bcd60e51b81526004016107cb9061281a565b6000610eec611938565b9050610ef8828261199b565b610f00611b0b565b5050565b33600090815260126020526040902054600a90610f219083611668565b1115610f815760405162461bcd60e51b815260206004820152602960248201527f53696e676c6520757365722063616e206e6f7420627579206d6f7265207468616044820152686e203130204e46547360b81b60648201526084016107cb565b6014543490610f909083611b22565b14610fdd5760405162461bcd60e51b815260206004820152601b60248201527f696e73756666696369656e742066756e64732070726f7669646564000000000060448201526064016107cb565b6103e8610fe9600a5490565b106110495760405162461bcd60e51b815260206004820152602a60248201527f546f74616c20737570706c792053686f756c64206265206c657373207468616e60448201526910189818181027232a1760b11b60648201526084016107cb565b60005b818110156110aa5761106533611060611938565b61199b565b61106d611b0b565b336000908152601260205260409020546110889060016128a0565b33600090815260126020526040902055806110a281612969565b91505061104c565b506013546040516001600160a01b039091169081903480156108fc02916000818181858888f19350505050158015610913573d6000803e3d6000fd5b6060600180546106d39061292e565b6110fd611500565b6001600160a01b0316826001600160a01b0316141561115e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107cb565b806005600061116b611500565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556111af611500565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111eb911515815260200190565b60405180910390a35050565b611208611202611500565b83611674565b6112245760405162461bcd60e51b81526004016107cb9061284f565b61123084848484611b2e565b50505050565b60606112406112dc565b61124983611b61565b60405160200161125a9291906126d0565b6040516020818303038152906040529050919050565b6001600160a01b0381166000908152600760209081526040918290208054835181840281018401909452808452606093928301828280156112d057602002820191906000526020600020905b8154815260200190600101908083116112bc575b50505050509050919050565b6060601580546106d39061292e565b6010546000906001600160a01b038381169116141561130c575060016106be565b6001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff165b9392505050565b611345611500565b6001600160a01b0316611360600f546001600160a01b031690565b6001600160a01b0316146113865760405162461bcd60e51b81526004016107cb9061281a565b6001600160a01b0381166113eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107cb565b6113f481611949565b50565b6113ff611500565b6001600160a01b031661141a600f546001600160a01b031690565b6001600160a01b0316146114405760405162461bcd60e51b81526004016107cb9061281a565b8051610f00906015906020840190612296565b6000333014156114aa57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506114ad9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b14806114e157506001600160e01b03198216635b5e139f60e01b145b806106be57506301ffc9a760e01b6001600160e01b03198316146106be565b6000610cd6611453565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061153f82610cdb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166115de5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b60648201526084016107cb565b60016115f16115ec87611c5f565b611cdc565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561163f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b600061133682846128a0565b6000818152600260205260408120546001600160a01b03166116ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107cb565b60006116f883610cdb565b9050806001600160a01b0316846001600160a01b031614806117335750836001600160a01b031661172884610756565b6001600160a01b0316145b80611743575061174381856112eb565b949350505050565b826001600160a01b031661175e82610cdb565b6001600160a01b0316146117c65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107cb565b6001600160a01b0382166118285760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107cb565b611833838383611d0c565b61183e60008261150a565b6001600160a01b03831660009081526003602052604081208054600192906118679084906128eb565b90915550506001600160a01b03821660009081526003602052604081208054600192906118959084906128a0565b9091555050600081815260026020526040902080546001600160a01b0319166001600160a01b0384161790556118cb8382611dc4565b156118da576118da8382611e3f565b6118e48282611dc4565b6118f2576118f28282611faf565b80826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b601154600090610cd6906001611668565b600f80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166119f15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107cb565b6000818152600260205260409020546001600160a01b031615611a565760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107cb565b611a6260008383611d0c565b6001600160a01b0382166000908152600360205260408120805460019290611a8b9084906128a0565b9091555050600081815260026020526040902080546001600160a01b0319166001600160a01b038416179055611ac18282611dc4565b611acf57611acf8282611faf565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60118054906000611b1b83612969565b9190505550565b600061133682846128cc565b611b3984848461174b565b611b4584848484611ff2565b6112305760405162461bcd60e51b81526004016107cb906127c8565b606081611b855750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611baf5780611b9981612969565b9150611ba89050600a836128b8565b9150611b89565b60008167ffffffffffffffff811115611bca57611bca6129f0565b6040519080825280601f01601f191660200182016040528015611bf4576020820181803683370190505b5090505b841561174357611c096001836128eb565b9150611c16600a86612984565b611c219060306128a0565b60f81b818381518110611c3657611c366129da565b60200101906001600160f81b031916908160001a905350611c58600a866128b8565b9450611bf8565b6000604051806080016040528060438152602001612a1d6043913980516020918201208351848301516040808701518051908601209051611cbf950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000611ce7600d5490565b60405161190160f01b6020820152602281019190915260428101839052606201611cbf565b6001600160a01b038316611d6757611d6281600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b611d8a565b816001600160a01b0316836001600160a01b031614611d8a57611d8a8382612106565b6001600160a01b038216611da157610913816121a3565b826001600160a01b0316826001600160a01b031614610913576109138282612252565b6001600160a01b038216600090815260076020526040812054611de9575060006106be565b6001600160a01b038316600081815260066020908152604080832086845282528083205493835260079091529020805482908110611e2957611e296129da565b9060005260206000200154831491505092915050565b6001600160a01b038216600090815260076020526040812054611e64906001906128eb565b6001600160a01b03841660009081526007602052604081208054929350909183908110611e9357611e936129da565b9060005260206000200154905080831415611f00576001600160a01b038416600081815260066020908152604080832087845282528083208390559282526007905220805480611ee557611ee56129c4565b60019003818190600052602060002001600090559055611230565b6001600160a01b0384166000818152600660209081526040808320878452825280832080549084905593835260079091529020805483919083908110611f4857611f486129da565b60009182526020808320909101929092556001600160a01b0387168082526006835260408083208684528452808320859055908252600790925220805480611f9257611f926129c4565b600190038181906000526020600020016000905590555050505050565b6001600160a01b03909116600090815260076020818152604080842080546006845282862087875284529185208290559282526001810183559183529091200155565b60006001600160a01b0384163b156120fb57836001600160a01b031663150b7a0261201b611500565b8786866040518563ffffffff1660e01b815260040161203d9493929190612734565b602060405180830381600087803b15801561205757600080fd5b505af1925050508015612087575060408051601f3d908101601f19168201909252612084918101906125d2565b60015b6120e1573d8080156120b5576040519150601f19603f3d011682016040523d82523d6000602084013e6120ba565b606091505b5080516120d95760405162461bcd60e51b81526004016107cb906127c8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611743565b506001949350505050565b6000600161211384610dbd565b61211d91906128eb565b600083815260096020526040902054909150808214612170576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906121b5906001906128eb565b6000838152600b6020526040812054600a80549394509092849081106121dd576121dd6129da565b9060005260206000200154905080600a83815481106121fe576121fe6129da565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480612236576122366129c4565b6001900381819060005260206000200160009055905550505050565b600061225d83610dbd565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b8280546122a29061292e565b90600052602060002090601f0160209004810192826122c4576000855561230a565b82601f106122dd57805160ff191683800117855561230a565b8280016001018555821561230a579182015b8281111561230a5782518255916020019190600101906122ef565b5061231692915061231a565b5090565b5b80821115612316576000815560010161231b565b600067ffffffffffffffff8084111561234a5761234a6129f0565b604051601f8501601f19908116603f01168101908282118183101715612372576123726129f0565b8160405280935085815286868601111561238b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123bc57600080fd5b919050565b600082601f8301126123d257600080fd5b6113368383356020850161232f565b6000602082840312156123f357600080fd5b611336826123a5565b6000806040838503121561240f57600080fd5b612418836123a5565b9150612426602084016123a5565b90509250929050565b60008060006060848603121561244457600080fd5b61244d846123a5565b925061245b602085016123a5565b9150604084013590509250925092565b6000806000806080858703121561248157600080fd5b61248a856123a5565b9350612498602086016123a5565b925060408501359150606085013567ffffffffffffffff8111156124bb57600080fd5b6124c7878288016123c1565b91505092959194509250565b600080604083850312156124e657600080fd5b6124ef836123a5565b91506020830135801515811461250457600080fd5b809150509250929050565b600080600080600060a0868803121561252757600080fd5b612530866123a5565b9450602086013567ffffffffffffffff81111561254c57600080fd5b612558888289016123c1565b9450506040860135925060608601359150608086013560ff8116811461257d57600080fd5b809150509295509295909350565b6000806040838503121561259e57600080fd5b6125a7836123a5565b946020939093013593505050565b6000602082840312156125c757600080fd5b813561133681612a06565b6000602082840312156125e457600080fd5b815161133681612a06565b60006020828403121561260157600080fd5b813567ffffffffffffffff81111561261857600080fd5b8201601f8101841361262957600080fd5b6117438482356020840161232f565b60006020828403121561264a57600080fd5b5035919050565b60008151808452612669816020860160208601612902565b601f01601f19169290920160200192915050565b6000825161268f818460208701612902565b9190910192915050565b600083516126ab818460208801612902565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600083516126e2818460208801612902565b8351908301906126f6818360208801612902565b01949350505050565b6001600160a01b0384811682528316602082015260606040820181905260009061272b90830184612651565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061276790830184612651565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127a95783518352928401929184019160010161278d565b50909695505050505050565b6020815260006113366020830184612651565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128b3576128b3612998565b500190565b6000826128c7576128c76129ae565b500490565b60008160001904831182151516156128e6576128e6612998565b500290565b6000828210156128fd576128fd612998565b500390565b60005b8381101561291d578181015183820152602001612905565b838111156112305750506000910152565b600181811c9082168061294257607f821691505b6020821081141561296357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561297d5761297d612998565b5060010190565b600082612993576129936129ae565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113f457600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212202f494d28d03901f23fbe14c0c48a7bb5be0306fbb1dac6f1ba80e4313322708d64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001400000000000000000000000007ca0ee917aea318676654c32ff6df1d376c8eaf80000000000000000000000007ca0ee917aea318676654c32ff6df1d376c8eaf800000000000000000000000000000000000000000000000000d529ae9e8600000000000000000000000000000000000000000000000000000000000000000009416e677279446f6773000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024144000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d64704e39617654526e7778736b385638536d6a5864536e51537045526e42514d6354486b326441437a7a43472f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : collectionName (string): AngryDogs
Arg [1] : collectionSymbol (string): AD
Arg [2] : _baseuri (string): https://gateway.pinata.cloud/ipfs/QmdpN9avTRnwxsk8V8SmjXdSnQSpERnBQMcTHk2dACzzCG/
Arg [3] : _proxyRegistryAddress (address): 0x7Ca0ee917AEa318676654c32ff6df1D376c8Eaf8
Arg [4] : _adminwallet (address): 0x7Ca0ee917AEa318676654c32ff6df1D376c8Eaf8
Arg [5] : _price (uint256): 60000000000000000

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 0000000000000000000000007ca0ee917aea318676654c32ff6df1d376c8eaf8
Arg [4] : 0000000000000000000000007ca0ee917aea318676654c32ff6df1d376c8eaf8
Arg [5] : 00000000000000000000000000000000000000000000000000d529ae9e860000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 416e677279446f67730000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4144000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [11] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [12] : 732f516d64704e39617654526e7778736b385638536d6a5864536e5153704552
Arg [13] : 6e42514d6354486b326441437a7a43472f000000000000000000000000000000


Deployed Bytecode Sourcemap

91:746:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:6;;;;;;;;;;-1:-1:-1;909:222:6;;;;;:::i;:::-;;:::i;:::-;;;8605:14:20;;8598:22;8580:41;;8568:2;8553:18;909:222:6;;;;;;;;2482:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3993:217::-;;;;;;;;;;-1:-1:-1;3993:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6830:32:20;;;6812:51;;6800:2;6785:18;3993:217:5;6666:203:20;3531:401:5;;;;;;;;;;-1:-1:-1;3531:401:5;;;;;:::i;:::-;;:::i;:::-;;943:1117:16;;;;;;:::i;:::-;;:::i;288:43:3:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;288:43:3;;;;;1534:111:6;;;;;;;;;;-1:-1:-1;1621:10:6;:17;1534:111;;;8778:25:20;;;8766:2;8751:18;1534:111:6;8632:177:20;1532:86:7;;;;;;;;;;-1:-1:-1;1532:86:7;;;;;:::i;:::-;;:::i;1264:99:3:-;;;;;;;;;;-1:-1:-1;1341:15:3;;1264:99;;4857:330:5;;;;;;;;;;-1:-1:-1;4857:330:5;;;;;:::i;:::-;;:::i;2468:105:16:-;;;;;;;;;;-1:-1:-1;2468:105:16;;;;;:::i;:::-;-1:-1:-1;;;;;2554:12:16;2521:13;2554:12;;;:6;:12;;;;;;;2468:105;1210:253:6;;;;;;;;;;-1:-1:-1;1210:253:6;;;;;:::i;:::-;;:::i;1369:155:3:-;;;;;;;;;;-1:-1:-1;1480:9:3;1369:155;;5253:179:5;;;;;;;;;;-1:-1:-1;5253:179:5;;;;;:::i;:::-;;:::i;1717:230:6:-;;;;;;;;;;-1:-1:-1;1717:230:6;;;;;:::i;:::-;;:::i;2831:95:7:-;;;;;;;;;;;;;:::i;2185:235:5:-;;;;;;;;;;-1:-1:-1;2185:235:5;;;;;:::i;:::-;;:::i;1650:104:7:-;;;;;;;;;;-1:-1:-1;1650:104:7;;;;;:::i;:::-;;:::i;1785:82::-;;;;;;;;;;-1:-1:-1;1852:8:7;;1785:82;;1923:205:5;;;;;;;;;;-1:-1:-1;1923:205:5;;;;;:::i;:::-;;:::i;1599:92:17:-;;;;;;;;;;;;;:::i;1344:162:7:-;;;;;;;;;;-1:-1:-1;1344:162:7;;;;;:::i;:::-;;:::i;967:85:17:-;;;;;;;;;;-1:-1:-1;1039:6:17;;-1:-1:-1;;;;;1039:6:17;967:85;;1887:688:7;;;;;;:::i;:::-;;:::i;2644:102:5:-;;;;;;;;;;;;;:::i;4277:290::-;;;;;;;;;;-1:-1:-1;4277:290:5;;;;;:::i;:::-;;:::i;5498:320::-;;;;;;;;;;-1:-1:-1;5498:320:5;;;;;:::i;:::-;;:::i;3151:173:7:-;;;;;;;;;;-1:-1:-1;3151:173:7;;;;;:::i;:::-;;:::i;13000:121:5:-;;;;;;;;;;-1:-1:-1;13000:121:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;524:106:15:-;;;;;;;;;;;;;:::i;731:44:7:-;;;;;;;;;;-1:-1:-1;731:44:7;;;;;:::i;:::-;;;;;;;;;;;;;;3451:341;;;;;;;;;;-1:-1:-1;3451:341:7;;;;;:::i;:::-;;:::i;13129:135:5:-;;;;;;;;;;-1:-1:-1;13129:135:5;;;;;:::i;:::-;-1:-1:-1;;;;;13226:20:5;;;;13202:7;13226:20;;;:13;:20;;;;;;;;:24;;;;;;;;;13129:135;1840:189:17;;;;;;;;;;-1:-1:-1;1840:189:17;;;;;:::i;:::-;;:::i;742:93:15:-;;;;;;;;;;-1:-1:-1;742:93:15;;;;;:::i;:::-;;:::i;909:222:6:-;1011:4;-1:-1:-1;;;;;;1034:50:6;;-1:-1:-1;;;1034:50:6;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;909:222;-1:-1:-1;;909:222:6:o;2482:98:5:-;2536:13;2568:5;2561:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2482:98;:::o;3993:217::-;4069:7;7378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7378:16:5;4088:73;;;;-1:-1:-1;;;4088:73:5;;16245:2:20;4088:73:5;;;16227:21:20;16284:2;16264:18;;;16257:30;16323:34;16303:18;;;16296:62;-1:-1:-1;;;16374:18:20;;;16367:42;16426:19;;4088:73:5;;;;;;;;;-1:-1:-1;4179:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4179:24:5;;3993:217::o;3531:401::-;3611:13;3627:23;3642:7;3627:14;:23::i;:::-;3611:39;;3674:5;-1:-1:-1;;;;;3668:11:5;:2;-1:-1:-1;;;;;3668:11:5;;;3660:57;;;;-1:-1:-1;;;3660:57:5;;17831:2:20;3660:57:5;;;17813:21:20;17870:2;17850:18;;;17843:30;17909:34;17889:18;;;17882:62;-1:-1:-1;;;17960:18:20;;;17953:31;18001:19;;3660:57:5;17629:397:20;3660:57:5;3765:5;-1:-1:-1;;;;;3749:21:5;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3749:21:5;;:62;;;;3774:37;3791:5;3798:12;:10;:12::i;3774:37::-;3728:165;;;;-1:-1:-1;;;3728:165:5;;14638:2:20;3728:165:5;;;14620:21:20;14677:2;14657:18;;;14650:30;14716:34;14696:18;;;14689:62;14787:26;14767:18;;;14760:54;14831:19;;3728:165:5;14436:420:20;3728:165:5;3904:21;3913:2;3917:7;3904:8;:21::i;:::-;3601:331;3531:401;;:::o;943:1117:16:-;1194:148;;;1138:12;1194:148;;;;;-1:-1:-1;;;;;1231:19:16;;1162:29;1231:19;;;:6;:19;;;;;;;;;1194:148;;;;;;;;;;;1374:45;1238:11;1194:148;1402:4;1408;1414;1374:6;:45::i;:::-;1353:125;;;;-1:-1:-1;;;1353:125:16;;17429:2:20;1353:125:16;;;17411:21:20;17468:2;17448:18;;;17441:30;17507:34;17487:18;;;17480:62;-1:-1:-1;;;17558:18:20;;;17551:31;17599:19;;1353:125:16;17227:397:20;1353:125:16;-1:-1:-1;;;;;1564:19:16;;;;;;:6;:19;;;;;;:26;;1588:1;1564:23;:26::i;:::-;-1:-1:-1;;;;;1542:19:16;;;;;;:6;:19;;;;;;;:48;;;;1606:122;;;;;1549:11;;1676:10;;1701:17;;1606:122;:::i;:::-;;;;;;;;1836:12;1850:23;1885:4;-1:-1:-1;;;;;1877:18:16;1926:17;1945:11;1909:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1909:48:16;;;;;;;;;;1877:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1835:132;;;;1985:7;1977:48;;;;-1:-1:-1;;;1977:48:16;;12346:2:20;1977:48:16;;;12328:21:20;12385:2;12365:18;;;12358:30;12424;12404:18;;;12397:58;12472:18;;1977:48:16;12144:352:20;1977:48:16;2043:10;943:1117;-1:-1:-1;;;;;;;;943:1117:16:o;1532:86:7:-;1190:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1179:23:17;:7;1039:6;;-1:-1:-1;;;;;1039:6:17;;967:85;1179:7;-1:-1:-1;;;;;1179:23:17;;1171:68;;;;-1:-1:-1;;;1171:68:17;;;;;;;:::i;:::-;1595:8:7::1;:16:::0;1532:86::o;4857:330:5:-;5046:41;5065:12;:10;:12::i;:::-;5079:7;5046:18;:41::i;:::-;5038:103;;;;-1:-1:-1;;;5038:103:5;;;;;;;:::i;:::-;5152:28;5162:4;5168:2;5172:7;5152:9;:28::i;1210:253:6:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:6;;11108:2:20;1326:87:6;;;11090:21:20;11147:2;11127:18;;;11120:30;11186:34;11166:18;;;11159:62;-1:-1:-1;;;11237:18:20;;;11230:41;11288:19;;1326:87:6;10906:407:20;1326:87:6;-1:-1:-1;;;;;;1430:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;5253:179:5:-;5386:39;5403:4;5409:2;5413:7;5386:39;;;;;;;;;;;;:16;:39::i;1717:230:6:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:6;;18651:2:20;1811:95:6;;;18633:21:20;18690:2;18670:18;;;18663:30;18729:34;18709:18;;;18702:62;-1:-1:-1;;;18780:18:20;;;18773:42;18832:19;;1811:95:6;18449:408:20;1811:95:6;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;2831:95:7:-;2877:7;2902:17;:15;:17::i;:::-;2895:24;;2831:95;:::o;2185:235:5:-;2257:7;2292:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2292:16:5;2326:19;2318:73;;;;-1:-1:-1;;;2318:73:5;;15474:2:20;2318:73:5;;;15456:21:20;15513:2;15493:18;;;15486:30;15552:34;15532:18;;;15525:62;-1:-1:-1;;;15603:18:20;;;15596:39;15652:19;;2318:73:5;15272:405:20;1650:104:7;1190:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1179:23:17;:7;1039:6;;-1:-1:-1;;;;;1039:6:17;;967:85;1179:7;-1:-1:-1;;;;;1179:23:17;;1171:68;;;;-1:-1:-1;;;1171:68:17;;;;;;;:::i;:::-;1721:11:7::1;:26:::0;;-1:-1:-1;;;;;;1721:26:7::1;-1:-1:-1::0;;;;;1721:26:7;;;::::1;::::0;;;::::1;::::0;;1650:104::o;1923:205:5:-;1995:7;-1:-1:-1;;;;;2022:19:5;;2014:74;;;;-1:-1:-1;;;2014:74:5;;15063:2:20;2014:74:5;;;15045:21:20;15102:2;15082:18;;;15075:30;15141:34;15121:18;;;15114:62;-1:-1:-1;;;15192:18:20;;;15185:40;15242:19;;2014:74:5;14861:406:20;2014:74:5;-1:-1:-1;;;;;;2105:16:5;;;;;:9;:16;;;;;;;1923:205::o;1599:92:17:-;1190:12;:10;:12::i;:::-;-1:-1:-1;;;;;1179:23:17;:7;1039:6;;-1:-1:-1;;;;;1039:6:17;;967:85;1179:7;-1:-1:-1;;;;;1179:23:17;;1171:68;;;;-1:-1:-1;;;1171:68:17;;;;;;;:::i;:::-;1663:21:::1;1681:1;1663:9;:21::i;:::-;1599:92::o:0;1344:162:7:-;1190:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1179:23:17;:7;1039:6;;-1:-1:-1;;;;;1039:6:17;;967:85;1179:7;-1:-1:-1;;;;;1179:23:17;;1171:68;;;;-1:-1:-1;;;1171:68:17;;;;;;;:::i;:::-;1400:18:7::1;1421:17;:15;:17::i;:::-;1400:38;;1448:22;1454:3;1459:10;1448:5;:22::i;:::-;1480:19;:17;:19::i;:::-;1390:116;1344:162:::0;:::o;1887:688::-;1967:10;1957:21;;;;:9;:21;;;;;;1999:2;;1957:38;;1983:11;1957:25;:38::i;:::-;:44;;1949:98;;;;-1:-1:-1;;;1949:98:7;;10287:2:20;1949:98:7;;;10269:21:20;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:20;;;10409:39;10465:19;;1949:98:7;10085:405:20;1949:98:7;2065:8;;2094:9;;2065:25;;2078:11;2065:12;:25::i;:::-;:38;2057:78;;;;-1:-1:-1;;;2057:78:7;;19064:2:20;2057:78:7;;;19046:21:20;19103:2;19083:18;;;19076:30;19142:29;19122:18;;;19115:57;19189:18;;2057:78:7;18862:351:20;2057:78:7;2186:4;2153:30;1621:10:6;:17;;1534:111;2153:30:7;:37;2145:92;;;;-1:-1:-1;;;2145:92:7;;10697:2:20;2145:92:7;;;10679:21:20;10736:2;10716:18;;;10709:30;10775:34;10755:18;;;10748:62;-1:-1:-1;;;10826:18:20;;;10819:40;10876:19;;2145:92:7;10495:406:20;2145:92:7;2261:9;2256:194;2279:11;2276:1;:14;2256:194;;;2306:36;2312:10;2324:17;:15;:17::i;:::-;2306:5;:36::i;:::-;2352:19;:17;:19::i;:::-;2424:10;2414:21;;;;:9;:21;;;;;;:25;;2438:1;2414:25;:::i;:::-;2400:10;2390:21;;;;:9;:21;;;;;:49;2292:3;;;;:::i;:::-;;;;2256:194;;;-1:-1:-1;2519:11:7;;2541:26;;-1:-1:-1;;;;;2519:11:7;;;;;;2557:9;2541:26;;;;;2486:22;2541:26;2486:22;2541:26;2557:9;2519:11;2541:26;;;;;;;;;;;;;;;;;;;2644:102:5;2700:13;2732:7;2725:14;;;;;:::i;4277:290::-;4391:12;:10;:12::i;:::-;-1:-1:-1;;;;;4379:24:5;:8;-1:-1:-1;;;;;4379:24:5;;;4371:62;;;;-1:-1:-1;;;4371:62:5;;13465:2:20;4371:62:5;;;13447:21:20;13504:2;13484:18;;;13477:30;13543:27;13523:18;;;13516:55;13588:18;;4371:62:5;13263:349:20;4371:62:5;4489:8;4444:18;:32;4463:12;:10;:12::i;:::-;-1:-1:-1;;;;;4444:32:5;;;;;;;;;;;;;;;;;-1:-1:-1;4444:32:5;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4444:53:5;;;;;;;;;;;4527:12;:10;:12::i;:::-;-1:-1:-1;;;;;4512:48:5;;4551:8;4512:48;;;;8605:14:20;8598:22;8580:41;;8568:2;8553:18;;8440:187;4512:48:5;;;;;;;;4277:290;;:::o;5498:320::-;5667:41;5686:12;:10;:12::i;:::-;5700:7;5667:18;:41::i;:::-;5659:103;;;;-1:-1:-1;;;5659:103:5;;;;;;;:::i;:::-;5772:39;5786:4;5792:2;5796:7;5805:5;5772:13;:39::i;:::-;5498:320;;;;:::o;3151:173:7:-;3217:13;3273:14;:12;:14::i;:::-;3289:26;3306:8;3289:16;:26::i;:::-;3256:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3242:75;;3151:173;;;:::o;13000:121:5:-;-1:-1:-1;;;;;13091:16:5;;;;;;:9;:16;;;;;;;;;13084:23;;;;;;;;;;;;;;;;;13057:16;;13084:23;;;13091:16;13084:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13000:121;;;:::o;524:106:15:-;578:13;610;603:20;;;;;:::i;3451:341:7:-;3659:20;;3572:4;;-1:-1:-1;;;;;3659:32:7;;;:20;;:32;3655:74;;;-1:-1:-1;3714:4:7;3707:11;;3655:74;-1:-1:-1;;;;;4753:25:5;;;4730:4;4753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;3746:39:7;3739:46;3451:341;-1:-1:-1;;;3451:341:7:o;1840:189:17:-;1190:12;:10;:12::i;:::-;-1:-1:-1;;;;;1179:23:17;:7;1039:6;;-1:-1:-1;;;;;1039:6:17;;967:85;1179:7;-1:-1:-1;;;;;1179:23:17;;1171:68;;;;-1:-1:-1;;;1171:68:17;;;;;;;:::i;:::-;-1:-1:-1;;;;;1928:22:17;::::1;1920:73;;;::::0;-1:-1:-1;;;1920:73:17;;11939:2:20;1920:73:17::1;::::0;::::1;11921:21:20::0;11978:2;11958:18;;;11951:30;12017:34;11997:18;;;11990:62;-1:-1:-1;;;12068:18:20;;;12061:36;12114:19;;1920:73:17::1;11737:402:20::0;1920:73:17::1;2003:19;2013:8;2003:9;:19::i;:::-;1840:189:::0;:::o;742:93:15:-;1190:12:17;:10;:12::i;:::-;-1:-1:-1;;;;;1179:23:17;:7;1039:6;;-1:-1:-1;;;;;1039:6:17;;967:85;1179:7;-1:-1:-1;;;;;1179:23:17;;1171:68;;;;-1:-1:-1;;;1171:68:17;;;;;;;:::i;:::-;808:20:15;;::::1;::::0;:13:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;95:631:2:-:0;163:22;205:10;227:4;205:27;201:496;;;248:18;269:8;;248:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;307:8:2;514:17;508:24;-1:-1:-1;;;;;483:131:2;;-1:-1:-1;201:496:2;;-1:-1:-1;201:496:2;;-1:-1:-1;675:10:2;201:496;95:631;:::o;1564:300:5:-;1666:4;-1:-1:-1;;;;;;1701:40:5;;-1:-1:-1;;;1701:40:5;;:104;;-1:-1:-1;;;;;;;1757:48:5;;-1:-1:-1;;;1757:48:5;1701:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:4;;;1821:36:5;763:155:4;3931:154:7;4017:14;4054:24;:22;:24::i;11478:171:5:-;11552:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11552:29:5;-1:-1:-1;;;;;11552:29:5;;;;;;;;:24;;11605:23;11552:24;11605:14;:23::i;:::-;-1:-1:-1;;;;;11596:46:5;;;;;;;;;;;11478:171;;:::o;2579:470:16:-;2751:4;-1:-1:-1;;;;;2775:20:16;;2767:70;;;;-1:-1:-1;;;2767:70:16;;14232:2:20;2767:70:16;;;14214:21:20;14271:2;14251:18;;;14244:30;14310:34;14290:18;;;14283:62;-1:-1:-1;;;14361:18:20;;;14354:35;14406:19;;2767:70:16;14030:401:20;2767:70:16;2888:154;2915:47;2934:27;2954:6;2934:19;:27::i;:::-;2915:18;:47::i;:::-;2888:154;;;;;;;;;;;;9463:25:20;;;;9536:4;9524:17;;9504:18;;;9497:45;9558:18;;;9551:34;;;9601:18;;;9594:34;;;9435:19;;2888:154:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2866:176:16;:6;-1:-1:-1;;;;;2866:176:16;;2847:195;;2579:470;;;;;;;:::o;2672:96:18:-;2730:7;2756:5;2760:1;2756;:5;:::i;7573:344:5:-;7666:4;7378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7378:16:5;7682:73;;;;-1:-1:-1;;;7682:73:5;;13819:2:20;7682:73:5;;;13801:21:20;13858:2;13838:18;;;13831:30;13897:34;13877:18;;;13870:62;-1:-1:-1;;;13948:18:20;;;13941:42;14000:19;;7682:73:5;13617:408:20;7682:73:5;7765:13;7781:23;7796:7;7781:14;:23::i;:::-;7765:39;;7833:5;-1:-1:-1;;;;;7822:16:5;:7;-1:-1:-1;;;;;7822:16:5;;:51;;;;7866:7;-1:-1:-1;;;;;7842:31:5;:20;7854:7;7842:11;:20::i;:::-;-1:-1:-1;;;;;7842:31:5;;7822:51;:87;;;;7877:32;7894:5;7901:7;7877:16;:32::i;:::-;7814:96;7573:344;-1:-1:-1;;;;7573:344:5:o;10563:804::-;10717:4;-1:-1:-1;;;;;10690:31:5;:23;10705:7;10690:14;:23::i;:::-;-1:-1:-1;;;;;10690:31:5;;10682:85;;;;-1:-1:-1;;;10682:85:5;;17019:2:20;10682:85:5;;;17001:21:20;17058:2;17038:18;;;17031:30;17097:34;17077:18;;;17070:62;-1:-1:-1;;;17148:18:20;;;17141:39;17197:19;;10682:85:5;16817:405:20;10682:85:5;-1:-1:-1;;;;;10785:16:5;;10777:65;;;;-1:-1:-1;;;10777:65:5;;13060:2:20;10777:65:5;;;13042:21:20;13099:2;13079:18;;;13072:30;13138:34;13118:18;;;13111:62;-1:-1:-1;;;13189:18:20;;;13182:34;13233:19;;10777:65:5;12858:400:20;10777:65:5;10853:39;10874:4;10880:2;10884:7;10853:20;:39::i;:::-;10954:29;10971:1;10975:7;10954:8;:29::i;:::-;-1:-1:-1;;;;;10994:15:5;;;;;;:9;:15;;;;;:20;;11013:1;;10994:15;:20;;11013:1;;10994:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11024:13:5;;;;;;:9;:13;;;;;:18;;11041:1;;11024:13;:18;;11041:1;;11024:18;:::i;:::-;;;;-1:-1:-1;;11052:16:5;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;11052:21:5;-1:-1:-1;;;;;11052:21:5;;;;;11106:29;11121:4;11052:16;11106:14;:29::i;:::-;11101:103;;;11151:29;11166:4;11172:7;11151:14;:29::i;:::-;11227:27;11242:2;11246:7;11227:14;:27::i;:::-;11222:96;;11270:24;11282:2;11286:7;11270:11;:24::i;:::-;11352:7;11348:2;-1:-1:-1;;;;;11333:27:5;11342:4;-1:-1:-1;;;;;11333:27:5;;;;;;;;;;;10563:804;;;:::o;2717:104:7:-;2792:15;;2766:7;;2792:22;;2812:1;2792:19;:22::i;2035:169:17:-;2109:6;;;-1:-1:-1;;;;;2125:17:17;;;-1:-1:-1;;;;;;2125:17:17;;;;;;;2157:40;;2109:6;;;2125:17;2109:6;;2157:40;;2090:16;;2157:40;2080:124;2035:169;:::o;9209:465:5:-;-1:-1:-1;;;;;9288:16:5;;9280:61;;;;-1:-1:-1;;;9280:61:5;;15884:2:20;9280:61:5;;;15866:21:20;;;15903:18;;;15896:30;15962:34;15942:18;;;15935:62;16014:18;;9280:61:5;15682:356:20;9280:61:5;7355:4;7378:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7378:16:5;:30;9351:58;;;;-1:-1:-1;;;9351:58:5;;12703:2:20;9351:58:5;;;12685:21:20;12742:2;12722:18;;;12715:30;12781;12761:18;;;12754:58;12829:18;;9351:58:5;12501:352:20;9351:58:5;9420:45;9449:1;9453:2;9457:7;9420:20;:45::i;:::-;-1:-1:-1;;;;;9476:13:5;;;;;;:9;:13;;;;;:18;;9493:1;;9476:13;:18;;9493:1;;9476:18;:::i;:::-;;;;-1:-1:-1;;9504:16:5;;;;:7;:16;;;;;:21;;-1:-1:-1;;;;;;9504:21:5;-1:-1:-1;;;;;9504:21:5;;;;;9541:27;9504:21;:16;9541:14;:27::i;:::-;9536:83;;9584:24;9596:2;9600:7;9584:11;:24::i;:::-;9634:33;;9659:7;;-1:-1:-1;;;;;9634:33:5;;;9651:1;;9634:33;;9651:1;;9634:33;9209:465;;:::o;3000:71:7:-;3047:15;:17;;;:15;:17;;;:::i;:::-;;;;;;3000:71::o;3382:96:18:-;3440:7;3466:5;3470:1;3466;:5;:::i;6680:307:5:-;6831:28;6841:4;6847:2;6851:7;6831:9;:28::i;:::-;6877:48;6900:4;6906:2;6910:7;6919:5;6877:22;:48::i;:::-;6869:111;;;;-1:-1:-1;;;6869:111:5;;;;;;;:::i;275:703:19:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:19;;;;;;;;;;;;-1:-1:-1;;;574:10:19;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:19;;-1:-1:-1;720:2:19;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:19;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:19;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:19;;;;;;;;-1:-1:-1;919:11:19;928:2;919:11;;:::i;:::-;;;791:150;;2066:396:16;2173:7;301:98;;;;;;;;;;;;;;;;;282:123;;;;;;;2321:12;;2355:11;;;;2398:24;;;;;2388:35;;;;;;2242:199;;;;;9045:25:20;;;9101:2;9086:18;;9079:34;;;;-1:-1:-1;;;;;9149:32:20;9144:2;9129:18;;9122:60;9213:2;9198:18;;9191:34;9032:3;9017:19;;8814:417;2242:199:16;;;;;;;;;;;;;2215:240;;;;;;2196:259;;2066:396;;;:::o;1884:249:3:-;1980:7;2078:20;1341:15;;;1264:99;2078:20;2049:63;;-1:-1:-1;;;2049:63:3;;;6527:27:20;6570:11;;;6563:27;;;;6606:12;;;6599:28;;;6643:12;;2049:63:3;6269:392:20;2543:572:6;-1:-1:-1;;;;;2742:18:6;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:6;:4;-1:-1:-1;;;;;2837:10:6;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:6;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:6;:2;-1:-1:-1;;;;;3032:10:6;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;14015:238:5:-;-1:-1:-1;;;;;14107:16:5;;14089:4;14107:16;;;:9;:16;;;;;:23;14103:46;;-1:-1:-1;14144:5:5;14137:12;;14103:46;-1:-1:-1;;;;;14173:20:5;;14157:13;14173:20;;;:13;:20;;;;;;;;:24;;;;;;;;;14218:16;;;:9;:16;;;;;:23;;14173:24;;14218:23;;;;;;:::i;:::-;;;;;;;;;14212:2;:29;14205:36;;;14015:238;;;;:::o;13272:555::-;-1:-1:-1;;;;;13362:16:5;;13342:17;13362:16;;;:9;:16;;;;;:23;:27;;13388:1;;13362:27;:::i;:::-;-1:-1:-1;;;;;13416:16:5;;13399:14;13416:16;;;:9;:16;;;;;:27;;13342:47;;-1:-1:-1;13399:14:5;;13342:47;;13416:27;;;;;;:::i;:::-;;;;;;;;;13399:44;;13472:6;13466:2;:12;13462:361;;;-1:-1:-1;;;;;13494:20:5;;13521:1;13494:20;;;:13;:20;;;;;;;;:24;;;;;;;;:28;;;13536:16;;;:9;:16;;;:22;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13462:361;;;-1:-1:-1;;;;;13609:20:5;;13589:17;13609:20;;;:13;:20;;;;;;;;:24;;;;;;;;;;13647:28;;;;13690:16;;;:9;:16;;;;;:27;;13720:6;;13690:16;13609:24;;13690:27;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;-1:-1:-1;;;;;13740:20:5;;;;;:13;:20;;;;;;:28;;;;;;;;:40;;;13794:16;;;:9;:16;;;;:22;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13575:248;13332:495;;13272:555;;:::o;13833:178::-;-1:-1:-1;;;;;13912:16:5;;;13898:11;13912:16;;;:9;:16;;;;;;;;:23;;13943:13;:20;;;;;:24;;;;;;;;:30;;;13981:16;;;:25;;;;;;;;;;;;;13833:178::o;12202:778::-;12352:4;-1:-1:-1;;;;;12372:13:5;;1034:20:0;1080:8;12368:606:5;;12423:2;-1:-1:-1;;;;;12407:36:5;;12444:12;:10;:12::i;:::-;12458:4;12464:7;12473:5;12407:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12407:72:5;;;;;;;;-1:-1:-1;;12407:72:5;;;;;;;;;;;;:::i;:::-;;;12403:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12646:13:5;;12642:266;;12688:60;;-1:-1:-1;;;12688:60:5;;;;;;;:::i;12642:266::-;12860:6;12854:13;12845:6;12841:2;12837:15;12830:38;12403:519;-1:-1:-1;;;;;;12529:51:5;-1:-1:-1;;;12529:51:5;;-1:-1:-1;12522:58:5;;12368:606;-1:-1:-1;12959:4:5;12202:778;;;;;;:::o;4599:970:6:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:6;;;5069:323;;-1:-1:-1;;;;;5139:18:6;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:6;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:6;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:6;;6106:46;;6551:26;;;;;;:::i;:::-;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:20;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:20;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:20;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:220::-;870:5;923:3;916:4;908:6;904:17;900:27;890:55;;941:1;938;931:12;890:55;963:79;1038:3;1029:6;1016:20;1009:4;1001:6;997:17;963:79;:::i;1053:186::-;1112:6;1165:2;1153:9;1144:7;1140:23;1136:32;1133:52;;;1181:1;1178;1171:12;1133:52;1204:29;1223:9;1204:29;:::i;1244:260::-;1312:6;1320;1373:2;1361:9;1352:7;1348:23;1344:32;1341:52;;;1389:1;1386;1379:12;1341:52;1412:29;1431:9;1412:29;:::i;:::-;1402:39;;1460:38;1494:2;1483:9;1479:18;1460:38;:::i;:::-;1450:48;;1244:260;;;;;:::o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;1842:537::-;1937:6;1945;1953;1961;2014:3;2002:9;1993:7;1989:23;1985:33;1982:53;;;2031:1;2028;2021:12;1982:53;2054:29;2073:9;2054:29;:::i;:::-;2044:39;;2102:38;2136:2;2125:9;2121:18;2102:38;:::i;:::-;2092:48;;2187:2;2176:9;2172:18;2159:32;2149:42;;2242:2;2231:9;2227:18;2214:32;2269:18;2261:6;2258:30;2255:50;;;2301:1;2298;2291:12;2255:50;2324:49;2365:7;2356:6;2345:9;2341:22;2324:49;:::i;:::-;2314:59;;;1842:537;;;;;;;:::o;2384:347::-;2449:6;2457;2510:2;2498:9;2489:7;2485:23;2481:32;2478:52;;;2526:1;2523;2516:12;2478:52;2549:29;2568:9;2549:29;:::i;:::-;2539:39;;2628:2;2617:9;2613:18;2600:32;2675:5;2668:13;2661:21;2654:5;2651:32;2641:60;;2697:1;2694;2687:12;2641:60;2720:5;2710:15;;;2384:347;;;;;:::o;2736:689::-;2838:6;2846;2854;2862;2870;2923:3;2911:9;2902:7;2898:23;2894:33;2891:53;;;2940:1;2937;2930:12;2891:53;2963:29;2982:9;2963:29;:::i;:::-;2953:39;;3043:2;3032:9;3028:18;3015:32;3070:18;3062:6;3059:30;3056:50;;;3102:1;3099;3092:12;3056:50;3125:49;3166:7;3157:6;3146:9;3142:22;3125:49;:::i;:::-;3115:59;;;3221:2;3210:9;3206:18;3193:32;3183:42;;3272:2;3261:9;3257:18;3244:32;3234:42;;3326:3;3315:9;3311:19;3298:33;3371:4;3364:5;3360:16;3353:5;3350:27;3340:55;;3391:1;3388;3381:12;3340:55;3414:5;3404:15;;;2736:689;;;;;;;;:::o;3430:254::-;3498:6;3506;3559:2;3547:9;3538:7;3534:23;3530:32;3527:52;;;3575:1;3572;3565:12;3527:52;3598:29;3617:9;3598:29;:::i;:::-;3588:39;3674:2;3659:18;;;;3646:32;;-1:-1:-1;;;3430:254:20:o;3689:245::-;3747:6;3800:2;3788:9;3779:7;3775:23;3771:32;3768:52;;;3816:1;3813;3806:12;3768:52;3855:9;3842:23;3874:30;3898:5;3874:30;:::i;3939:249::-;4008:6;4061:2;4049:9;4040:7;4036:23;4032:32;4029:52;;;4077:1;4074;4067:12;4029:52;4109:9;4103:16;4128:30;4152:5;4128:30;:::i;4193:450::-;4262:6;4315:2;4303:9;4294:7;4290:23;4286:32;4283:52;;;4331:1;4328;4321:12;4283:52;4371:9;4358:23;4404:18;4396:6;4393:30;4390:50;;;4436:1;4433;4426:12;4390:50;4459:22;;4512:4;4504:13;;4500:27;-1:-1:-1;4490:55:20;;4541:1;4538;4531:12;4490:55;4564:73;4629:7;4624:2;4611:16;4606:2;4602;4598:11;4564:73;:::i;4648:180::-;4707:6;4760:2;4748:9;4739:7;4735:23;4731:32;4728:52;;;4776:1;4773;4766:12;4728:52;-1:-1:-1;4799:23:20;;4648:180;-1:-1:-1;4648:180:20:o;4833:257::-;4874:3;4912:5;4906:12;4939:6;4934:3;4927:19;4955:63;5011:6;5004:4;4999:3;4995:14;4988:4;4981:5;4977:16;4955:63;:::i;:::-;5072:2;5051:15;-1:-1:-1;;5047:29:20;5038:39;;;;5079:4;5034:50;;4833:257;-1:-1:-1;;4833:257:20:o;5095:274::-;5224:3;5262:6;5256:13;5278:53;5324:6;5319:3;5312:4;5304:6;5300:17;5278:53;:::i;:::-;5347:16;;;;;5095:274;-1:-1:-1;;5095:274:20:o;5374:415::-;5531:3;5569:6;5563:13;5585:53;5631:6;5626:3;5619:4;5611:6;5607:17;5585:53;:::i;:::-;5707:2;5703:15;;;;-1:-1:-1;;5699:53:20;5660:16;;;;5685:68;;;5780:2;5769:14;;5374:415;-1:-1:-1;;5374:415:20:o;5794:470::-;5973:3;6011:6;6005:13;6027:53;6073:6;6068:3;6061:4;6053:6;6049:17;6027:53;:::i;:::-;6143:13;;6102:16;;;;6165:57;6143:13;6102:16;6199:4;6187:17;;6165:57;:::i;:::-;6238:20;;5794:470;-1:-1:-1;;;;5794:470:20:o;6874:431::-;-1:-1:-1;;;;;7131:15:20;;;7113:34;;7183:15;;7178:2;7163:18;;7156:43;7235:2;7230;7215:18;;7208:30;;;7056:4;;7255:44;;7280:18;;7272:6;7255:44;:::i;:::-;7247:52;6874:431;-1:-1:-1;;;;;6874:431:20:o;7310:488::-;-1:-1:-1;;;;;7579:15:20;;;7561:34;;7631:15;;7626:2;7611:18;;7604:43;7678:2;7663:18;;7656:34;;;7726:3;7721:2;7706:18;;7699:31;;;7504:4;;7747:45;;7772:19;;7764:6;7747:45;:::i;:::-;7739:53;7310:488;-1:-1:-1;;;;;;7310:488:20:o;7803:632::-;7974:2;8026:21;;;8096:13;;7999:18;;;8118:22;;;7945:4;;7974:2;8197:15;;;;8171:2;8156:18;;;7945:4;8240:169;8254:6;8251:1;8248:13;8240:169;;;8315:13;;8303:26;;8384:15;;;;8349:12;;;;8276:1;8269:9;8240:169;;;-1:-1:-1;8426:3:20;;7803:632;-1:-1:-1;;;;;;7803:632:20:o;9639:217::-;9786:2;9775:9;9768:21;9749:4;9806:44;9846:2;9835:9;9831:18;9823:6;9806:44;:::i;11318:414::-;11520:2;11502:21;;;11559:2;11539:18;;;11532:30;11598:34;11593:2;11578:18;;11571:62;-1:-1:-1;;;11664:2:20;11649:18;;11642:48;11722:3;11707:19;;11318:414::o;16456:356::-;16658:2;16640:21;;;16677:18;;;16670:30;16736:34;16731:2;16716:18;;16709:62;16803:2;16788:18;;16456:356::o;18031:413::-;18233:2;18215:21;;;18272:2;18252:18;;;18245:30;18311:34;18306:2;18291:18;;18284:62;-1:-1:-1;;;18377:2:20;18362:18;;18355:47;18434:3;18419:19;;18031:413::o;19400:128::-;19440:3;19471:1;19467:6;19464:1;19461:13;19458:39;;;19477:18;;:::i;:::-;-1:-1:-1;19513:9:20;;19400:128::o;19533:120::-;19573:1;19599;19589:35;;19604:18;;:::i;:::-;-1:-1:-1;19638:9:20;;19533:120::o;19658:168::-;19698:7;19764:1;19760;19756:6;19752:14;19749:1;19746:21;19741:1;19734:9;19727:17;19723:45;19720:71;;;19771:18;;:::i;:::-;-1:-1:-1;19811:9:20;;19658:168::o;19831:125::-;19871:4;19899:1;19896;19893:8;19890:34;;;19904:18;;:::i;:::-;-1:-1:-1;19941:9:20;;19831:125::o;19961:258::-;20033:1;20043:113;20057:6;20054:1;20051:13;20043:113;;;20133:11;;;20127:18;20114:11;;;20107:39;20079:2;20072:10;20043:113;;;20174:6;20171:1;20168:13;20165:48;;;-1:-1:-1;;20209:1:20;20191:16;;20184:27;19961:258::o;20224:380::-;20303:1;20299:12;;;;20346;;;20367:61;;20421:4;20413:6;20409:17;20399:27;;20367:61;20474:2;20466:6;20463:14;20443:18;20440:38;20437:161;;;20520:10;20515:3;20511:20;20508:1;20501:31;20555:4;20552:1;20545:15;20583:4;20580:1;20573:15;20437:161;;20224:380;;;:::o;20609:135::-;20648:3;-1:-1:-1;;20669:17:20;;20666:43;;;20689:18;;:::i;:::-;-1:-1:-1;20736:1:20;20725:13;;20609:135::o;20749:112::-;20781:1;20807;20797:35;;20812:18;;:::i;:::-;-1:-1:-1;20846:9:20;;20749:112::o;20866:127::-;20927:10;20922:3;20918:20;20915:1;20908:31;20958:4;20955:1;20948:15;20982:4;20979:1;20972:15;20998:127;21059:10;21054:3;21050:20;21047:1;21040:31;21090:4;21087:1;21080:15;21114:4;21111:1;21104:15;21130:127;21191:10;21186:3;21182:20;21179:1;21172:31;21222:4;21219:1;21212:15;21246:4;21243:1;21236:15;21262:127;21323:10;21318:3;21314:20;21311:1;21304:31;21354:4;21351:1;21344:15;21378:4;21375:1;21368:15;21394:127;21455:10;21450:3;21446:20;21443:1;21436:31;21486:4;21483:1;21476:15;21510:4;21507:1;21500:15;21526:131;-1:-1:-1;;;;;;21600:32:20;;21590:43;;21580:71;;21647:1;21644;21637:12

Swarm Source

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