ERC-20
Overview
Max Total Supply
38,760,695.837000857 xBTRFLY
Holders
2,413
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
1.293302134 xBTRFLYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
xBTRFLY
Compiler Version
v0.7.5+commit.eb77ed08
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-15 */ // SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.7.5; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrrt(uint256 a) internal pure returns (uint c) { if (a > 3) { c = a; uint b = add( div( a, 2), 1 ); while (b < c) { c = b; b = div( add( div( a, b ), b), 2 ); } } else if (a != 0) { c = 1; } } /* * Expects percentage to be trailed by 00, */ function percentageAmount( uint256 total_, uint8 percentage_ ) internal pure returns ( uint256 percentAmount_ ) { return div( mul( total_, percentage_ ), 1000 ); } /* * Expects percentage to be trailed by 00, */ function substractPercentage( uint256 total_, uint8 percentageToSub_ ) internal pure returns ( uint256 result_ ) { return sub( total_, div( mul( total_, percentageToSub_ ), 1000 ) ); } function percentageOfTotal( uint256 part_, uint256 total_ ) internal pure returns ( uint256 percent_ ) { return div( mul(part_, 100) , total_ ); } /** * Taken from Hypersonic https://github.com/M2629/HyperSonic/blob/main/Math.sol * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } function quadraticPricing( uint256 payment_, uint256 multiplier_ ) internal pure returns (uint256) { return sqrrt( mul( multiplier_, payment_ ) ); } function bondingCurve( uint256 supply_, uint256 multiplier_ ) internal pure returns (uint256) { return mul( multiplier_, supply_ ); } } 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 in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ // function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { // require(address(this).balance >= value, "Address: insufficient balance for call"); // return _functionCallWithValue(target, data, value, errorMessage); // } function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.3._ */ 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.3._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } function addressToString(address _address) internal pure returns(string memory) { bytes32 _bytes = bytes32(uint256(_address)); bytes memory HEX = "0123456789abcdef"; bytes memory _addr = new bytes(42); _addr[0] = '0'; _addr[1] = 'x'; for(uint256 i = 0; i < 20; i++) { _addr[2+i*2] = HEX[uint8(_bytes[i + 12] >> 4)]; _addr[3+i*2] = HEX[uint8(_bytes[i + 12] & 0x0f)]; } return string(_addr); } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } abstract contract ERC20 is IERC20 { using SafeMath for uint256; // TODO comment actual hash value. bytes32 constant private ERC20TOKEN_ERC1820_INTERFACE_ID = keccak256( "ERC20Token" ); // Present in ERC777 mapping (address => uint256) internal _balances; // Present in ERC777 mapping (address => mapping (address => uint256)) internal _allowances; // Present in ERC777 uint256 internal _totalSupply; // Present in ERC777 string internal _name; // Present in ERC777 string internal _symbol; // Present in ERC777 uint8 internal _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_, uint8 decimals_) { _name = name_; _symbol = symbol_; _decimals = decimals_; } /** * @dev Returns the name of the token. */ // Present in ERC777 function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ // Present in ERC777 function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ // Present in ERC777 function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ // Present in ERC777 function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ // Present in ERC777 function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ // Overrideen in ERC777 // Confirm that this behavior changes function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ // Present in ERC777 function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ // Present in ERC777 function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(msg.sender, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ // Present in ERC777 function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ // Present in ERC777 function _mint(address account_, uint256 ammount_) internal virtual { require(account_ != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address( this ), account_, ammount_); _totalSupply = _totalSupply.add(ammount_); _balances[account_] = _balances[account_].add(ammount_); emit Transfer(address( this ), account_, ammount_); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ // Present in ERC777 function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ // Present in ERC777 function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ // Considering deprication to reduce size of bytecode as changing _decimals to internal acheived the same functionality. // function _setupDecimals(uint8 decimals_) internal { // _decimals = decimals_; // } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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]. */ // Present in ERC777 function _beforeTokenTransfer( address from_, address to_, uint256 amount_ ) internal virtual { } } library Counters { using SafeMath for uint256; struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { // The {SafeMath} overflow check can be skipped here, see the comment at the top counter._value += 1; } function decrement(Counter storage counter) internal { counter._value = counter._value.sub(1); } } interface IERC2612Permit { /** * @dev Sets `amount` as the allowance of `spender` over `owner`'s tokens, * given `owner`'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current ERC2612 nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); } abstract contract ERC20Permit is ERC20, IERC2612Permit { using Counters for Counters.Counter; mapping(address => Counters.Counter) private _nonces; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; bytes32 public DOMAIN_SEPARATOR; constructor() { uint256 chainID; assembly { chainID := chainid() } DOMAIN_SEPARATOR = keccak256(abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name())), keccak256(bytes("1")), // Version chainID, address(this) )); } /** * @dev See {IERC2612Permit-permit}. * */ function permit( address owner, address spender, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= deadline, "Permit: expired deadline"); bytes32 hashStruct = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, amount, _nonces[owner].current(), deadline)); bytes32 _hash = keccak256(abi.encodePacked(uint16(0x1901), DOMAIN_SEPARATOR, hashStruct)); address signer = ecrecover(_hash, v, r, s); require(signer != address(0) && signer == owner, "ZeroSwapPermit: Invalid signature"); _nonces[owner].increment(); _approve(owner, spender, amount); } /** * @dev See {IERC2612Permit-nonces}. */ function nonces(address owner) public view override returns (uint256) { return _nonces[owner].current(); } } interface IOwnable { function manager() external view returns (address); function renounceManagement() external; function pushManagement( address newOwner_ ) external; function pullManagement() external; } contract Ownable is IOwnable { address internal _owner; address internal _newOwner; event OwnershipPushed(address indexed previousOwner, address indexed newOwner); event OwnershipPulled(address indexed previousOwner, address indexed newOwner); constructor () { _owner = msg.sender; emit OwnershipPushed( address(0), _owner ); } function manager() public view override returns (address) { return _owner; } modifier onlyManager() { require( _owner == msg.sender, "Ownable: caller is not the owner" ); _; } function renounceManagement() public virtual override onlyManager() { emit OwnershipPushed( _owner, address(0) ); _owner = address(0); } function pushManagement( address newOwner_ ) public virtual override onlyManager() { require( newOwner_ != address(0), "Ownable: new owner is the zero address"); emit OwnershipPushed( _owner, newOwner_ ); _newOwner = newOwner_; } function pullManagement() public virtual override { require( msg.sender == _newOwner, "Ownable: must be new owner to pull"); emit OwnershipPulled( _owner, _newOwner ); _owner = _newOwner; } } abstract contract FrozenToken is ERC20Permit, Ownable { using SafeMath for uint256; bool public isTokenFrozen = true; mapping (address => bool ) public isAuthorisedOperators; modifier onlyAuthorisedOperators () { require(!isTokenFrozen || isAuthorisedOperators[msg.sender], 'Frozen: token frozen or msg.sender not authorised'); _; } function unFreezeToken () external onlyManager () { isTokenFrozen = false; } function changeAuthorisation (address operator, bool status) public onlyManager { require(operator != address(0), "Frozen: new operator cant be zero address"); isAuthorisedOperators[operator] = status; } function addBatchAuthorisedOperators(address[] memory authorisedOperatorsArray) external onlyManager { for (uint i = 0; i < authorisedOperatorsArray.length; i++) { changeAuthorisation(authorisedOperatorsArray[i],true); } } } contract xBTRFLY is FrozenToken { using SafeMath for uint256; modifier onlyStakingContract() { require( msg.sender == stakingContract ); _; } address public stakingContract; address public initializer; event LogSupply(uint256 indexed epoch, uint256 timestamp, uint256 totalSupply ); event LogRebase( uint256 indexed epoch, uint256 rebase, uint256 index ); event LogStakingContractUpdated( address stakingContract ); struct Rebase { uint epoch; uint rebase; // 18 decimals uint totalStakedBefore; uint totalStakedAfter; uint amountRebased; uint index; uint blockNumberOccured; } Rebase[] public rebases; uint public INDEX; uint256 private constant MAX_UINT256 = ~uint256(0); uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 5000000 * 10**9; // TOTAL_GONS is a multiple of INITIAL_FRAGMENTS_SUPPLY so that _gonsPerFragment is an integer. // Use the highest value that fits in a uint256 for max granularity. uint256 private constant TOTAL_GONS = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY); // MAX_SUPPLY = maximum integer < (sqrt(4*TOTAL_GONS + 1) - 1) / 2 uint256 private constant MAX_SUPPLY = ~uint128(0); // (2^128) - 1 uint256 private _gonsPerFragment; mapping(address => uint256) private _gonBalances; mapping ( address => mapping ( address => uint256 ) ) private _allowedValue; constructor() ERC20("xBTRFLY", "xBTRFLY", 9) ERC20Permit() { initializer = msg.sender; _totalSupply = INITIAL_FRAGMENTS_SUPPLY; _gonsPerFragment = TOTAL_GONS.div(_totalSupply); } function initialize( address stakingContract_ ) external returns ( bool ) { require( msg.sender == initializer ); require( stakingContract_ != address(0) ); stakingContract = stakingContract_; _gonBalances[ stakingContract ] = TOTAL_GONS; emit Transfer( address(0x0), stakingContract, _totalSupply ); emit LogStakingContractUpdated( stakingContract_ ); initializer = address(0); return true; } function setIndex( uint _INDEX ) external onlyManager() returns ( bool ) { require( INDEX == 0 ); INDEX = gonsForBalance( _INDEX ); return true; } /** @notice increases sBTRFLY supply to increase staking balances relative to profit_ @param profit_ uint256 @return uint256 */ function rebase( uint256 profit_, uint epoch_ ) public onlyStakingContract() returns ( uint256 ) { uint256 rebaseAmount; uint256 circulatingSupply_ = circulatingSupply(); if ( profit_ == 0 ) { emit LogSupply( epoch_, block.timestamp, _totalSupply ); emit LogRebase( epoch_, 0, index() ); return _totalSupply; } else if ( circulatingSupply_ > 0 ){ rebaseAmount = profit_.mul( _totalSupply ).div( circulatingSupply_ ); } else { rebaseAmount = profit_; } _totalSupply = _totalSupply.add( rebaseAmount ); if ( _totalSupply > MAX_SUPPLY ) { _totalSupply = MAX_SUPPLY; } _gonsPerFragment = TOTAL_GONS.div( _totalSupply ); _storeRebase( circulatingSupply_, profit_, epoch_ ); return _totalSupply; } /** @notice emits event with data about rebase @param previousCirculating_ uint @param profit_ uint @param epoch_ uint @return bool */ function _storeRebase( uint previousCirculating_, uint profit_, uint epoch_ ) internal returns ( bool ) { uint rebasePercent = profit_.mul( 1e18 ).div( previousCirculating_ ); rebases.push( Rebase ( { epoch: epoch_, rebase: rebasePercent, // 18 decimals totalStakedBefore: previousCirculating_, totalStakedAfter: circulatingSupply(), amountRebased: profit_, index: index(), blockNumberOccured: block.number })); emit LogSupply( epoch_, block.timestamp, _totalSupply ); emit LogRebase( epoch_, rebasePercent, index() ); return true; } function balanceOf( address who ) public view override returns ( uint256 ) { return _gonBalances[ who ].div( _gonsPerFragment ); } function gonsForBalance( uint amount ) public view returns ( uint ) { return amount.mul( _gonsPerFragment ); } function balanceForGons( uint gons ) public view returns ( uint ) { return gons.div( _gonsPerFragment ); } // Staking contract holds excess sBTRFLY function circulatingSupply() public view returns ( uint ) { return _totalSupply.sub( balanceOf( stakingContract ) ); } function index() public view returns ( uint ) { return balanceForGons( INDEX ); } function transfer( address to, uint256 value ) public override onlyAuthorisedOperators returns (bool) { uint256 gonValue = value.mul( _gonsPerFragment ); _gonBalances[ msg.sender ] = _gonBalances[ msg.sender ].sub( gonValue ); _gonBalances[ to ] = _gonBalances[ to ].add( gonValue ); emit Transfer( msg.sender, to, value ); return true; } function allowance( address owner_, address spender ) public view override returns ( uint256 ) { return _allowedValue[ owner_ ][ spender ]; } function transferFrom( address from, address to, uint256 value ) public override onlyAuthorisedOperators returns ( bool ) { _allowedValue[ from ][ msg.sender ] = _allowedValue[ from ][ msg.sender ].sub( value ); emit Approval( from, msg.sender, _allowedValue[ from ][ msg.sender ] ); uint256 gonValue = gonsForBalance( value ); _gonBalances[ from ] = _gonBalances[from].sub( gonValue ); _gonBalances[ to ] = _gonBalances[to].add( gonValue ); emit Transfer( from, to, value ); return true; } function approve( address spender, uint256 value ) public override returns (bool) { _allowedValue[ msg.sender ][ spender ] = value; emit Approval( msg.sender, spender, value ); return true; } // What gets called in a permit function _approve( address owner, address spender, uint256 value ) internal override virtual { _allowedValue[owner][spender] = value; emit Approval( owner, spender, value ); } function increaseAllowance( address spender, uint256 addedValue ) public override returns (bool) { _allowedValue[ msg.sender ][ spender ] = _allowedValue[ msg.sender ][ spender ].add( addedValue ); emit Approval( msg.sender, spender, _allowedValue[ msg.sender ][ spender ] ); return true; } function decreaseAllowance( address spender, uint256 subtractedValue ) public override returns (bool) { uint256 oldValue = _allowedValue[ msg.sender ][ spender ]; if (subtractedValue >= oldValue) { _allowedValue[ msg.sender ][ spender ] = 0; } else { _allowedValue[ msg.sender ][ spender ] = oldValue.sub( subtractedValue ); } emit Approval( msg.sender, spender, _allowedValue[ msg.sender ][ spender ] ); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rebase","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stakingContract","type":"address"}],"name":"LogStakingContractUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"LogSupply","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipPulled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipPushed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INDEX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"authorisedOperatorsArray","type":"address[]"}],"name":"addBatchAuthorisedOperators","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"gons","type":"uint256"}],"name":"balanceForGons","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"changeAuthorisation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"gonsForBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"index","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"stakingContract_","type":"address"}],"name":"initialize","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initializer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAuthorisedOperators","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTokenFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pullManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner_","type":"address"}],"name":"pushManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"profit_","type":"uint256"},{"internalType":"uint256","name":"epoch_","type":"uint256"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rebases","outputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"rebase","type":"uint256"},{"internalType":"uint256","name":"totalStakedBefore","type":"uint256"},{"internalType":"uint256","name":"totalStakedAfter","type":"uint256"},{"internalType":"uint256","name":"amountRebased","type":"uint256"},{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"blockNumberOccured","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceManagement","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_INDEX","type":"uint256"}],"name":"setIndex","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unFreezeToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526009805460ff60a01b1916600160a01b1790553480156200002457600080fd5b5060408051808201825260078082526678425452464c5960c81b6020808401828152855180870190965292855284015281519192916009916200006b916003919062000368565b5081516200008190600490602085019062000368565b506005805460ff191660ff92909216919091179055504690507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620000c5620001d6565b805160209182012060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6606084015260808301939093523060a0808401919091528351808403909101815260c0909201928390528151910120600755600880546001600160a01b0319163317908190556001600160a01b0316906000907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba908290a3600c80546001600160a01b031916331790556611c37937e080006002819055620001cd908060001906600019036200027060201b620016fa1790919060201c565b600f5562000414565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015620002665780601f106200023a5761010080835404028352916020019162000266565b820191906000526020600020905b8154815290600101906020018083116200024857829003601f168201915b5050505050905090565b6000620002ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620002c160201b60201c565b9392505050565b60008183620003515760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000315578181015183820152602001620002fb565b50505050905090810190601f168015620003435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200035e57fe5b0495945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003a05760008555620003eb565b82601f10620003bb57805160ff1916838001178555620003eb565b82800160010185558215620003eb579182015b82811115620003eb578251825591602001919060010190620003ce565b50620003f9929150620003fd565b5090565b5b80821115620003f95760008155600101620003fe565b611c3280620004246000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c8063481c6a751161012557806395d89b41116100ad578063c4d66de81161007c578063c4d66de814610673578063d505accf14610699578063dd62ed3e146106ea578063ee99205c14610718578063fff4a3861461072057610211565b806395d89b411461060b5780639ce110d714610613578063a457c2d71461061b578063a9059cbb1461064757610211565b806373c69eb7116100f457806373c69eb71461053d5780637965d56d146105925780637ecebe00146105af5780639358928b146105d55780639415c6f4146105dd57610211565b8063481c6a75146104e35780635a96ac0a146105075780635c3d69a91461050f57806370a082311461051757610211565b80632df75cb1116101a8578063395093511161017757806339509351146103ab5780633f7aa547146103d757806340a5737f1461047a57806343d847a51461049757806346f68ee9146104bd57610211565b80632df75cb11461037557806330adf81f1461037d578063313ce567146103855780633644e515146103a357610211565b806318160ddd116101e457806318160ddd146103125780631bd396741461031a57806323b872dd146103375780632986c0e51461036d57610211565b8063058ecdb41461021657806306fdde031461024b578063089208d8146102c8578063095ea7b3146102d2575b600080fd5b6102396004803603604081101561022c57600080fd5b5080359060200135610728565b60408051918252519081900360200190f35b610253610872565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028d578181015183820152602001610275565b50505050905090810190601f1680156102ba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d0610908565b005b6102fe600480360360408110156102e857600080fd5b506001600160a01b03813516906020013561099f565b604080519115158252519081900360200190f35b6102396109f3565b6102396004803603602081101561033057600080fd5b50356109f9565b6102fe6004803603606081101561034d57600080fd5b506001600160a01b03813581169160208101359091169060400135610a10565b610239610bb0565b610239610bc2565b610239610bc8565b61038d610bec565b6040805160ff9092168252519081900360200190f35b610239610bf5565b6102fe600480360360408110156103c157600080fd5b506001600160a01b038135169060200135610bfb565b6102d0600480360360208110156103ed57600080fd5b81019060208101813564010000000081111561040857600080fd5b82018360208201111561041a57600080fd5b8035906020019184602083028401116401000000008311171561043c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610c7c945050505050565b6102fe6004803603602081101561049057600080fd5b5035610cff565b6102fe600480360360208110156104ad57600080fd5b50356001600160a01b0316610d70565b6102d0600480360360208110156104d357600080fd5b50356001600160a01b0316610d85565b6104eb610e73565b604080516001600160a01b039092168252519081900360200190f35b6102d0610e82565b6102fe610f2e565b6102396004803603602081101561052d57600080fd5b50356001600160a01b0316610f3e565b61055a6004803603602081101561055357600080fd5b5035610f66565b604080519788526020880196909652868601949094526060860192909252608085015260a084015260c0830152519081900360e00190f35b610239600480360360208110156105a857600080fd5b5035610fb8565b610239600480360360208110156105c557600080fd5b50356001600160a01b0316610fcf565b610239610ff0565b6102d0600480360360408110156105f357600080fd5b506001600160a01b0381351690602001351515611015565b6102536110d2565b6104eb611133565b6102fe6004803603604081101561063157600080fd5b506001600160a01b038135169060200135611142565b6102fe6004803603604081101561065d57600080fd5b506001600160a01b038135169060200135611219565b6102fe6004803603602081101561068957600080fd5b50356001600160a01b031661133e565b6102d0600480360360e08110156106af57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611437565b6102396004803603604081101561070057600080fd5b506001600160a01b0381358116916020013516611664565b6104eb61168f565b6102d061169e565b600b546000906001600160a01b0316331461074257600080fd5b60008061074d610ff0565b9050846107e357600254604080514281526020810192909252805186927f917acfbe39be6509ccf7fecb66a7e42ce2be1083c2d7dd3b9b7491dabddb8da492908290030190a2837f6012dbce857565c4a40974aa5de8373a761fc429077ef0c8c8611d1e20d63fb260006107bf610bb0565b6040805192835260208301919091528051918290030190a26002549250505061086c565b801561080f57610808816108026002548861174390919063ffffffff16565b906116fa565b9150610813565b8491505b600254610820908361179c565b60028190556001600160801b03101561083f576001600160801b036002555b60025461085590660e3d2cfe61ffff19906116fa565b600f556108638186866117f6565b50600254925050505b92915050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b6008546001600160a01b03163314610955576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba908390a3600880546001600160a01b0319169055565b3360008181526011602090815260408083206001600160a01b03871680855290835281842086905581518681529151939490939092600080516020611bb4833981519152928290030190a350600192915050565b60025490565b600061086c600f548361174390919063ffffffff16565b600954600090600160a01b900460ff161580610a3b5750336000908152600a602052604090205460ff165b610a765760405162461bcd60e51b8152600401808060200182810382526031815260200180611b836031913960400191505060405180910390fd5b6001600160a01b0384166000908152601160209081526040808320338452909152902054610aa4908361193d565b6001600160a01b038516600081815260116020908152604080832033808552908352928190208590558051948552519193600080516020611bb4833981519152929081900390910190a36000610af9836109f9565b6001600160a01b038616600090815260106020526040902054909150610b1f908261193d565b6001600160a01b038087166000908152601060205260408082209390935590861681522054610b4e908261179c565b6001600160a01b0380861660008181526010602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b6000610bbd600e54610fb8565b905090565b600e5481565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60055460ff1690565b60075481565b3360009081526011602090815260408083206001600160a01b0386168452909152812054610c29908361179c565b3360008181526011602090815260408083206001600160a01b038916808552908352928190208590558051948552519193600080516020611bb4833981519152929081900390910190a350600192915050565b6008546001600160a01b03163314610cc9576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b60005b8151811015610cfb57610cf3828281518110610ce457fe5b60200260200101516001611015565b600101610ccc565b5050565b6008546000906001600160a01b03163314610d4f576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b600e5415610d5c57600080fd5b610d65826109f9565b600e55506001919050565b600a6020526000908152604090205460ff1681565b6008546001600160a01b03163314610dd2576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b6001600160a01b038116610e175760405162461bcd60e51b8152600401808060200182810382526026815260200180611ad96026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031690565b6009546001600160a01b03163314610ecb5760405162461bcd60e51b8152600401808060200182810382526022815260200180611aff6022913960400191505060405180910390fd5b6009546008546040516001600160a01b0392831692909116907faa151555690c956fc3ea32f106bb9f119b5237a061eaa8557cff3e51e3792c8d90600090a3600954600880546001600160a01b0319166001600160a01b03909216919091179055565b600954600160a01b900460ff1681565b600f546001600160a01b038216600090815260106020526040812054909161086c91906116fa565b600d8181548110610f7657600080fd5b90600052602060002090600702016000915090508060000154908060010154908060020154908060030154908060040154908060050154908060060154905087565b600061086c600f54836116fa90919063ffffffff16565b6001600160a01b038116600090815260066020526040812061086c9061197f565b600b54600090610bbd9061100c906001600160a01b0316610f3e565b6002549061193d565b6008546001600160a01b03163314611062576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b6001600160a01b0382166110a75760405162461bcd60e51b8152600401808060200182810382526029815260200180611bd46029913960400191505060405180910390fd5b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b600c546001600160a01b031681565b3360009081526011602090815260408083206001600160a01b0386168452909152812054808310611196573360009081526011602090815260408083206001600160a01b03881684529091528120556111c5565b6111a0818461193d565b3360009081526011602090815260408083206001600160a01b03891684529091529020555b3360008181526011602090815260408083206001600160a01b038916808552908352928190205481519081529051929392600080516020611bb4833981519152929181900390910190a35060019392505050565b600954600090600160a01b900460ff1615806112445750336000908152600a602052604090205460ff165b61127f5760405162461bcd60e51b8152600401808060200182810382526031815260200180611b836031913960400191505060405180910390fd5b6000611296600f548461174390919063ffffffff16565b336000908152601060205260409020549091506112b3908261193d565b33600090815260106020526040808220929092556001600160a01b038616815220546112df908261179c565b6001600160a01b0385166000818152601060209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600c546000906001600160a01b0316331461135857600080fd5b6001600160a01b03821661136b57600080fd5b600b80546001600160a01b0319166001600160a01b038481169190911780835581166000908152601060209081526040808320660e3d2cfe61ffff19905593546002548551908152945193169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3604080516001600160a01b038416815290517f817c653428858ed536dc085c5d8273734c517b55de44b55f5c5877a75e3373a19181900360200190a15050600c80546001600160a01b0319169055600190565b8342111561148c576040805162461bcd60e51b815260206004820152601860248201527f5065726d69743a206578706972656420646561646c696e650000000000000000604482015290519081900360640190fd5b6001600160a01b03871660009081526006602052604081207f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9908990899089906114d59061197f565b604080516020808201979097526001600160a01b0395861681830152939094166060840152608083019190915260a082015260c08082018990528251808303909101815260e08201835280519084012060075461190160f01b610100840152610102830152610122808301829052835180840390910181526101428301808552815191860191909120600091829052610162840180865281905260ff8a166101828501526101a284018990526101c28401889052935191955092936001926101e280820193601f1981019281900390910190855afa1580156115bb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906115f15750896001600160a01b0316816001600160a01b0316145b61162c5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b216021913960400191505060405180910390fd5b6001600160a01b038a16600090815260066020526040902061164d90611983565b6116588a8a8a61198c565b50505050505050505050565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b600b546001600160a01b031681565b6008546001600160a01b031633146116eb576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b6009805460ff60a01b19169055565b600061173c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119dc565b9392505050565b6000826117525750600061086c565b8282028284828161175f57fe5b041461173c5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b426021913960400191505060405180910390fd5b60008282018381101561173c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008061180f8561080286670de0b6b3a7640000611743565b9050600d6040518060e00160405280858152602001838152602001878152602001611838610ff0565b815260200186815260200161184b610bb0565b81524360209182015282546001818101855560009485529382902083516007909202019081558282015193810193909355604080830151600280860191909155606084015160038601556080840151600486015560a0840151600586015560c0909301516006909401939093559054825142815291820152815185927f917acfbe39be6509ccf7fecb66a7e42ce2be1083c2d7dd3b9b7491dabddb8da4928290030190a2827f6012dbce857565c4a40974aa5de8373a761fc429077ef0c8c8611d1e20d63fb28261191a610bb0565b6040805192835260208301919091528051918290030190a2506001949350505050565b600061173c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a7e565b5490565b80546001019055565b6001600160a01b0380841660008181526011602090815260408083209487168084529482529182902085905581518581529151600080516020611bb48339815191529281900390910190a3505050565b60008183611a685760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a2d578181015183820152602001611a15565b50505050905090810190601f168015611a5a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611a7457fe5b0495945050505050565b60008184841115611ad05760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611a2d578181015183820152602001611a15565b50505090039056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a206d757374206265206e6577206f776e657220746f2070756c6c5a65726f537761705065726d69743a20496e76616c6964207369676e6174757265536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657246726f7a656e3a20746f6b656e2066726f7a656e206f72206d73672e73656e646572206e6f7420617574686f72697365648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92546726f7a656e3a206e6577206f70657261746f722063616e74206265207a65726f2061646472657373a2646970667358221220f92390d1e9189e7b5184344e8d911b15bfabd0b498c481ab277b55d94fed848a64736f6c63430007050033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c8063481c6a751161012557806395d89b41116100ad578063c4d66de81161007c578063c4d66de814610673578063d505accf14610699578063dd62ed3e146106ea578063ee99205c14610718578063fff4a3861461072057610211565b806395d89b411461060b5780639ce110d714610613578063a457c2d71461061b578063a9059cbb1461064757610211565b806373c69eb7116100f457806373c69eb71461053d5780637965d56d146105925780637ecebe00146105af5780639358928b146105d55780639415c6f4146105dd57610211565b8063481c6a75146104e35780635a96ac0a146105075780635c3d69a91461050f57806370a082311461051757610211565b80632df75cb1116101a8578063395093511161017757806339509351146103ab5780633f7aa547146103d757806340a5737f1461047a57806343d847a51461049757806346f68ee9146104bd57610211565b80632df75cb11461037557806330adf81f1461037d578063313ce567146103855780633644e515146103a357610211565b806318160ddd116101e457806318160ddd146103125780631bd396741461031a57806323b872dd146103375780632986c0e51461036d57610211565b8063058ecdb41461021657806306fdde031461024b578063089208d8146102c8578063095ea7b3146102d2575b600080fd5b6102396004803603604081101561022c57600080fd5b5080359060200135610728565b60408051918252519081900360200190f35b610253610872565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028d578181015183820152602001610275565b50505050905090810190601f1680156102ba5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d0610908565b005b6102fe600480360360408110156102e857600080fd5b506001600160a01b03813516906020013561099f565b604080519115158252519081900360200190f35b6102396109f3565b6102396004803603602081101561033057600080fd5b50356109f9565b6102fe6004803603606081101561034d57600080fd5b506001600160a01b03813581169160208101359091169060400135610a10565b610239610bb0565b610239610bc2565b610239610bc8565b61038d610bec565b6040805160ff9092168252519081900360200190f35b610239610bf5565b6102fe600480360360408110156103c157600080fd5b506001600160a01b038135169060200135610bfb565b6102d0600480360360208110156103ed57600080fd5b81019060208101813564010000000081111561040857600080fd5b82018360208201111561041a57600080fd5b8035906020019184602083028401116401000000008311171561043c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610c7c945050505050565b6102fe6004803603602081101561049057600080fd5b5035610cff565b6102fe600480360360208110156104ad57600080fd5b50356001600160a01b0316610d70565b6102d0600480360360208110156104d357600080fd5b50356001600160a01b0316610d85565b6104eb610e73565b604080516001600160a01b039092168252519081900360200190f35b6102d0610e82565b6102fe610f2e565b6102396004803603602081101561052d57600080fd5b50356001600160a01b0316610f3e565b61055a6004803603602081101561055357600080fd5b5035610f66565b604080519788526020880196909652868601949094526060860192909252608085015260a084015260c0830152519081900360e00190f35b610239600480360360208110156105a857600080fd5b5035610fb8565b610239600480360360208110156105c557600080fd5b50356001600160a01b0316610fcf565b610239610ff0565b6102d0600480360360408110156105f357600080fd5b506001600160a01b0381351690602001351515611015565b6102536110d2565b6104eb611133565b6102fe6004803603604081101561063157600080fd5b506001600160a01b038135169060200135611142565b6102fe6004803603604081101561065d57600080fd5b506001600160a01b038135169060200135611219565b6102fe6004803603602081101561068957600080fd5b50356001600160a01b031661133e565b6102d0600480360360e08110156106af57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135611437565b6102396004803603604081101561070057600080fd5b506001600160a01b0381358116916020013516611664565b6104eb61168f565b6102d061169e565b600b546000906001600160a01b0316331461074257600080fd5b60008061074d610ff0565b9050846107e357600254604080514281526020810192909252805186927f917acfbe39be6509ccf7fecb66a7e42ce2be1083c2d7dd3b9b7491dabddb8da492908290030190a2837f6012dbce857565c4a40974aa5de8373a761fc429077ef0c8c8611d1e20d63fb260006107bf610bb0565b6040805192835260208301919091528051918290030190a26002549250505061086c565b801561080f57610808816108026002548861174390919063ffffffff16565b906116fa565b9150610813565b8491505b600254610820908361179c565b60028190556001600160801b03101561083f576001600160801b036002555b60025461085590660e3d2cfe61ffff19906116fa565b600f556108638186866117f6565b50600254925050505b92915050565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b6008546001600160a01b03163314610955576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b6008546040516000916001600160a01b0316907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba908390a3600880546001600160a01b0319169055565b3360008181526011602090815260408083206001600160a01b03871680855290835281842086905581518681529151939490939092600080516020611bb4833981519152928290030190a350600192915050565b60025490565b600061086c600f548361174390919063ffffffff16565b600954600090600160a01b900460ff161580610a3b5750336000908152600a602052604090205460ff165b610a765760405162461bcd60e51b8152600401808060200182810382526031815260200180611b836031913960400191505060405180910390fd5b6001600160a01b0384166000908152601160209081526040808320338452909152902054610aa4908361193d565b6001600160a01b038516600081815260116020908152604080832033808552908352928190208590558051948552519193600080516020611bb4833981519152929081900390910190a36000610af9836109f9565b6001600160a01b038616600090815260106020526040902054909150610b1f908261193d565b6001600160a01b038087166000908152601060205260408082209390935590861681522054610b4e908261179c565b6001600160a01b0380861660008181526010602090815260409182902094909455805187815290519193928916927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3506001949350505050565b6000610bbd600e54610fb8565b905090565b600e5481565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60055460ff1690565b60075481565b3360009081526011602090815260408083206001600160a01b0386168452909152812054610c29908361179c565b3360008181526011602090815260408083206001600160a01b038916808552908352928190208590558051948552519193600080516020611bb4833981519152929081900390910190a350600192915050565b6008546001600160a01b03163314610cc9576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b60005b8151811015610cfb57610cf3828281518110610ce457fe5b60200260200101516001611015565b600101610ccc565b5050565b6008546000906001600160a01b03163314610d4f576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b600e5415610d5c57600080fd5b610d65826109f9565b600e55506001919050565b600a6020526000908152604090205460ff1681565b6008546001600160a01b03163314610dd2576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b6001600160a01b038116610e175760405162461bcd60e51b8152600401808060200182810382526026815260200180611ad96026913960400191505060405180910390fd5b6008546040516001600160a01b038084169216907fea8258f2d9ddb679928cf34b78cf645b7feda9acc828e4dd82d014eaae270eba90600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031690565b6009546001600160a01b03163314610ecb5760405162461bcd60e51b8152600401808060200182810382526022815260200180611aff6022913960400191505060405180910390fd5b6009546008546040516001600160a01b0392831692909116907faa151555690c956fc3ea32f106bb9f119b5237a061eaa8557cff3e51e3792c8d90600090a3600954600880546001600160a01b0319166001600160a01b03909216919091179055565b600954600160a01b900460ff1681565b600f546001600160a01b038216600090815260106020526040812054909161086c91906116fa565b600d8181548110610f7657600080fd5b90600052602060002090600702016000915090508060000154908060010154908060020154908060030154908060040154908060050154908060060154905087565b600061086c600f54836116fa90919063ffffffff16565b6001600160a01b038116600090815260066020526040812061086c9061197f565b600b54600090610bbd9061100c906001600160a01b0316610f3e565b6002549061193d565b6008546001600160a01b03163314611062576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b6001600160a01b0382166110a75760405162461bcd60e51b8152600401808060200182810382526029815260200180611bd46029913960400191505060405180910390fd5b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108fe5780601f106108d3576101008083540402835291602001916108fe565b600c546001600160a01b031681565b3360009081526011602090815260408083206001600160a01b0386168452909152812054808310611196573360009081526011602090815260408083206001600160a01b03881684529091528120556111c5565b6111a0818461193d565b3360009081526011602090815260408083206001600160a01b03891684529091529020555b3360008181526011602090815260408083206001600160a01b038916808552908352928190205481519081529051929392600080516020611bb4833981519152929181900390910190a35060019392505050565b600954600090600160a01b900460ff1615806112445750336000908152600a602052604090205460ff165b61127f5760405162461bcd60e51b8152600401808060200182810382526031815260200180611b836031913960400191505060405180910390fd5b6000611296600f548461174390919063ffffffff16565b336000908152601060205260409020549091506112b3908261193d565b33600090815260106020526040808220929092556001600160a01b038616815220546112df908261179c565b6001600160a01b0385166000818152601060209081526040918290209390935580518681529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060019392505050565b600c546000906001600160a01b0316331461135857600080fd5b6001600160a01b03821661136b57600080fd5b600b80546001600160a01b0319166001600160a01b038481169190911780835581166000908152601060209081526040808320660e3d2cfe61ffff19905593546002548551908152945193169391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a3604080516001600160a01b038416815290517f817c653428858ed536dc085c5d8273734c517b55de44b55f5c5877a75e3373a19181900360200190a15050600c80546001600160a01b0319169055600190565b8342111561148c576040805162461bcd60e51b815260206004820152601860248201527f5065726d69743a206578706972656420646561646c696e650000000000000000604482015290519081900360640190fd5b6001600160a01b03871660009081526006602052604081207f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9908990899089906114d59061197f565b604080516020808201979097526001600160a01b0395861681830152939094166060840152608083019190915260a082015260c08082018990528251808303909101815260e08201835280519084012060075461190160f01b610100840152610102830152610122808301829052835180840390910181526101428301808552815191860191909120600091829052610162840180865281905260ff8a166101828501526101a284018990526101c28401889052935191955092936001926101e280820193601f1981019281900390910190855afa1580156115bb573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906115f15750896001600160a01b0316816001600160a01b0316145b61162c5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b216021913960400191505060405180910390fd5b6001600160a01b038a16600090815260066020526040902061164d90611983565b6116588a8a8a61198c565b50505050505050505050565b6001600160a01b03918216600090815260116020908152604080832093909416825291909152205490565b600b546001600160a01b031681565b6008546001600160a01b031633146116eb576040805162461bcd60e51b81526020600482018190526024820152600080516020611b63833981519152604482015290519081900360640190fd5b6009805460ff60a01b19169055565b600061173c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506119dc565b9392505050565b6000826117525750600061086c565b8282028284828161175f57fe5b041461173c5760405162461bcd60e51b8152600401808060200182810382526021815260200180611b426021913960400191505060405180910390fd5b60008282018381101561173c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60008061180f8561080286670de0b6b3a7640000611743565b9050600d6040518060e00160405280858152602001838152602001878152602001611838610ff0565b815260200186815260200161184b610bb0565b81524360209182015282546001818101855560009485529382902083516007909202019081558282015193810193909355604080830151600280860191909155606084015160038601556080840151600486015560a0840151600586015560c0909301516006909401939093559054825142815291820152815185927f917acfbe39be6509ccf7fecb66a7e42ce2be1083c2d7dd3b9b7491dabddb8da4928290030190a2827f6012dbce857565c4a40974aa5de8373a761fc429077ef0c8c8611d1e20d63fb28261191a610bb0565b6040805192835260208301919091528051918290030190a2506001949350505050565b600061173c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a7e565b5490565b80546001019055565b6001600160a01b0380841660008181526011602090815260408083209487168084529482529182902085905581518581529151600080516020611bb48339815191529281900390910190a3505050565b60008183611a685760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a2d578181015183820152602001611a15565b50505050905090810190601f168015611a5a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611a7457fe5b0495945050505050565b60008184841115611ad05760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611a2d578181015183820152602001611a15565b50505090039056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a206d757374206265206e6577206f776e657220746f2070756c6c5a65726f537761705065726d69743a20496e76616c6964207369676e6174757265536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657246726f7a656e3a20746f6b656e2066726f7a656e206f72206d73672e73656e646572206e6f7420617574686f72697365648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92546726f7a656e3a206e6577206f70657261746f722063616e74206265207a65726f2061646472657373a2646970667358221220f92390d1e9189e7b5184344e8d911b15bfabd0b498c481ab277b55d94fed848a64736f6c63430007050033
Deployed Bytecode Sourcemap
36442:7518:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39019:894;;;;;;;;;;;;;;;;-1:-1:-1;39019:894:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;20617:77;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34837:159;;;:::i;:::-;;42646:226;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42646:226:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;21700:94;;;:::i;40969:124::-;;;;;;;;;;;;;;;;-1:-1:-1;40969:124:0;;:::i;42077:561::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;42077:561:0;;;;;;;;;;;;;;;;;:::i;41415:95::-;;;:::i;37198:17::-;;;:::i;32366:108::-;;;:::i;21542:77::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32483:31;;;:::i;43123:322::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43123:322:0;;;;;;;;:::i;36193:240::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36193:240:0;;-1:-1:-1;36193:240:0;;-1:-1:-1;;;;;36193:240:0:i;38667:178::-;;;;;;;;;;;;;;;;-1:-1:-1;38667:178:0;;:::i;35636:55::-;;;;;;;;;;;;;;;;-1:-1:-1;35636:55:0;-1:-1:-1;;;;;35636:55:0;;:::i;35004:261::-;;;;;;;;;;;;;;;;-1:-1:-1;35004:261:0;-1:-1:-1;;;;;35004:261:0;;:::i;34610:90::-;;;:::i;:::-;;;;-1:-1:-1;;;;;34610:90:0;;;;;;;;;;;;;;35277:221;;;:::i;35599:32::-;;;:::i;40817:144::-;;;;;;;;;;;;;;;;-1:-1:-1;40817:144:0;-1:-1:-1;;;;;40817:144:0;;:::i;37166:23::-;;;;;;;;;;;;;;;;-1:-1:-1;37166:23:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41101:120;;;;;;;;;;;;;;;;-1:-1:-1;41101:120:0;;:::i;33862:::-;;;;;;;;;;;;;;;;-1:-1:-1;33862:120:0;-1:-1:-1;;;;;33862:120:0;;:::i;41275:132::-;;;:::i;35968:217::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35968:217:0;;;;;;;;;;:::i;20827:81::-;;;:::i;36665:26::-;;;:::i;43453:504::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43453:504:0;;;;;;;;:::i;41518:388::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41518:388:0;;;;;;;;:::i;38177:482::-;;;;;;;;;;;;;;;;-1:-1:-1;38177:482:0;-1:-1:-1;;;;;38177:482:0;;:::i;33024:770::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33024:770:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41914:155::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41914:155:0;;;;;;;;;;:::i;36628:30::-;;;:::i;35878:84::-;;;:::i;39019:894::-;36583:15;;39106:7;;-1:-1:-1;;;;;36583:15:0;36569:10;:29;36560:40;;;;;;39127:20:::1;39158:26:::0;39187:19:::1;:17;:19::i;:::-;39158:48:::0;-1:-1:-1;39224:12:0;39219:372:::1;;39295:12;::::0;39259:50:::1;::::0;;39278:15:::1;39259:50:::0;;::::1;::::0;::::1;::::0;;;;;;39270:6;;39259:50:::1;::::0;;;;;;;::::1;39340:6;39329:31;39348:1;39351:7;:5;:7::i;:::-;39329:31;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;::::1;39382:12;;39375:19;;;;;;39219:372;39417:22:::0;;39412:179:::1;;39471:53;39504:18;39471:27;39484:12;;39471:7;:11;;:27;;;;:::i;:::-;:31:::0;::::1;:53::i;:::-;39456:68;;39412:179;;;39572:7;39557:22;;39412:179;39618:12;::::0;:32:::1;::::0;39636:12;39618:16:::1;:32::i;:::-;39603:12;:47:::0;;;-1:-1:-1;;;;;;39663:85:0::1;;;-1:-1:-1::0;;;;;39711:12:0::1;:25:::0;39663:85:::1;39795:12;::::0;39779:30:::1;::::0;-1:-1:-1;;37570:54:0;39779:14:::1;:30::i;:::-;39760:16;:49:::0;39822:51:::1;39836:18:::0;39856:7;39865:6;39822:12:::1;:51::i;:::-;;39893:12;;39886:19;;;;36611:1;39019:894:::0;;;;:::o;20617:77::-;20683:5;20676:12;;;;;;;;-1:-1:-1;;20676:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20654:13;;20676:12;;20683:5;;20676:12;;20683:5;20676:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20617:77;:::o;34837:159::-;34751:6;;-1:-1:-1;;;;;34751:6:0;34761:10;34751:20;34742:67;;;;;-1:-1:-1;;;34742:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34742:67:0;;;;;;;;;;;;;;;34938:6:::1;::::0;34921:37:::1;::::0;34954:1:::1;::::0;-1:-1:-1;;;;;34938:6:0::1;::::0;34921:37:::1;::::0;34954:1;;34921:37:::1;34969:6;:19:::0;;-1:-1:-1;;;;;;34969:19:0::1;::::0;;34837:159::o;42646:226::-;42755:10;42722:4;42740:27;;;:13;:27;;;;;;;;-1:-1:-1;;;;;42740:38:0;;;;;;;;;;;:46;;;42803:38;;;;;;;42722:4;;42740:38;;42755:10;;-1:-1:-1;;;;;;;;;;;42803:38:0;;;;;;;-1:-1:-1;42860:4:0;42646:226;;;;:::o;21700:94::-;21776:12;;21700:94;:::o;40969:124::-;41030:4;41055:30;41067:16;;41055:6;:10;;:30;;;;:::i;42077:561::-;35752:13;;42192:4;;-1:-1:-1;;;35752:13:0;;;;35751:14;;:51;;-1:-1:-1;35791:10:0;35769:33;;;;:21;:33;;;;;;;;35751:51;35743:113;;;;-1:-1:-1;;;35743:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42247:21:0;::::1;;::::0;;;:13:::1;:21;::::0;;;;;;;42270:10:::1;42247:35:::0;;;;;;;;:48:::1;::::0;42288:5;42247:39:::1;:48::i;:::-;-1:-1:-1::0;;;;;42209:21:0;::::1;;::::0;;;:13:::1;:21;::::0;;;;;;;42232:10:::1;42209:35:::0;;;;;;;;;;:86;;;42310:66;;;;;;42232:10;;-1:-1:-1;;;;;;;;;;;42310:66:0;;;;;;;;;::::1;42389:16;42408:23;42424:5;42408:14;:23::i;:::-;-1:-1:-1::0;;;;;42465:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;;42389:42;;-1:-1:-1;42465:34:0::1;::::0;42389:42;42465:22:::1;:34::i;:::-;-1:-1:-1::0;;;;;42442:20:0;;::::1;;::::0;;;:12:::1;:20;::::0;;;;;:57;;;;42531:16;;::::1;::::0;;;;:32:::1;::::0;42553:8;42531:20:::1;:32::i;:::-;-1:-1:-1::0;;;;;42510:18:0;;::::1;;::::0;;;:12:::1;:18;::::0;;;;;;;;:53;;;;42579:27;;;;;;;42510:18;;42579:27;;::::1;::::0;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;42626:4:0::1;::::0;42077:561;-1:-1:-1;;;;42077:561:0:o;41415:95::-;41454:4;41479:23;41495:5;;41479:14;:23::i;:::-;41472:30;;41415:95;:::o;37198:17::-;;;;:::o;32366:108::-;32408:66;32366:108;:::o;21542:77::-;21604:9;;;;21542:77;:::o;32483:31::-;;;;:::o;43123:322::-;43287:10;43214:4;43272:27;;;:13;:27;;;;;;;;-1:-1:-1;;;;;43272:38:0;;;;;;;;;;:56;;43316:10;43272:42;:56::i;:::-;43246:10;43231:27;;;;:13;:27;;;;;;;;-1:-1:-1;;;;;43231:38:0;;;;;;;;;;;;:97;;;43344:71;;;;;;43231:38;;-1:-1:-1;;;;;;;;;;;43344:71:0;;;;;;;;;;-1:-1:-1;43433:4:0;43123:322;;;;:::o;36193:240::-;34751:6;;-1:-1:-1;;;;;34751:6:0;34761:10;34751:20;34742:67;;;;;-1:-1:-1;;;34742:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34742:67:0;;;;;;;;;;;;;;;36306:6:::1;36301:127;36322:24;:31;36318:1;:35;36301:127;;;36367:53;36387:24;36412:1;36387:27;;;;;;;;;;;;;;36415:4;36367:19;:53::i;:::-;36355:3;;36301:127;;;;36193:240:::0;:::o;38667:178::-;34751:6;;38733:4;;-1:-1:-1;;;;;34751:6:0;34761:10;34751:20;34742:67;;;;;-1:-1:-1;;;34742:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34742:67:0;;;;;;;;;;;;;;;38760:5:::1;::::0;:10;38751:21:::1;;;::::0;::::1;;38791:24;38807:6;38791:14;:24::i;:::-;38783:5;:32:::0;-1:-1:-1;38833:4:0::1;38667:178:::0;;;:::o;35636:55::-;;;;;;;;;;;;;;;:::o;35004:261::-;34751:6;;-1:-1:-1;;;;;34751:6:0;34761:10;34751:20;34742:67;;;;;-1:-1:-1;;;34742:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34742:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35107:23:0;::::1;35098:75;;;;-1:-1:-1::0;;;35098:75:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35206:6;::::0;35189:36:::1;::::0;-1:-1:-1;;;;;35189:36:0;;::::1;::::0;35206:6:::1;::::0;35189:36:::1;::::0;35206:6:::1;::::0;35189:36:::1;35236:9;:21:::0;;-1:-1:-1;;;;;;35236:21:0::1;-1:-1:-1::0;;;;;35236:21:0;;;::::1;::::0;;;::::1;::::0;;35004:261::o;34610:90::-;34686:6;;-1:-1:-1;;;;;34686:6:0;34610:90;:::o;35277:221::-;35361:9;;-1:-1:-1;;;;;35361:9:0;35347:10;:23;35338:71;;;;-1:-1:-1;;;35338:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35450:9;;35442:6;;35425:36;;-1:-1:-1;;;;;35450:9:0;;;;35442:6;;;;35425:36;;35450:9;;35425:36;35481:9;;35472:6;:18;;-1:-1:-1;;;;;;35472:18:0;-1:-1:-1;;;;;35481:9:0;;;35472:18;;;;;;35277:221::o;35599:32::-;;;-1:-1:-1;;;35599:32:0;;;;;:::o;40817:144::-;40935:16;;-1:-1:-1;;;;;40910:19:0;;40882:7;40910:19;;;:12;:19;;;;;;40882:7;;40910:43;;:19;:23;:43::i;37166:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41101:120::-;41160:4;41185:28;41195:16;;41185:4;:8;;:28;;;;:::i;33862:120::-;-1:-1:-1;;;;;33950:14:0;;33923:7;33950:14;;;:7;:14;;;;;:24;;:22;:24::i;41275:132::-;41380:15;;41326:4;;41351:48;;41369:28;;-1:-1:-1;;;;;41380:15:0;41369:9;:28::i;:::-;41351:12;;;:16;:48::i;35968:217::-;34751:6;;-1:-1:-1;;;;;34751:6:0;34761:10;34751:20;34742:67;;;;;-1:-1:-1;;;34742:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34742:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;36063:22:0;::::1;36055:76;;;;-1:-1:-1::0;;;36055:76:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;36138:31:0;;;::::1;;::::0;;;:21:::1;:31;::::0;;;;:40;;-1:-1:-1;;36138:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35968:217::o;20827:81::-;20895:7;20888:14;;;;;;;;-1:-1:-1;;20888:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20866:13;;20888:14;;20895:7;;20888:14;;20895:7;20888:14;;;;;;;;;;;;;;;;;;;;;;;;36665:26;;;-1:-1:-1;;;;;36665:26:0;;:::o;43453:504::-;43600:10;43549:4;43585:27;;;:13;:27;;;;;;;;-1:-1:-1;;;;;43585:38:0;;;;;;;;;;43638:27;;;43634:207;;43697:10;43723:1;43682:27;;;:13;:27;;;;;;;;-1:-1:-1;;;;;43682:38:0;;;;;;;;;:42;43634:207;;;43798:31;:8;43812:15;43798:12;:31::i;:::-;43772:10;43757:27;;;;:13;:27;;;;;;;;-1:-1:-1;;;;;43757:38:0;;;;;;;;;:72;43634:207;43866:10;43887:27;;;;:13;:27;;;;;;;;-1:-1:-1;;;;;43856:71:0;;43887:38;;;;;;;;;;;43856:71;;;;;;;;;43866:10;-1:-1:-1;;;;;;;;;;;43856:71:0;;;;;;;;;;-1:-1:-1;43945:4:0;;43453:504;-1:-1:-1;;;43453:504:0:o;41518:388::-;35752:13;;41614:4;;-1:-1:-1;;;35752:13:0;;;;35751:14;;:51;;-1:-1:-1;35791:10:0;35769:33;;;;:21;:33;;;;;;;;35751:51;35743:113;;;;-1:-1:-1;;;35743:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41631:16:::1;41650:29;41661:16;;41650:5;:9;;:29;;;;:::i;:::-;41733:10;41719:26;::::0;;;:12:::1;:26;::::0;;;;;41631:48;;-1:-1:-1;41719:42:0::1;::::0;41631:48;41719:30:::1;:42::i;:::-;41704:10;41690:26;::::0;;;:12:::1;:26;::::0;;;;;:71;;;;-1:-1:-1;;;;;41793:18:0;::::1;::::0;;;;:34:::1;::::0;41817:8;41793:22:::1;:34::i;:::-;-1:-1:-1::0;;;;;41772:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;;;;;:55;;;;41843:33;;;;;;;41772:18;;41853:10:::1;::::0;41843:33:::1;::::0;;;;;;;;::::1;-1:-1:-1::0;41894:4:0::1;::::0;41518:388;-1:-1:-1;;;41518:388:0:o;38177:482::-;38285:11;;38244:4;;-1:-1:-1;;;;;38285:11:0;38271:10;:25;38262:36;;;;;;-1:-1:-1;;;;;38318:30:0;;38309:41;;;;;;38361:15;:34;;-1:-1:-1;;;;;;38361:34:0;-1:-1:-1;;;;;38361:34:0;;;;;;;;;;38420:15;;-1:-1:-1;38406:31:0;;;:12;:31;;;;;;;;-1:-1:-1;;38406:44:0;;38492:15;;38509:12;;38468:55;;;;;;;38492:15;;;-1:-1:-1;;38468:55:0;;;;;;;;;;38539:45;;;-1:-1:-1;;;;;38539:45:0;;;;;;;;;;;;;;;-1:-1:-1;;38605:11:0;:24;;-1:-1:-1;;;;;;38605:24:0;;;-1:-1:-1;;38177:482:0:o;33024:770::-;33269:8;33250:15;:27;;33242:64;;;;;-1:-1:-1;;;33242:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33415:14:0;;33319:18;33415:14;;;:7;:14;;;;;32408:66;;33391:5;;33398:7;;33407:6;;33415:24;;:22;:24::i;:::-;33363:87;;;;;;;;;;;-1:-1:-1;;;;;33363:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33353:98;;;;;;33523:16;;-1:-1:-1;;;33490:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33480:73;;;;;;;;;-1:-1:-1;33583:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33353:98;;-1:-1:-1;33480:73:0;;33583:25;;;;;;;-1:-1:-1;;33583:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33583:25:0;;-1:-1:-1;;33583:25:0;;;-1:-1:-1;;;;;;;33627:20:0;;;;;;:39;;;33661:5;-1:-1:-1;;;;;33651:15:0;:6;-1:-1:-1;;;;;33651:15:0;;33627:39;33619:85;;;;-1:-1:-1;;;33619:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33717:14:0;;;;;;:7;:14;;;;;:26;;:24;:26::i;:::-;33754:32;33763:5;33770:7;33779:6;33754:8;:32::i;:::-;33024:770;;;;;;;;;;:::o;41914:155::-;-1:-1:-1;;;;;42027:23:0;;;41999:7;42027:23;;;:13;:23;;;;;;;;:34;;;;;;;;;;;;;41914:155::o;36628:30::-;;;-1:-1:-1;;;;;36628:30:0;;:::o;35878:84::-;34751:6;;-1:-1:-1;;;;;34751:6:0;34761:10;34751:20;34742:67;;;;;-1:-1:-1;;;34742:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;34742:67:0;;;;;;;;;;;;;;;35935:13:::1;:21:::0;;-1:-1:-1;;;;35935:21:0::1;::::0;;35878:84::o;3216:132::-;3274:7;3301:39;3305:1;3308;3301:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;3294:46;3216:132;-1:-1:-1;;;3216:132:0:o;2269:471::-;2327:7;2572:6;2568:47;;-1:-1:-1;2602:1:0;2595:8;;2568:47;2639:5;;;2643:1;2639;:5;:1;2663:5;;;;;:10;2655:56;;;;-1:-1:-1;;;2655:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;915:181;973:7;1005:5;;;1029:6;;;;1021:46;;;;;-1:-1:-1;;;1021:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;40112:697;40209:4;;40248:47;40273:20;40248:19;:7;40261:4;40248:11;:19::i;:47::-;40227:68;;40308:7;40322:319;;;;;;;;40353:6;40322:319;;;;40382:13;40322:319;;;;40444:20;40322:319;;;;40497:19;:17;:19::i;:::-;40322:319;;;;40546:7;40322:319;;;;40575:7;:5;:7::i;:::-;40322:319;;40617:12;40322:319;;;;;40308:334;;;;;;;;-1:-1:-1;40308:334:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40704:12;;40668:50;;40687:15;40668:50;;;;;;;;40679:6;;40668:50;;;;;;;;40745:6;40734:43;40753:13;40768:7;:5;:7::i;:::-;40734:43;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40797:4:0;;40112:697;-1:-1:-1;;;;40112:697:0:o;1379:136::-;1437:7;1464:43;1468:1;1471;1464:43;;;;;;;;;;;;;;;;;:3;:43::i;30189:114::-;30281:14;;30189:114::o;30311:181::-;30465:19;;30483:1;30465:19;;;30311:181::o;42917:198::-;-1:-1:-1;;;;;43021:20:0;;;;;;;:13;:20;;;;;;;;:29;;;;;;;;;;;;;:37;;;43074:33;;;;;;;-1:-1:-1;;;;;;;;;;;43074:33:0;;;;;;;;;42917:198;;;:::o;3844:278::-;3930:7;3965:12;3958:5;3950:28;;;;-1:-1:-1;;;3950:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3989:9;4005:1;4001;:5;;;;;;;3844:278;-1:-1:-1;;;;;3844:278:0:o;1818:192::-;1904:7;1940:12;1932:6;;;;1924:29;;;;-1:-1:-1;;;1924:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1976:5:0;;;1818:192::o
Swarm Source
ipfs://f92390d1e9189e7b5184344e8d911b15bfabd0b498c481ab277b55d94fed848a
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.