ETH Price: $2,473.45 (-2.07%)

Token

Doolittles (DOOLITTLES)
 

Overview

Max Total Supply

777 DOOLITTLES

Holders

310

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rttv.eth
Balance
4 DOOLITTLES
0xadaae0cf49b422fb24cb988d669e77f4e015608c
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:
Doolittles

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 20000 runs

Other Settings:
default evmVersion
File 1 of 18 : Doolittles.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./CollaborativeOwnable.sol";
import "./ERC721Enumerable.sol";
import "./MerkleProof.sol";
import "./ProxyRegistry.sol";
import "./ReentrancyGuard.sol";
import "./SafeMath.sol";
import "./Strings.sol";

contract Doolittles is ERC721Enumerable, CollaborativeOwnable, ReentrancyGuard {
  using SafeMath for uint256;
  using Address for address;
  using Strings for uint256;

  uint256 public maxSupply = 4444;

  string public baseURI = "";
  address public proxyRegistryAddress = address(0);
  
  uint256 public mintPrice = 25000000000000000;
  uint16 public mintLimit = 5;
  bool public mintIsActive = false;

  mapping(address => uint16) public whitelistMinted;
  bytes32 public whitelistMerkleRoot;
  uint256 public whitelistMintPrice = 25000000000000000;
  uint16 public whitelistMintLimit = 2;
  bool public whitelistMintIsActive = false;

  constructor(address _proxyRegistryAddress) ERC721("Doolittles", "DOOLITTLES") {
    proxyRegistryAddress = _proxyRegistryAddress;
  }

  //
  // Public / External
  //

  function remainingForMint() public view returns (uint256) {
    uint256 ts = totalSupply();
    uint256 available = maxSupply.sub(ts);
    return available;
  }

  function mint(uint16 quantity) external payable nonReentrant {
    require(mintIsActive);
    require(quantity > 0 && quantity <= mintLimit && quantity <= remainingForMint());
    require(msg.value >= mintPrice.mul(quantity));

    uint256 ts = totalSupply();

    for (uint16 i = 0; i < quantity; i++) {
      _safeMint(_msgSender(), ts + i);
    }
  }

  function whitelistMint(bytes32[] calldata merkleProof, uint16 quantity) external payable nonReentrant {
    require(whitelistMintIsActive);
    require(quantity > 0 && quantity <= whitelistMintLimit && quantity <= remainingForMint());
    require(msg.value >= whitelistMintPrice.mul(quantity));
    
    uint16 alreadyMinted = whitelistMinted[_msgSender()];
    require(alreadyMinted < whitelistMintLimit);

    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(merkleProof, whitelistMerkleRoot, leaf), "wl");

    uint256 ts = totalSupply();

    for (uint16 i = 0; i < quantity; i++) {
      _safeMint(_msgSender(), ts + i);
    }

    whitelistMinted[_msgSender()] = alreadyMinted + quantity;
  }

  // Override ERC721
  function _baseURI() internal view override returns (string memory) {
    return baseURI;
  }

  // Override ERC721
  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId));
        
    string memory __baseURI = _baseURI();
    return bytes(__baseURI).length > 0 ? string(abi.encodePacked(__baseURI, tokenId.toString(), ".json")) : '.json';
  }

  // Override ERC721
  function isApprovedForAll(address owner, address operator) override public view returns (bool) {
    if (address(proxyRegistryAddress) != address(0)) {
      ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
      if (address(proxyRegistry.proxies(owner)) == operator) {
        return true;
      }
    }
    return super.isApprovedForAll(owner, operator);
  }
  
  //
  // Collaborator Access
  //

  function setBaseURI(string memory uri) external onlyCollaborator {
    baseURI = uri;
  }

  function reduceMaxSupply(uint256 newMaxSupply) external onlyCollaborator {
    require(newMaxSupply >= 0 && newMaxSupply < maxSupply);
    require(newMaxSupply >= totalSupply());
    maxSupply = newMaxSupply;
  }

  function reduceMintPrice(uint256 newPrice) external onlyCollaborator {
    require(newPrice >= 0 && newPrice < mintPrice);
    mintPrice = newPrice;
  }

  function reduceWhitelistMintPrice(uint256 newPrice) external onlyCollaborator {
    require(newPrice >= 0 && newPrice < whitelistMintPrice);
    whitelistMintPrice = newPrice;
  }

  function airDrop(address to, uint16 quantity) external onlyCollaborator {
    require(to != address(0));
    require(quantity > 0);
    require(quantity <= remainingForMint());

    uint256 ts = totalSupply();

    for (uint16 i = 0; i < quantity; i++) {
      _safeMint(to, ts + i);
    }
  }

  function setMintLimit(uint16 newLimit) external onlyCollaborator {
    require(newLimit > 0);
    mintLimit = newLimit;
  }

  function setMintIsActive(bool active) external onlyCollaborator {
    mintIsActive = active;
  }

  function setWhitelistMintIsActive(bool active) external onlyCollaborator {
    whitelistMintIsActive = active;
  }

  function setWhitelistMerkleRoot(bytes32 newRoot) external onlyCollaborator {
    whitelistMerkleRoot = newRoot;
  }

  function setProxyRegistryAddress(address prAddress) external onlyCollaborator {
    proxyRegistryAddress = prAddress;
  }

  function withdraw() external onlyCollaborator nonReentrant {
    uint256 balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

File 2 of 18 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

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

File 3 of 18 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

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 generally not needed starting with Solidity 0.8, since 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 4 of 18 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 18 : ProxyRegistry.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract OwnableDelegateProxy {}

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

File 6 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 7 of 18 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 8 of 18 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

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 9 of 18 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)

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 10 of 18 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

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 11 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

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 12 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

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 13 of 18 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

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));
        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());
        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 14 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0));
        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));
        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));

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

        require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()));

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId));
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId));
        _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));
        _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));
    }

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

    /**
     * @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));
        require(!_exists(tokenId));

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator);
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

File 15 of 18 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

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 16 of 18 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

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 17 of 18 : CollaborativeOwnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./Address.sol";

abstract contract CollaborativeOwnable is Ownable {
  using Address for address;

  mapping(address => bool) private _collaborators;
  uint256 private _collaboratorCount;
  
  constructor() {
    
  }

  function isCollaborator(address collaboratorAddress) public view virtual returns (bool) {
    return _collaborators[collaboratorAddress];
  }

  modifier onlyCollaborator() {
      require(owner() == _msgSender() || _collaborators[_msgSender()], "CO1");
      _;
  }

  function addCollaborator(address collaboratorAddress) public onlyCollaborator {
    require(collaboratorAddress != address(0), "CO2");
    require(!_collaborators[collaboratorAddress], "CO3");

    _collaborators[collaboratorAddress] = true;
    _collaboratorCount++;
  }

  function removeCollaborator(address collaboratorAddress) public onlyCollaborator {
    require(collaboratorAddress != address(0), "CO4");
    require(_collaborators[collaboratorAddress], "CO4");
    require(_collaboratorCount > 1, "CO4");
    
    _collaborators[collaboratorAddress] = false;
    _collaboratorCount--;
  }
}

File 18 of 18 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 20000
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"collaboratorAddress","type":"address"}],"name":"addCollaborator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"airDrop","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collaboratorAddress","type":"address"}],"name":"isCollaborator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"reduceMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"reduceMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"reduceWhitelistMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"remainingForMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"collaboratorAddress","type":"address"}],"name":"removeCollaborator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setMintIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newLimit","type":"uint16"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"prAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"active","type":"bool"}],"name":"setWhitelistMintIsActive","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":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint16","name":"quantity","type":"uint16"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintLimit","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261115c600e5560405180602001604052806000815250600f9080519060200190620000319291906200030d565b506000601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506658d15e176280006011556005601260006101000a81548161ffff021916908361ffff1602179055506000601260026101000a81548160ff0219169083151502179055506658d15e176280006015556002601660006101000a81548161ffff021916908361ffff1602179055506000601660026101000a81548160ff0219169083151502179055503480156200010957600080fd5b50604051620054f4380380620054f483398181016040528101906200012f919062000427565b6040518060400160405280600a81526020017f446f6f6c6974746c6573000000000000000000000000000000000000000000008152506040518060400160405280600a81526020017f444f4f4c4954544c4553000000000000000000000000000000000000000000008152508160009080519060200190620001b39291906200030d565b508060019080519060200190620001cc9291906200030d565b505050620001ef620001e36200023f60201b60201c565b6200024760201b60201c565b6001600d8190555080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620004be565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200031b9062000488565b90600052602060002090601f0160209004810192826200033f57600085556200038b565b82601f106200035a57805160ff19168380011785556200038b565b828001600101855582156200038b579182015b828111156200038a5782518255916020019190600101906200036d565b5b5090506200039a91906200039e565b5090565b5b80821115620003b95760008160009055506001016200039f565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003ef82620003c2565b9050919050565b6200040181620003e2565b81146200040d57600080fd5b50565b6000815190506200042181620003f6565b92915050565b60006020828403121562000440576200043f620003bd565b5b6000620004508482850162000410565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004a157607f821691505b60208210811415620004b857620004b762000459565b5b50919050565b61502680620004ce6000396000f3fe6080604052600436106103085760003560e01c8063791d04db1161019a578063b88d4fde116100e1578063d26ea6c01161008a578063ddd1783a11610064578063ddd1783a14610aab578063e985e9c514610ad6578063f2fde38b14610b1357610308565b8063d26ea6c014610a2e578063d5abeb0114610a57578063d5fe011414610a8257610308565b8063ccdbe6a6116100bb578063ccdbe6a6146109b1578063cd7c0326146109da578063d19653fb14610a0557610308565b8063b88d4fde14610922578063bd32fb661461094b578063c87b56dd1461097457610308565b8063996517cf11610143578063a49a7a201161011d578063a49a7a20146108a3578063aa98e0c6146108ce578063b8219159146108f957610308565b8063996517cf146108265780639d91a6c514610851578063a22cb4651461087a57610308565b8063938da77111610174578063938da771146107a257806395d89b41146107be57806398a8cffe146107e957610308565b8063791d04db14610723578063863a8e9a1461074e5780638da5cb5b1461077757610308565b80633ccfd60b1161025e5780636817c76c1161020757806370a08231116101e157806370a08231146106a6578063715018a6146106e357806373532802146106fa57610308565b80636817c76c146106135780636af8c4e71461063e5780636c0360eb1461067b57610308565b80634f6ccce7116102385780634f6ccce71461057057806355f804b3146105ad5780636352211e146105d657610308565b80633ccfd60b1461050557806342842e0e1461051c578063471a42941461054557610308565b80631cf26684116102c05780632f745c591161029a5780632f745c59146104745780633109c19d146104b157806335c6aaf8146104da57610308565b80631cf266841461040657806323b872dd1461042f57806323cf0a221461045857610308565b8063081812fc116102f1578063081812fc14610375578063095ea7b3146103b257806318160ddd146103db57610308565b806301ffc9a71461030d57806306fdde031461034a575b600080fd5b34801561031957600080fd5b50610334600480360381019061032f9190613d5e565b610b3c565b6040516103419190613da6565b60405180910390f35b34801561035657600080fd5b5061035f610bb6565b60405161036c9190613e5a565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190613eb2565b610c48565b6040516103a99190613f20565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190613f67565b610c97565b005b3480156103e757600080fd5b506103f0610d43565b6040516103fd9190613fb6565b60405180910390f35b34801561041257600080fd5b5061042d6004803603810190610428919061400b565b610d50565b005b34801561043b57600080fd5b506104566004803603810190610451919061404b565b610edb565b005b610472600480360381019061046d919061409e565b610f05565b005b34801561048057600080fd5b5061049b60048036038101906104969190613f67565b61103c565b6040516104a89190613fb6565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d391906140cb565b6110ab565b005b3480156104e657600080fd5b506104ef611336565b6040516104fc9190613fb6565b60405180910390f35b34801561051157600080fd5b5061051a61133c565b005b34801561052857600080fd5b50610543600480360381019061053e919061404b565b6114bf565b005b34801561055157600080fd5b5061055a6114df565b6040516105679190613da6565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190613eb2565b6114f2565b6040516105a49190613fb6565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf919061422d565b61152d565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190613eb2565b61161e565b60405161060a9190613f20565b60405180910390f35b34801561061f57600080fd5b5061062861169a565b6040516106359190613fb6565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906140cb565b6116a0565b6040516106729190613da6565b60405180910390f35b34801561068757600080fd5b506106906116f6565b60405161069d9190613e5a565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906140cb565b611784565b6040516106da9190613fb6565b60405180910390f35b3480156106ef57600080fd5b506106f8611806565b005b34801561070657600080fd5b50610721600480360381019061071c9190613eb2565b61188e565b005b34801561072f57600080fd5b5061073861199e565b6040516107459190613da6565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613eb2565b6119b1565b005b34801561078357600080fd5b5061078c611aad565b6040516107999190613f20565b60405180910390f35b6107bc60048036038101906107b791906142d6565b611ad7565b005b3480156107ca57600080fd5b506107d3611dba565b6040516107e09190613e5a565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b91906140cb565b611e4c565b60405161081d9190614345565b60405180910390f35b34801561083257600080fd5b5061083b611e6d565b6040516108489190614345565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190613eb2565b611e81565b005b34801561088657600080fd5b506108a1600480360381019061089c919061438c565b611f7d565b005b3480156108af57600080fd5b506108b8611f93565b6040516108c59190613fb6565b60405180910390f35b3480156108da57600080fd5b506108e3611fc1565b6040516108f091906143e5565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190614400565b611fc7565b005b34801561092e57600080fd5b50610949600480360381019061094491906144ce565b6120bb565b005b34801561095757600080fd5b50610972600480360381019061096d919061457d565b6120e7565b005b34801561098057600080fd5b5061099b60048036038101906109969190613eb2565b6121c8565b6040516109a89190613e5a565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d391906140cb565b61225f565b005b3480156109e657600080fd5b506109ef6124a6565b6040516109fc9190613f20565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190614400565b6124cc565b005b348015610a3a57600080fd5b50610a556004803603810190610a5091906140cb565b6125c0565b005b348015610a6357600080fd5b50610a6c6126db565b604051610a799190613fb6565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa4919061409e565b6126e1565b005b348015610ab757600080fd5b50610ac06127e9565b604051610acd9190614345565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af891906145aa565b6127fd565b604051610b0a9190613da6565b60405180910390f35b348015610b1f57600080fd5b50610b3a6004803603810190610b3591906140cb565b612947565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610baf5750610bae82612a3f565b5b9050919050565b606060008054610bc590614619565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf190614619565b8015610c3e5780601f10610c1357610100808354040283529160200191610c3e565b820191906000526020600020905b815481529060010190602001808311610c2157829003601f168201915b5050505050905090565b6000610c5382612b21565b610c5c57600080fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca28261161e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdd57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfc612b8d565b73ffffffffffffffffffffffffffffffffffffffff161480610d2b5750610d2a81610d25612b8d565b6127fd565b5b610d3457600080fd5b610d3e8383612b95565b505050565b6000600880549050905090565b610d58612b8d565b73ffffffffffffffffffffffffffffffffffffffff16610d76611aad565b73ffffffffffffffffffffffffffffffffffffffff161480610de85750600b6000610d9f612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90614697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6157600080fd5b60008161ffff1611610e7257600080fd5b610e7a611f93565b8161ffff161115610e8a57600080fd5b6000610e94610d43565b905060005b8261ffff168161ffff161015610ed557610ec2848261ffff1684610ebd91906146e6565b612c4e565b8080610ecd9061473c565b915050610e99565b50505050565b610eec610ee6612b8d565b82612c6c565b610ef557600080fd5b610f00838383612d14565b505050565b6002600d541415610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f42906147b3565b60405180910390fd5b6002600d81905550601260029054906101000a900460ff16610f6c57600080fd5b60008161ffff16118015610f985750601260009054906101000a900461ffff1661ffff168161ffff1611155b8015610faf5750610fa7611f93565b8161ffff1611155b610fb857600080fd5b610fd18161ffff16601154612f0490919063ffffffff16565b341015610fdd57600080fd5b6000610fe7610d43565b905060005b8261ffff168161ffff16101561102f5761101c611007612b8d565b8261ffff168461101791906146e6565b612c4e565b80806110279061473c565b915050610fec565b50506001600d8190555050565b600061104783611784565b821061105257600080fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110b3612b8d565b73ffffffffffffffffffffffffffffffffffffffff166110d1611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806111435750600b60006110fa612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e99061481f565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661127e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112759061481f565b60405180910390fd5b6001600c54116112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba9061481f565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c600081548092919061132e9061483f565b919050555050565b60155481565b611344612b8d565b73ffffffffffffffffffffffffffffffffffffffff16611362611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806113d45750600b600061138b612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90614697565b60405180910390fd5b6002600d541415611459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611450906147b3565b60405180910390fd5b6002600d81905550600047905061146e611aad565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156114b3573d6000803e3d6000fd5b50506001600d81905550565b6114da838383604051806020016040528060008152506120bb565b505050565b601260029054906101000a900460ff1681565b60006114fc610d43565b821061150757600080fd5b6008828154811061151b5761151a614869565b5b90600052602060002001549050919050565b611535612b8d565b73ffffffffffffffffffffffffffffffffffffffff16611553611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806115c55750600b600061157c612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90614697565b60405180910390fd5b80600f908051906020019061161a929190613c4f565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561169157600080fd5b80915050919050565b60115481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f805461170390614619565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614619565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117bf57600080fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61180e612b8d565b73ffffffffffffffffffffffffffffffffffffffff1661182c611aad565b73ffffffffffffffffffffffffffffffffffffffff1614611882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611879906148e4565b60405180910390fd5b61188c6000612f1a565b565b611896612b8d565b73ffffffffffffffffffffffffffffffffffffffff166118b4611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806119265750600b60006118dd612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90614697565b60405180910390fd5b600081101580156119775750600e5481105b61198057600080fd5b611988610d43565b81101561199457600080fd5b80600e8190555050565b601660029054906101000a900460ff1681565b6119b9612b8d565b73ffffffffffffffffffffffffffffffffffffffff166119d7611aad565b73ffffffffffffffffffffffffffffffffffffffff161480611a495750600b6000611a00612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f90614697565b60405180910390fd5b60008110158015611a9a575060155481105b611aa357600080fd5b8060158190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002600d541415611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b14906147b3565b60405180910390fd5b6002600d81905550601660029054906101000a900460ff16611b3e57600080fd5b60008161ffff16118015611b6a5750601660009054906101000a900461ffff1661ffff168161ffff1611155b8015611b815750611b79611f93565b8161ffff1611155b611b8a57600080fd5b611ba38161ffff16601554612f0490919063ffffffff16565b341015611baf57600080fd5b600060136000611bbd612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff169050601660009054906101000a900461ffff1661ffff168161ffff1610611c2c57600080fd5b6000611c36612b8d565b604051602001611c46919061494c565b604051602081830303815290604052805190602001209050611cac858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483612fe0565b611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce2906149b3565b60405180910390fd5b6000611cf5610d43565b905060005b8461ffff168161ffff161015611d3d57611d2a611d15612b8d565b8261ffff1684611d2591906146e6565b612c4e565b8080611d359061473c565b915050611cfa565b508383611d4a91906149d3565b60136000611d56612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055505050506001600d81905550505050565b606060018054611dc990614619565b80601f0160208091040260200160405190810160405280929190818152602001828054611df590614619565b8015611e425780601f10611e1757610100808354040283529160200191611e42565b820191906000526020600020905b815481529060010190602001808311611e2557829003601f168201915b5050505050905090565b60136020528060005260406000206000915054906101000a900461ffff1681565b601260009054906101000a900461ffff1681565b611e89612b8d565b73ffffffffffffffffffffffffffffffffffffffff16611ea7611aad565b73ffffffffffffffffffffffffffffffffffffffff161480611f195750600b6000611ed0612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f90614697565b60405180910390fd5b60008110158015611f6a575060115481105b611f7357600080fd5b8060118190555050565b611f8f611f88612b8d565b8383612ff7565b5050565b600080611f9e610d43565b90506000611fb782600e5461312e90919063ffffffff16565b9050809250505090565b60145481565b611fcf612b8d565b73ffffffffffffffffffffffffffffffffffffffff16611fed611aad565b73ffffffffffffffffffffffffffffffffffffffff16148061205f5750600b6000612016612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614697565b60405180910390fd5b80601660026101000a81548160ff02191690831515021790555050565b6120cc6120c6612b8d565b83612c6c565b6120d557600080fd5b6120e184848484613144565b50505050565b6120ef612b8d565b73ffffffffffffffffffffffffffffffffffffffff1661210d611aad565b73ffffffffffffffffffffffffffffffffffffffff16148061217f5750600b6000612136612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b590614697565b60405180910390fd5b8060148190555050565b60606121d382612b21565b6121dc57600080fd5b60006121e661316a565b9050600081511161222c576040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250612257565b80612236846131fc565b604051602001612247929190614a93565b6040516020818303038152906040525b915050919050565b612267612b8d565b73ffffffffffffffffffffffffffffffffffffffff16612285611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806122f75750600b60006122ae612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90614b0e565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614b7a565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c600081548092919061249e90614b9a565b919050555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6124d4612b8d565b73ffffffffffffffffffffffffffffffffffffffff166124f2611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806125645750600b600061251b612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259a90614697565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6125c8612b8d565b73ffffffffffffffffffffffffffffffffffffffff166125e6611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806126585750600b600061260f612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614697565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b6126e9612b8d565b73ffffffffffffffffffffffffffffffffffffffff16612707611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806127795750600b6000612730612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af90614697565b60405180910390fd5b60008161ffff16116127c957600080fd5b80601260006101000a81548161ffff021916908361ffff16021790555050565b601660009054906101000a900461ffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612934576000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016128cb9190613f20565b602060405180830381865afa1580156128e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061290c9190614c21565b73ffffffffffffffffffffffffffffffffffffffff161415612932576001915050612941565b505b61293e838361335d565b90505b92915050565b61294f612b8d565b73ffffffffffffffffffffffffffffffffffffffff1661296d611aad565b73ffffffffffffffffffffffffffffffffffffffff16146129c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ba906148e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2a90614cc0565b60405180910390fd5b612a3c81612f1a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b0a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b1a5750612b19826133f1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c088361161e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612c6882826040518060200160405280600081525061345b565b5050565b6000612c7782612b21565b612c8057600080fd5b6000612c8b8361161e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cfa57508373ffffffffffffffffffffffffffffffffffffffff16612ce284610c48565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d0b5750612d0a81856127fd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d348261161e565b73ffffffffffffffffffffffffffffffffffffffff1614612d5457600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d8e57600080fd5b612d99838383613480565b612da4600082612b95565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612df49190614ce0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e4b91906146e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612f129190614d14565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082612fed8584613594565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561303057600080fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131219190613da6565b60405180910390a3505050565b6000818361313c9190614ce0565b905092915050565b61314f848484612d14565b61315b84848484613647565b61316457600080fd5b50505050565b6060600f805461317990614619565b80601f01602080910402602001604051908101604052809291908181526020018280546131a590614619565b80156131f25780601f106131c7576101008083540402835291602001916131f2565b820191906000526020600020905b8154815290600101906020018083116131d557829003601f168201915b5050505050905090565b60606000821415613244576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613358565b600082905060005b6000821461327657808061325f90614b9a565b915050600a8261326f9190614d9d565b915061324c565b60008167ffffffffffffffff81111561329257613291614102565b5b6040519080825280601f01601f1916602001820160405280156132c45781602001600182028036833780820191505090505b5090505b60008514613351576001826132dd9190614ce0565b9150600a856132ec9190614dce565b60306132f891906146e6565b60f81b81838151811061330e5761330d614869565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561334a9190614d9d565b94506132c8565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61346583836137cf565b6134726000848484613647565b61347b57600080fd5b505050565b61348b838383613931565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134ce576134c981613936565b61350d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461350c5761350b838261397f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135505761354b81613aec565b61358f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461358e5761358d8282613bbd565b5b5b505050565b60008082905060005b845181101561363c5760008582815181106135bb576135ba614869565b5b602002602001015190508083116135fc5782816040516020016135df929190614e20565b604051602081830303815290604052805190602001209250613628565b808360405160200161360f929190614e20565b6040516020818303038152906040528051906020012092505b50808061363490614b9a565b91505061359d565b508091505092915050565b60006136688473ffffffffffffffffffffffffffffffffffffffff16613c3c565b156137c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613691612b8d565b8786866040518563ffffffff1660e01b81526004016136b39493929190614ea1565b6020604051808303816000875af19250505080156136ef57506040513d601f19601f820116820180604052508101906136ec9190614f02565b60015b613772573d806000811461371f576040519150601f19603f3d011682016040523d82523d6000602084013e613724565b606091505b5060008151141561376a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376190614fa1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137c7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561380957600080fd5b61381281612b21565b1561381c57600080fd5b61382860008383613480565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461387891906146e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161398c84611784565b6139969190614ce0565b9050600060076000848152602001908152602001600020549050818114613a7b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b009190614ce0565b9050600060096000848152602001908152602001600020549050600060088381548110613b3057613b2f614869565b5b906000526020600020015490508060088381548110613b5257613b51614869565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613ba157613ba0614fc1565b5b6001900381819060005260206000200160009055905550505050565b6000613bc883611784565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613c5b90614619565b90600052602060002090601f016020900481019282613c7d5760008555613cc4565b82601f10613c9657805160ff1916838001178555613cc4565b82800160010185558215613cc4579182015b82811115613cc3578251825591602001919060010190613ca8565b5b509050613cd19190613cd5565b5090565b5b80821115613cee576000816000905550600101613cd6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d3b81613d06565b8114613d4657600080fd5b50565b600081359050613d5881613d32565b92915050565b600060208284031215613d7457613d73613cfc565b5b6000613d8284828501613d49565b91505092915050565b60008115159050919050565b613da081613d8b565b82525050565b6000602082019050613dbb6000830184613d97565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dfb578082015181840152602081019050613de0565b83811115613e0a576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e2c82613dc1565b613e368185613dcc565b9350613e46818560208601613ddd565b613e4f81613e10565b840191505092915050565b60006020820190508181036000830152613e748184613e21565b905092915050565b6000819050919050565b613e8f81613e7c565b8114613e9a57600080fd5b50565b600081359050613eac81613e86565b92915050565b600060208284031215613ec857613ec7613cfc565b5b6000613ed684828501613e9d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f0a82613edf565b9050919050565b613f1a81613eff565b82525050565b6000602082019050613f356000830184613f11565b92915050565b613f4481613eff565b8114613f4f57600080fd5b50565b600081359050613f6181613f3b565b92915050565b60008060408385031215613f7e57613f7d613cfc565b5b6000613f8c85828601613f52565b9250506020613f9d85828601613e9d565b9150509250929050565b613fb081613e7c565b82525050565b6000602082019050613fcb6000830184613fa7565b92915050565b600061ffff82169050919050565b613fe881613fd1565b8114613ff357600080fd5b50565b60008135905061400581613fdf565b92915050565b6000806040838503121561402257614021613cfc565b5b600061403085828601613f52565b925050602061404185828601613ff6565b9150509250929050565b60008060006060848603121561406457614063613cfc565b5b600061407286828701613f52565b935050602061408386828701613f52565b925050604061409486828701613e9d565b9150509250925092565b6000602082840312156140b4576140b3613cfc565b5b60006140c284828501613ff6565b91505092915050565b6000602082840312156140e1576140e0613cfc565b5b60006140ef84828501613f52565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61413a82613e10565b810181811067ffffffffffffffff8211171561415957614158614102565b5b80604052505050565b600061416c613cf2565b90506141788282614131565b919050565b600067ffffffffffffffff82111561419857614197614102565b5b6141a182613e10565b9050602081019050919050565b82818337600083830152505050565b60006141d06141cb8461417d565b614162565b9050828152602081018484840111156141ec576141eb6140fd565b5b6141f78482856141ae565b509392505050565b600082601f830112614214576142136140f8565b5b81356142248482602086016141bd565b91505092915050565b60006020828403121561424357614242613cfc565b5b600082013567ffffffffffffffff81111561426157614260613d01565b5b61426d848285016141ff565b91505092915050565b600080fd5b600080fd5b60008083601f840112614296576142956140f8565b5b8235905067ffffffffffffffff8111156142b3576142b2614276565b5b6020830191508360208202830111156142cf576142ce61427b565b5b9250929050565b6000806000604084860312156142ef576142ee613cfc565b5b600084013567ffffffffffffffff81111561430d5761430c613d01565b5b61431986828701614280565b9350935050602061432c86828701613ff6565b9150509250925092565b61433f81613fd1565b82525050565b600060208201905061435a6000830184614336565b92915050565b61436981613d8b565b811461437457600080fd5b50565b60008135905061438681614360565b92915050565b600080604083850312156143a3576143a2613cfc565b5b60006143b185828601613f52565b92505060206143c285828601614377565b9150509250929050565b6000819050919050565b6143df816143cc565b82525050565b60006020820190506143fa60008301846143d6565b92915050565b60006020828403121561441657614415613cfc565b5b600061442484828501614377565b91505092915050565b600067ffffffffffffffff82111561444857614447614102565b5b61445182613e10565b9050602081019050919050565b600061447161446c8461442d565b614162565b90508281526020810184848401111561448d5761448c6140fd565b5b6144988482856141ae565b509392505050565b600082601f8301126144b5576144b46140f8565b5b81356144c584826020860161445e565b91505092915050565b600080600080608085870312156144e8576144e7613cfc565b5b60006144f687828801613f52565b945050602061450787828801613f52565b935050604061451887828801613e9d565b925050606085013567ffffffffffffffff81111561453957614538613d01565b5b614545878288016144a0565b91505092959194509250565b61455a816143cc565b811461456557600080fd5b50565b60008135905061457781614551565b92915050565b60006020828403121561459357614592613cfc565b5b60006145a184828501614568565b91505092915050565b600080604083850312156145c1576145c0613cfc565b5b60006145cf85828601613f52565b92505060206145e085828601613f52565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061463157607f821691505b60208210811415614645576146446145ea565b5b50919050565b7f434f310000000000000000000000000000000000000000000000000000000000600082015250565b6000614681600383613dcc565b915061468c8261464b565b602082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146f182613e7c565b91506146fc83613e7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614731576147306146b7565b5b828201905092915050565b600061474782613fd1565b915061ffff82141561475c5761475b6146b7565b5b600182019050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061479d601f83613dcc565b91506147a882614767565b602082019050919050565b600060208201905081810360008301526147cc81614790565b9050919050565b7f434f340000000000000000000000000000000000000000000000000000000000600082015250565b6000614809600383613dcc565b9150614814826147d3565b602082019050919050565b60006020820190508181036000830152614838816147fc565b9050919050565b600061484a82613e7c565b9150600082141561485e5761485d6146b7565b5b600182039050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ce602083613dcc565b91506148d982614898565b602082019050919050565b600060208201905081810360008301526148fd816148c1565b9050919050565b60008160601b9050919050565b600061491c82614904565b9050919050565b600061492e82614911565b9050919050565b61494661494182613eff565b614923565b82525050565b60006149588284614935565b60148201915081905092915050565b7f776c000000000000000000000000000000000000000000000000000000000000600082015250565b600061499d600283613dcc565b91506149a882614967565b602082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b60006149de82613fd1565b91506149e983613fd1565b92508261ffff03821115614a00576149ff6146b7565b5b828201905092915050565b600081905092915050565b6000614a2182613dc1565b614a2b8185614a0b565b9350614a3b818560208601613ddd565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614a7d600583614a0b565b9150614a8882614a47565b600582019050919050565b6000614a9f8285614a16565b9150614aab8284614a16565b9150614ab682614a70565b91508190509392505050565b7f434f320000000000000000000000000000000000000000000000000000000000600082015250565b6000614af8600383613dcc565b9150614b0382614ac2565b602082019050919050565b60006020820190508181036000830152614b2781614aeb565b9050919050565b7f434f330000000000000000000000000000000000000000000000000000000000600082015250565b6000614b64600383613dcc565b9150614b6f82614b2e565b602082019050919050565b60006020820190508181036000830152614b9381614b57565b9050919050565b6000614ba582613e7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bd857614bd76146b7565b5b600182019050919050565b6000614bee82613eff565b9050919050565b614bfe81614be3565b8114614c0957600080fd5b50565b600081519050614c1b81614bf5565b92915050565b600060208284031215614c3757614c36613cfc565b5b6000614c4584828501614c0c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614caa602683613dcc565b9150614cb582614c4e565b604082019050919050565b60006020820190508181036000830152614cd981614c9d565b9050919050565b6000614ceb82613e7c565b9150614cf683613e7c565b925082821015614d0957614d086146b7565b5b828203905092915050565b6000614d1f82613e7c565b9150614d2a83613e7c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d6357614d626146b7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614da882613e7c565b9150614db383613e7c565b925082614dc357614dc2614d6e565b5b828204905092915050565b6000614dd982613e7c565b9150614de483613e7c565b925082614df457614df3614d6e565b5b828206905092915050565b6000819050919050565b614e1a614e15826143cc565b614dff565b82525050565b6000614e2c8285614e09565b602082019150614e3c8284614e09565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614e7382614e4c565b614e7d8185614e57565b9350614e8d818560208601613ddd565b614e9681613e10565b840191505092915050565b6000608082019050614eb66000830187613f11565b614ec36020830186613f11565b614ed06040830185613fa7565b8181036060830152614ee28184614e68565b905095945050505050565b600081519050614efc81613d32565b92915050565b600060208284031215614f1857614f17613cfc565b5b6000614f2684828501614eed565b91505092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f8b603283613dcc565b9150614f9682614f2f565b604082019050919050565b60006020820190508181036000830152614fba81614f7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220dd6cf079882d3819d0716d65f0c2661a66fc089ea0bf631054a7f5d12721e3e864736f6c634300080a0033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106103085760003560e01c8063791d04db1161019a578063b88d4fde116100e1578063d26ea6c01161008a578063ddd1783a11610064578063ddd1783a14610aab578063e985e9c514610ad6578063f2fde38b14610b1357610308565b8063d26ea6c014610a2e578063d5abeb0114610a57578063d5fe011414610a8257610308565b8063ccdbe6a6116100bb578063ccdbe6a6146109b1578063cd7c0326146109da578063d19653fb14610a0557610308565b8063b88d4fde14610922578063bd32fb661461094b578063c87b56dd1461097457610308565b8063996517cf11610143578063a49a7a201161011d578063a49a7a20146108a3578063aa98e0c6146108ce578063b8219159146108f957610308565b8063996517cf146108265780639d91a6c514610851578063a22cb4651461087a57610308565b8063938da77111610174578063938da771146107a257806395d89b41146107be57806398a8cffe146107e957610308565b8063791d04db14610723578063863a8e9a1461074e5780638da5cb5b1461077757610308565b80633ccfd60b1161025e5780636817c76c1161020757806370a08231116101e157806370a08231146106a6578063715018a6146106e357806373532802146106fa57610308565b80636817c76c146106135780636af8c4e71461063e5780636c0360eb1461067b57610308565b80634f6ccce7116102385780634f6ccce71461057057806355f804b3146105ad5780636352211e146105d657610308565b80633ccfd60b1461050557806342842e0e1461051c578063471a42941461054557610308565b80631cf26684116102c05780632f745c591161029a5780632f745c59146104745780633109c19d146104b157806335c6aaf8146104da57610308565b80631cf266841461040657806323b872dd1461042f57806323cf0a221461045857610308565b8063081812fc116102f1578063081812fc14610375578063095ea7b3146103b257806318160ddd146103db57610308565b806301ffc9a71461030d57806306fdde031461034a575b600080fd5b34801561031957600080fd5b50610334600480360381019061032f9190613d5e565b610b3c565b6040516103419190613da6565b60405180910390f35b34801561035657600080fd5b5061035f610bb6565b60405161036c9190613e5a565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190613eb2565b610c48565b6040516103a99190613f20565b60405180910390f35b3480156103be57600080fd5b506103d960048036038101906103d49190613f67565b610c97565b005b3480156103e757600080fd5b506103f0610d43565b6040516103fd9190613fb6565b60405180910390f35b34801561041257600080fd5b5061042d6004803603810190610428919061400b565b610d50565b005b34801561043b57600080fd5b506104566004803603810190610451919061404b565b610edb565b005b610472600480360381019061046d919061409e565b610f05565b005b34801561048057600080fd5b5061049b60048036038101906104969190613f67565b61103c565b6040516104a89190613fb6565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d391906140cb565b6110ab565b005b3480156104e657600080fd5b506104ef611336565b6040516104fc9190613fb6565b60405180910390f35b34801561051157600080fd5b5061051a61133c565b005b34801561052857600080fd5b50610543600480360381019061053e919061404b565b6114bf565b005b34801561055157600080fd5b5061055a6114df565b6040516105679190613da6565b60405180910390f35b34801561057c57600080fd5b5061059760048036038101906105929190613eb2565b6114f2565b6040516105a49190613fb6565b60405180910390f35b3480156105b957600080fd5b506105d460048036038101906105cf919061422d565b61152d565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190613eb2565b61161e565b60405161060a9190613f20565b60405180910390f35b34801561061f57600080fd5b5061062861169a565b6040516106359190613fb6565b60405180910390f35b34801561064a57600080fd5b50610665600480360381019061066091906140cb565b6116a0565b6040516106729190613da6565b60405180910390f35b34801561068757600080fd5b506106906116f6565b60405161069d9190613e5a565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906140cb565b611784565b6040516106da9190613fb6565b60405180910390f35b3480156106ef57600080fd5b506106f8611806565b005b34801561070657600080fd5b50610721600480360381019061071c9190613eb2565b61188e565b005b34801561072f57600080fd5b5061073861199e565b6040516107459190613da6565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613eb2565b6119b1565b005b34801561078357600080fd5b5061078c611aad565b6040516107999190613f20565b60405180910390f35b6107bc60048036038101906107b791906142d6565b611ad7565b005b3480156107ca57600080fd5b506107d3611dba565b6040516107e09190613e5a565b60405180910390f35b3480156107f557600080fd5b50610810600480360381019061080b91906140cb565b611e4c565b60405161081d9190614345565b60405180910390f35b34801561083257600080fd5b5061083b611e6d565b6040516108489190614345565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190613eb2565b611e81565b005b34801561088657600080fd5b506108a1600480360381019061089c919061438c565b611f7d565b005b3480156108af57600080fd5b506108b8611f93565b6040516108c59190613fb6565b60405180910390f35b3480156108da57600080fd5b506108e3611fc1565b6040516108f091906143e5565b60405180910390f35b34801561090557600080fd5b50610920600480360381019061091b9190614400565b611fc7565b005b34801561092e57600080fd5b50610949600480360381019061094491906144ce565b6120bb565b005b34801561095757600080fd5b50610972600480360381019061096d919061457d565b6120e7565b005b34801561098057600080fd5b5061099b60048036038101906109969190613eb2565b6121c8565b6040516109a89190613e5a565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d391906140cb565b61225f565b005b3480156109e657600080fd5b506109ef6124a6565b6040516109fc9190613f20565b60405180910390f35b348015610a1157600080fd5b50610a2c6004803603810190610a279190614400565b6124cc565b005b348015610a3a57600080fd5b50610a556004803603810190610a5091906140cb565b6125c0565b005b348015610a6357600080fd5b50610a6c6126db565b604051610a799190613fb6565b60405180910390f35b348015610a8e57600080fd5b50610aa96004803603810190610aa4919061409e565b6126e1565b005b348015610ab757600080fd5b50610ac06127e9565b604051610acd9190614345565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af891906145aa565b6127fd565b604051610b0a9190613da6565b60405180910390f35b348015610b1f57600080fd5b50610b3a6004803603810190610b3591906140cb565b612947565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610baf5750610bae82612a3f565b5b9050919050565b606060008054610bc590614619565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf190614619565b8015610c3e5780601f10610c1357610100808354040283529160200191610c3e565b820191906000526020600020905b815481529060010190602001808311610c2157829003601f168201915b5050505050905090565b6000610c5382612b21565b610c5c57600080fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca28261161e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdd57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cfc612b8d565b73ffffffffffffffffffffffffffffffffffffffff161480610d2b5750610d2a81610d25612b8d565b6127fd565b5b610d3457600080fd5b610d3e8383612b95565b505050565b6000600880549050905090565b610d58612b8d565b73ffffffffffffffffffffffffffffffffffffffff16610d76611aad565b73ffffffffffffffffffffffffffffffffffffffff161480610de85750600b6000610d9f612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610e27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1e90614697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6157600080fd5b60008161ffff1611610e7257600080fd5b610e7a611f93565b8161ffff161115610e8a57600080fd5b6000610e94610d43565b905060005b8261ffff168161ffff161015610ed557610ec2848261ffff1684610ebd91906146e6565b612c4e565b8080610ecd9061473c565b915050610e99565b50505050565b610eec610ee6612b8d565b82612c6c565b610ef557600080fd5b610f00838383612d14565b505050565b6002600d541415610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f42906147b3565b60405180910390fd5b6002600d81905550601260029054906101000a900460ff16610f6c57600080fd5b60008161ffff16118015610f985750601260009054906101000a900461ffff1661ffff168161ffff1611155b8015610faf5750610fa7611f93565b8161ffff1611155b610fb857600080fd5b610fd18161ffff16601154612f0490919063ffffffff16565b341015610fdd57600080fd5b6000610fe7610d43565b905060005b8261ffff168161ffff16101561102f5761101c611007612b8d565b8261ffff168461101791906146e6565b612c4e565b80806110279061473c565b915050610fec565b50506001600d8190555050565b600061104783611784565b821061105257600080fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6110b3612b8d565b73ffffffffffffffffffffffffffffffffffffffff166110d1611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806111435750600b60006110fa612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990614697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e99061481f565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661127e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112759061481f565b60405180910390fd5b6001600c54116112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba9061481f565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c600081548092919061132e9061483f565b919050555050565b60155481565b611344612b8d565b73ffffffffffffffffffffffffffffffffffffffff16611362611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806113d45750600b600061138b612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140a90614697565b60405180910390fd5b6002600d541415611459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611450906147b3565b60405180910390fd5b6002600d81905550600047905061146e611aad565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156114b3573d6000803e3d6000fd5b50506001600d81905550565b6114da838383604051806020016040528060008152506120bb565b505050565b601260029054906101000a900460ff1681565b60006114fc610d43565b821061150757600080fd5b6008828154811061151b5761151a614869565b5b90600052602060002001549050919050565b611535612b8d565b73ffffffffffffffffffffffffffffffffffffffff16611553611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806115c55750600b600061157c612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fb90614697565b60405180910390fd5b80600f908051906020019061161a929190613c4f565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561169157600080fd5b80915050919050565b60115481565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600f805461170390614619565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614619565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117bf57600080fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61180e612b8d565b73ffffffffffffffffffffffffffffffffffffffff1661182c611aad565b73ffffffffffffffffffffffffffffffffffffffff1614611882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611879906148e4565b60405180910390fd5b61188c6000612f1a565b565b611896612b8d565b73ffffffffffffffffffffffffffffffffffffffff166118b4611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806119265750600b60006118dd612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90614697565b60405180910390fd5b600081101580156119775750600e5481105b61198057600080fd5b611988610d43565b81101561199457600080fd5b80600e8190555050565b601660029054906101000a900460ff1681565b6119b9612b8d565b73ffffffffffffffffffffffffffffffffffffffff166119d7611aad565b73ffffffffffffffffffffffffffffffffffffffff161480611a495750600b6000611a00612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f90614697565b60405180910390fd5b60008110158015611a9a575060155481105b611aa357600080fd5b8060158190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002600d541415611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b14906147b3565b60405180910390fd5b6002600d81905550601660029054906101000a900460ff16611b3e57600080fd5b60008161ffff16118015611b6a5750601660009054906101000a900461ffff1661ffff168161ffff1611155b8015611b815750611b79611f93565b8161ffff1611155b611b8a57600080fd5b611ba38161ffff16601554612f0490919063ffffffff16565b341015611baf57600080fd5b600060136000611bbd612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900461ffff169050601660009054906101000a900461ffff1661ffff168161ffff1610611c2c57600080fd5b6000611c36612b8d565b604051602001611c46919061494c565b604051602081830303815290604052805190602001209050611cac858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145483612fe0565b611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce2906149b3565b60405180910390fd5b6000611cf5610d43565b905060005b8461ffff168161ffff161015611d3d57611d2a611d15612b8d565b8261ffff1684611d2591906146e6565b612c4e565b8080611d359061473c565b915050611cfa565b508383611d4a91906149d3565b60136000611d56612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff1602179055505050506001600d81905550505050565b606060018054611dc990614619565b80601f0160208091040260200160405190810160405280929190818152602001828054611df590614619565b8015611e425780601f10611e1757610100808354040283529160200191611e42565b820191906000526020600020905b815481529060010190602001808311611e2557829003601f168201915b5050505050905090565b60136020528060005260406000206000915054906101000a900461ffff1681565b601260009054906101000a900461ffff1681565b611e89612b8d565b73ffffffffffffffffffffffffffffffffffffffff16611ea7611aad565b73ffffffffffffffffffffffffffffffffffffffff161480611f195750600b6000611ed0612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f90614697565b60405180910390fd5b60008110158015611f6a575060115481105b611f7357600080fd5b8060118190555050565b611f8f611f88612b8d565b8383612ff7565b5050565b600080611f9e610d43565b90506000611fb782600e5461312e90919063ffffffff16565b9050809250505090565b60145481565b611fcf612b8d565b73ffffffffffffffffffffffffffffffffffffffff16611fed611aad565b73ffffffffffffffffffffffffffffffffffffffff16148061205f5750600b6000612016612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61209e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209590614697565b60405180910390fd5b80601660026101000a81548160ff02191690831515021790555050565b6120cc6120c6612b8d565b83612c6c565b6120d557600080fd5b6120e184848484613144565b50505050565b6120ef612b8d565b73ffffffffffffffffffffffffffffffffffffffff1661210d611aad565b73ffffffffffffffffffffffffffffffffffffffff16148061217f5750600b6000612136612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b590614697565b60405180910390fd5b8060148190555050565b60606121d382612b21565b6121dc57600080fd5b60006121e661316a565b9050600081511161222c576040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250612257565b80612236846131fc565b604051602001612247929190614a93565b6040516020818303038152906040525b915050919050565b612267612b8d565b73ffffffffffffffffffffffffffffffffffffffff16612285611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806122f75750600b60006122ae612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90614697565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239d90614b0e565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a90614b7a565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600c600081548092919061249e90614b9a565b919050555050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6124d4612b8d565b73ffffffffffffffffffffffffffffffffffffffff166124f2611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806125645750600b600061251b612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259a90614697565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6125c8612b8d565b73ffffffffffffffffffffffffffffffffffffffff166125e6611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806126585750600b600061260f612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612697576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268e90614697565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b6126e9612b8d565b73ffffffffffffffffffffffffffffffffffffffff16612707611aad565b73ffffffffffffffffffffffffffffffffffffffff1614806127795750600b6000612730612b8d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6127b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127af90614697565b60405180910390fd5b60008161ffff16116127c957600080fd5b80601260006101000a81548161ffff021916908361ffff16021790555050565b601660009054906101000a900461ffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612934576000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016128cb9190613f20565b602060405180830381865afa1580156128e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061290c9190614c21565b73ffffffffffffffffffffffffffffffffffffffff161415612932576001915050612941565b505b61293e838361335d565b90505b92915050565b61294f612b8d565b73ffffffffffffffffffffffffffffffffffffffff1661296d611aad565b73ffffffffffffffffffffffffffffffffffffffff16146129c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ba906148e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2a90614cc0565b60405180910390fd5b612a3c81612f1a565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b0a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612b1a5750612b19826133f1565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c088361161e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612c6882826040518060200160405280600081525061345b565b5050565b6000612c7782612b21565b612c8057600080fd5b6000612c8b8361161e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612cfa57508373ffffffffffffffffffffffffffffffffffffffff16612ce284610c48565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d0b5750612d0a81856127fd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d348261161e565b73ffffffffffffffffffffffffffffffffffffffff1614612d5457600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d8e57600080fd5b612d99838383613480565b612da4600082612b95565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612df49190614ce0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e4b91906146e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612f129190614d14565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600082612fed8584613594565b1490509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561303057600080fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131219190613da6565b60405180910390a3505050565b6000818361313c9190614ce0565b905092915050565b61314f848484612d14565b61315b84848484613647565b61316457600080fd5b50505050565b6060600f805461317990614619565b80601f01602080910402602001604051908101604052809291908181526020018280546131a590614619565b80156131f25780601f106131c7576101008083540402835291602001916131f2565b820191906000526020600020905b8154815290600101906020018083116131d557829003601f168201915b5050505050905090565b60606000821415613244576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613358565b600082905060005b6000821461327657808061325f90614b9a565b915050600a8261326f9190614d9d565b915061324c565b60008167ffffffffffffffff81111561329257613291614102565b5b6040519080825280601f01601f1916602001820160405280156132c45781602001600182028036833780820191505090505b5090505b60008514613351576001826132dd9190614ce0565b9150600a856132ec9190614dce565b60306132f891906146e6565b60f81b81838151811061330e5761330d614869565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561334a9190614d9d565b94506132c8565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61346583836137cf565b6134726000848484613647565b61347b57600080fd5b505050565b61348b838383613931565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134ce576134c981613936565b61350d565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461350c5761350b838261397f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135505761354b81613aec565b61358f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461358e5761358d8282613bbd565b5b5b505050565b60008082905060005b845181101561363c5760008582815181106135bb576135ba614869565b5b602002602001015190508083116135fc5782816040516020016135df929190614e20565b604051602081830303815290604052805190602001209250613628565b808360405160200161360f929190614e20565b6040516020818303038152906040528051906020012092505b50808061363490614b9a565b91505061359d565b508091505092915050565b60006136688473ffffffffffffffffffffffffffffffffffffffff16613c3c565b156137c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613691612b8d565b8786866040518563ffffffff1660e01b81526004016136b39493929190614ea1565b6020604051808303816000875af19250505080156136ef57506040513d601f19601f820116820180604052508101906136ec9190614f02565b60015b613772573d806000811461371f576040519150601f19603f3d011682016040523d82523d6000602084013e613724565b606091505b5060008151141561376a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376190614fa1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137c7565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561380957600080fd5b61381281612b21565b1561381c57600080fd5b61382860008383613480565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461387891906146e6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161398c84611784565b6139969190614ce0565b9050600060076000848152602001908152602001600020549050818114613a7b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613b009190614ce0565b9050600060096000848152602001908152602001600020549050600060088381548110613b3057613b2f614869565b5b906000526020600020015490508060088381548110613b5257613b51614869565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613ba157613ba0614fc1565b5b6001900381819060005260206000200160009055905550505050565b6000613bc883611784565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b828054613c5b90614619565b90600052602060002090601f016020900481019282613c7d5760008555613cc4565b82601f10613c9657805160ff1916838001178555613cc4565b82800160010185558215613cc4579182015b82811115613cc3578251825591602001919060010190613ca8565b5b509050613cd19190613cd5565b5090565b5b80821115613cee576000816000905550600101613cd6565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d3b81613d06565b8114613d4657600080fd5b50565b600081359050613d5881613d32565b92915050565b600060208284031215613d7457613d73613cfc565b5b6000613d8284828501613d49565b91505092915050565b60008115159050919050565b613da081613d8b565b82525050565b6000602082019050613dbb6000830184613d97565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dfb578082015181840152602081019050613de0565b83811115613e0a576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e2c82613dc1565b613e368185613dcc565b9350613e46818560208601613ddd565b613e4f81613e10565b840191505092915050565b60006020820190508181036000830152613e748184613e21565b905092915050565b6000819050919050565b613e8f81613e7c565b8114613e9a57600080fd5b50565b600081359050613eac81613e86565b92915050565b600060208284031215613ec857613ec7613cfc565b5b6000613ed684828501613e9d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613f0a82613edf565b9050919050565b613f1a81613eff565b82525050565b6000602082019050613f356000830184613f11565b92915050565b613f4481613eff565b8114613f4f57600080fd5b50565b600081359050613f6181613f3b565b92915050565b60008060408385031215613f7e57613f7d613cfc565b5b6000613f8c85828601613f52565b9250506020613f9d85828601613e9d565b9150509250929050565b613fb081613e7c565b82525050565b6000602082019050613fcb6000830184613fa7565b92915050565b600061ffff82169050919050565b613fe881613fd1565b8114613ff357600080fd5b50565b60008135905061400581613fdf565b92915050565b6000806040838503121561402257614021613cfc565b5b600061403085828601613f52565b925050602061404185828601613ff6565b9150509250929050565b60008060006060848603121561406457614063613cfc565b5b600061407286828701613f52565b935050602061408386828701613f52565b925050604061409486828701613e9d565b9150509250925092565b6000602082840312156140b4576140b3613cfc565b5b60006140c284828501613ff6565b91505092915050565b6000602082840312156140e1576140e0613cfc565b5b60006140ef84828501613f52565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61413a82613e10565b810181811067ffffffffffffffff8211171561415957614158614102565b5b80604052505050565b600061416c613cf2565b90506141788282614131565b919050565b600067ffffffffffffffff82111561419857614197614102565b5b6141a182613e10565b9050602081019050919050565b82818337600083830152505050565b60006141d06141cb8461417d565b614162565b9050828152602081018484840111156141ec576141eb6140fd565b5b6141f78482856141ae565b509392505050565b600082601f830112614214576142136140f8565b5b81356142248482602086016141bd565b91505092915050565b60006020828403121561424357614242613cfc565b5b600082013567ffffffffffffffff81111561426157614260613d01565b5b61426d848285016141ff565b91505092915050565b600080fd5b600080fd5b60008083601f840112614296576142956140f8565b5b8235905067ffffffffffffffff8111156142b3576142b2614276565b5b6020830191508360208202830111156142cf576142ce61427b565b5b9250929050565b6000806000604084860312156142ef576142ee613cfc565b5b600084013567ffffffffffffffff81111561430d5761430c613d01565b5b61431986828701614280565b9350935050602061432c86828701613ff6565b9150509250925092565b61433f81613fd1565b82525050565b600060208201905061435a6000830184614336565b92915050565b61436981613d8b565b811461437457600080fd5b50565b60008135905061438681614360565b92915050565b600080604083850312156143a3576143a2613cfc565b5b60006143b185828601613f52565b92505060206143c285828601614377565b9150509250929050565b6000819050919050565b6143df816143cc565b82525050565b60006020820190506143fa60008301846143d6565b92915050565b60006020828403121561441657614415613cfc565b5b600061442484828501614377565b91505092915050565b600067ffffffffffffffff82111561444857614447614102565b5b61445182613e10565b9050602081019050919050565b600061447161446c8461442d565b614162565b90508281526020810184848401111561448d5761448c6140fd565b5b6144988482856141ae565b509392505050565b600082601f8301126144b5576144b46140f8565b5b81356144c584826020860161445e565b91505092915050565b600080600080608085870312156144e8576144e7613cfc565b5b60006144f687828801613f52565b945050602061450787828801613f52565b935050604061451887828801613e9d565b925050606085013567ffffffffffffffff81111561453957614538613d01565b5b614545878288016144a0565b91505092959194509250565b61455a816143cc565b811461456557600080fd5b50565b60008135905061457781614551565b92915050565b60006020828403121561459357614592613cfc565b5b60006145a184828501614568565b91505092915050565b600080604083850312156145c1576145c0613cfc565b5b60006145cf85828601613f52565b92505060206145e085828601613f52565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061463157607f821691505b60208210811415614645576146446145ea565b5b50919050565b7f434f310000000000000000000000000000000000000000000000000000000000600082015250565b6000614681600383613dcc565b915061468c8261464b565b602082019050919050565b600060208201905081810360008301526146b081614674565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006146f182613e7c565b91506146fc83613e7c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614731576147306146b7565b5b828201905092915050565b600061474782613fd1565b915061ffff82141561475c5761475b6146b7565b5b600182019050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061479d601f83613dcc565b91506147a882614767565b602082019050919050565b600060208201905081810360008301526147cc81614790565b9050919050565b7f434f340000000000000000000000000000000000000000000000000000000000600082015250565b6000614809600383613dcc565b9150614814826147d3565b602082019050919050565b60006020820190508181036000830152614838816147fc565b9050919050565b600061484a82613e7c565b9150600082141561485e5761485d6146b7565b5b600182039050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ce602083613dcc565b91506148d982614898565b602082019050919050565b600060208201905081810360008301526148fd816148c1565b9050919050565b60008160601b9050919050565b600061491c82614904565b9050919050565b600061492e82614911565b9050919050565b61494661494182613eff565b614923565b82525050565b60006149588284614935565b60148201915081905092915050565b7f776c000000000000000000000000000000000000000000000000000000000000600082015250565b600061499d600283613dcc565b91506149a882614967565b602082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b60006149de82613fd1565b91506149e983613fd1565b92508261ffff03821115614a00576149ff6146b7565b5b828201905092915050565b600081905092915050565b6000614a2182613dc1565b614a2b8185614a0b565b9350614a3b818560208601613ddd565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614a7d600583614a0b565b9150614a8882614a47565b600582019050919050565b6000614a9f8285614a16565b9150614aab8284614a16565b9150614ab682614a70565b91508190509392505050565b7f434f320000000000000000000000000000000000000000000000000000000000600082015250565b6000614af8600383613dcc565b9150614b0382614ac2565b602082019050919050565b60006020820190508181036000830152614b2781614aeb565b9050919050565b7f434f330000000000000000000000000000000000000000000000000000000000600082015250565b6000614b64600383613dcc565b9150614b6f82614b2e565b602082019050919050565b60006020820190508181036000830152614b9381614b57565b9050919050565b6000614ba582613e7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bd857614bd76146b7565b5b600182019050919050565b6000614bee82613eff565b9050919050565b614bfe81614be3565b8114614c0957600080fd5b50565b600081519050614c1b81614bf5565b92915050565b600060208284031215614c3757614c36613cfc565b5b6000614c4584828501614c0c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614caa602683613dcc565b9150614cb582614c4e565b604082019050919050565b60006020820190508181036000830152614cd981614c9d565b9050919050565b6000614ceb82613e7c565b9150614cf683613e7c565b925082821015614d0957614d086146b7565b5b828203905092915050565b6000614d1f82613e7c565b9150614d2a83613e7c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d6357614d626146b7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614da882613e7c565b9150614db383613e7c565b925082614dc357614dc2614d6e565b5b828204905092915050565b6000614dd982613e7c565b9150614de483613e7c565b925082614df457614df3614d6e565b5b828206905092915050565b6000819050919050565b614e1a614e15826143cc565b614dff565b82525050565b6000614e2c8285614e09565b602082019150614e3c8284614e09565b6020820191508190509392505050565b600081519050919050565b600082825260208201905092915050565b6000614e7382614e4c565b614e7d8185614e57565b9350614e8d818560208601613ddd565b614e9681613e10565b840191505092915050565b6000608082019050614eb66000830187613f11565b614ec36020830186613f11565b614ed06040830185613fa7565b8181036060830152614ee28184614e68565b905095945050505050565b600081519050614efc81613d32565b92915050565b600060208284031215614f1857614f17613cfc565b5b6000614f2684828501614eed565b91505092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614f8b603283613dcc565b9150614f9682614f2f565b604082019050919050565b60006020820190508181036000830152614fba81614f7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220dd6cf079882d3819d0716d65f0c2661a66fc089ea0bf631054a7f5d12721e3e864736f6c634300080a0033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


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.