Token DAIFI
Polygon Sponsored slots available. Book your slot here!
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
10,000,000,000 DAIFI
Holders:
405 addresses
Contract:
Decimals:
18
Balance
76,458.8233098512148 DAIFIValue
$0.00
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DAIFI
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-11 */ /** DAIFI */ // SPDX-License-Identifier: licensed pragma solidity ^0.8.12; abstract contract Context { function _msgSender() internal view virtual returns (address ) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/26181 return msg.data; } } interface DAIFIDeployer { // @dev Returns the amount of tokens in existence. function totalSupply() external view returns (uint256); // @dev Returns the token decimals. function decimals() external view returns (uint8); // @dev Returns the token symbol. function symbol() external view returns (string memory); //@dev Returns the token name. function name() external view returns (string memory); //@dev Returns the bep token owner. function getOwner() external view returns (address); //@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); } contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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"); _; } function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract DAIFI is DAIFIDeployer, Context, Ownable { // common addresses address private _owner; address private DAIFITeam; address private CharityDAIFI; // token liquidity metadata uint public override totalSupply; uint8 public override decimals = 18; mapping(address => uint) public balances; mapping(address => mapping(address => uint)) public allowances; // token title metadata string public override name = "DAIFI"; string public override symbol = "DAIFI"; // EVENTS // (now in interface) event Transfer(address indexed from, address indexed to, uint value); // (now in interface) event Approval(address indexed owner, address indexed spender, uint value); // On init of contract we're going to set the admin and give them all tokens. constructor(uint totalSupplyValue, address DAIFITeamAddress, address CharityDAIFIAddress) { // set total supply totalSupply = totalSupplyValue; // designate addresses _owner = msg.sender; DAIFITeam = DAIFITeamAddress; CharityDAIFI = CharityDAIFIAddress; // split the tokens according to agreed upon percentages balances[DAIFITeam] = totalSupply * 4 / 100; balances[CharityDAIFI] = totalSupply * 4 / 100; balances[_owner] = totalSupply * 92 / 100; } // Get the address of the token's owner function getOwner() public view override returns(address) { return _owner; } // Get the address of the token's DAIFITeam pot function getDeveloper() public view returns(address) { return DAIFITeam; } // Get the address of the token's founder pot function getFounder() public view returns(address) { return CharityDAIFI; } // Get the balance of an account function balanceOf(address account) public view override returns(uint) { return balances[account]; } // Transfer balance from one user to another function transfer(address to, uint value) public override returns(bool) { require(value > 0, "Transfer value has to be higher than 0."); require(balanceOf(msg.sender) >= value, "Balance is too low to make transfer."); //withdraw the taxed and burned percentages from the total value uint taxTBD = value * 7 / 100; uint burnTBD = value * 0 / 100; uint valueAfterTaxAndBurn = value - taxTBD - burnTBD; // perform the transfer operation balances[to] += valueAfterTaxAndBurn; balances[msg.sender] -= value; emit Transfer(msg.sender, to, value); // finally, we burn and tax the extras percentage balances[_owner] += taxTBD + burnTBD; _burn(_owner, burnTBD); return true; } // approve a specific address as a spender for your account, with a specific spending limit function approve(address spender, uint value) public override returns(bool) { allowances[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } // allowance function allowance(address owner , address spender) public view returns(uint) { return allowances[owner][spender]; } // an approved spender can transfer currency from one account to another up to their spending limit function transferFrom(address from, address to, uint value) public override returns(bool) { require(allowances[from][msg.sender] > 0, "No Allowance for this address."); require(allowances[from][msg.sender] >= value, "Allowance too low for transfer."); require(balances[from] >= value, "Balance is too low to make transfer."); balances[to] += value; balances[from] -= value; emit Transfer(from, to, value); return true; } // function to allow users to burn currency from their account function burn(uint256 amount) public returns(bool) { _burn(msg.sender, amount); return true; } // intenal functions // burn amount of currency from specific account function _burn(address account, uint256 amount) internal { require(account != address(0), "You can't burn from zero address."); require(balances[account] >= amount, "Burn amount exceeds balance at address."); balances[account] -= amount; totalSupply -= amount; emit Transfer(account, address(0), amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"totalSupplyValue","type":"uint256"},{"internalType":"address","name":"DAIFITeamAddress","type":"address"},{"internalType":"address","name":"CharityDAIFIAddress","type":"address"}],"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":"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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowances","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":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDeveloper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFounder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526012600560006101000a81548160ff021916908360ff1602179055506040518060400160405280600581526020017f4441494649000000000000000000000000000000000000000000000000000000815250600890805190602001906200006d92919062000404565b506040518060400160405280600581526020017f444149464900000000000000000000000000000000000000000000000000000081525060099080519060200190620000bb92919062000404565b50348015620000c957600080fd5b50604051620022e2380380620022e28339818101604052810190620000ef919062000559565b600062000101620003fc60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508260048190555033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506064600480546200027b9190620005e4565b62000287919062000674565b60066000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550606460048054620002fe9190620005e4565b6200030a919062000674565b60066000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506064605c600454620003829190620005e4565b6200038e919062000674565b60066000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505062000711565b600033905090565b8280546200041290620006db565b90600052602060002090601f01602090048101928262000436576000855562000482565b82601f106200045157805160ff191683800117855562000482565b8280016001018555821562000482579182015b828111156200048157825182559160200191906001019062000464565b5b50905062000491919062000495565b5090565b5b80821115620004b057600081600090555060010162000496565b5090565b600080fd5b6000819050919050565b620004ce81620004b9565b8114620004da57600080fd5b50565b600081519050620004ee81620004c3565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200052182620004f4565b9050919050565b620005338162000514565b81146200053f57600080fd5b50565b600081519050620005538162000528565b92915050565b600080600060608486031215620005755762000574620004b4565b5b60006200058586828701620004dd565b9350506020620005988682870162000542565b9250506040620005ab8682870162000542565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620005f182620004b9565b9150620005fe83620004b9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200063a5762000639620005b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200068182620004b9565b91506200068e83620004b9565b925082620006a157620006a062000645565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006f457607f821691505b602082108114156200070b576200070a620006ac565b5b50919050565b611bc180620007216000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063946bcc3011610071578063946bcc30146102f957806395d89b4114610317578063a9059cbb14610335578063dd62ed3e14610365578063f2fde38b1461039557610116565b8063715018a6146102955780637a4440721461029f578063893d20e8146102bd5780638da5cb5b146102db57610116565b806327e235e3116100e957806327e235e3146101b7578063313ce567146101e757806342966c681461020557806355b6ed5c1461023557806370a082311461026557610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103b1565b60405161013091906112f0565b60405180910390f35b610153600480360381019061014e91906113ab565b61043f565b6040516101609190611406565b60405180910390f35b610171610531565b60405161017e9190611430565b60405180910390f35b6101a1600480360381019061019c919061144b565b610537565b6040516101ae9190611406565b60405180910390f35b6101d160048036038101906101cc919061149e565b610854565b6040516101de9190611430565b60405180910390f35b6101ef61086c565b6040516101fc91906114e7565b60405180910390f35b61021f600480360381019061021a9190611502565b61087f565b60405161022c9190611406565b60405180910390f35b61024f600480360381019061024a919061152f565b610894565b60405161025c9190611430565b60405180910390f35b61027f600480360381019061027a919061149e565b6108b9565b60405161028c9190611430565b60405180910390f35b61029d610902565b005b6102a7610a55565b6040516102b4919061157e565b60405180910390f35b6102c5610a7f565b6040516102d2919061157e565b60405180910390f35b6102e3610aa9565b6040516102f0919061157e565b60405180910390f35b610301610ad2565b60405161030e919061157e565b60405180910390f35b61031f610afc565b60405161032c91906112f0565b60405180910390f35b61034f600480360381019061034a91906113ab565b610b8a565b60405161035c9190611406565b60405180910390f35b61037f600480360381019061037a919061152f565b610e3b565b60405161038c9190611430565b60405180910390f35b6103af60048036038101906103aa919061149e565b610ec2565b005b600880546103be906115c8565b80601f01602080910402602001604051908101604052809291908181526020018280546103ea906115c8565b80156104375780601f1061040c57610100808354040283529160200191610437565b820191906000526020600020905b81548152906001019060200180831161041a57829003601f168201915b505050505081565b600081600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161051f9190611430565b60405180910390a36001905092915050565b60045481565b600080600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611646565b60405180910390fd5b81600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad906116b2565b60405180910390fd5b81600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072f90611744565b60405180910390fd5b81600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107879190611793565b9250508190555081600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107dd91906117e9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108419190611430565b60405180910390a3600190509392505050565b60066020528060005260406000206000915090505481565b600560009054906101000a900460ff1681565b600061088b3383611084565b60019050919050565b6007602052816000526040600020602052806000526040600020600091509150505481565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61090a61124f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90611869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60098054610b09906115c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b35906115c8565b8015610b825780601f10610b5757610100808354040283529160200191610b82565b820191906000526020600020905b815481529060010190602001808311610b6557829003601f168201915b505050505081565b6000808211610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc5906118fb565b60405180910390fd5b81610bd8336108b9565b1015610c19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1090611744565b60405180910390fd5b60006064600784610c2a919061191b565b610c3491906119a4565b905060006064600085610c47919061191b565b610c5191906119a4565b90506000818386610c6291906117e9565b610c6c91906117e9565b905080600660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610cbd9190611793565b9250508190555084600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d1391906117e9565b925050819055508573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610d779190611430565b60405180910390a38183610d8b9190611793565b60066000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dfb9190611793565b92505081905550610e2e600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611084565b6001935050505092915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610eca61124f565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90611869565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe90611a47565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb90611ad9565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d90611b6b565b60405180910390fd5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c591906117e9565b9250508190555080600460008282546111de91906117e9565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112439190611430565b60405180910390a35050565b600033905090565b600081519050919050565b600082825260208201905092915050565b60005b83811015611291578082015181840152602081019050611276565b838111156112a0576000848401525b50505050565b6000601f19601f8301169050919050565b60006112c282611257565b6112cc8185611262565b93506112dc818560208601611273565b6112e5816112a6565b840191505092915050565b6000602082019050818103600083015261130a81846112b7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061134282611317565b9050919050565b61135281611337565b811461135d57600080fd5b50565b60008135905061136f81611349565b92915050565b6000819050919050565b61138881611375565b811461139357600080fd5b50565b6000813590506113a58161137f565b92915050565b600080604083850312156113c2576113c1611312565b5b60006113d085828601611360565b92505060206113e185828601611396565b9150509250929050565b60008115159050919050565b611400816113eb565b82525050565b600060208201905061141b60008301846113f7565b92915050565b61142a81611375565b82525050565b60006020820190506114456000830184611421565b92915050565b60008060006060848603121561146457611463611312565b5b600061147286828701611360565b935050602061148386828701611360565b925050604061149486828701611396565b9150509250925092565b6000602082840312156114b4576114b3611312565b5b60006114c284828501611360565b91505092915050565b600060ff82169050919050565b6114e1816114cb565b82525050565b60006020820190506114fc60008301846114d8565b92915050565b60006020828403121561151857611517611312565b5b600061152684828501611396565b91505092915050565b6000806040838503121561154657611545611312565b5b600061155485828601611360565b925050602061156585828601611360565b9150509250929050565b61157881611337565b82525050565b6000602082019050611593600083018461156f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115e057607f821691505b602082108114156115f4576115f3611599565b5b50919050565b7f4e6f20416c6c6f77616e636520666f72207468697320616464726573732e0000600082015250565b6000611630601e83611262565b915061163b826115fa565b602082019050919050565b6000602082019050818103600083015261165f81611623565b9050919050565b7f416c6c6f77616e636520746f6f206c6f7720666f72207472616e736665722e00600082015250565b600061169c601f83611262565b91506116a782611666565b602082019050919050565b600060208201905081810360008301526116cb8161168f565b9050919050565b7f42616c616e636520697320746f6f206c6f7720746f206d616b65207472616e7360008201527f6665722e00000000000000000000000000000000000000000000000000000000602082015250565b600061172e602483611262565b9150611739826116d2565b604082019050919050565b6000602082019050818103600083015261175d81611721565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061179e82611375565b91506117a983611375565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156117de576117dd611764565b5b828201905092915050565b60006117f482611375565b91506117ff83611375565b92508282101561181257611811611764565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611853602083611262565b915061185e8261181d565b602082019050919050565b6000602082019050818103600083015261188281611846565b9050919050565b7f5472616e736665722076616c75652068617320746f206265206869676865722060008201527f7468616e20302e00000000000000000000000000000000000000000000000000602082015250565b60006118e5602783611262565b91506118f082611889565b604082019050919050565b60006020820190508181036000830152611914816118d8565b9050919050565b600061192682611375565b915061193183611375565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561196a57611969611764565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006119af82611375565b91506119ba83611375565b9250826119ca576119c9611975565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a31602683611262565b9150611a3c826119d5565b604082019050919050565b60006020820190508181036000830152611a6081611a24565b9050919050565b7f596f752063616e2774206275726e2066726f6d207a65726f206164647265737360008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac3602183611262565b9150611ace82611a67565b604082019050919050565b60006020820190508181036000830152611af281611ab6565b9050919050565b7f4275726e20616d6f756e7420657863656564732062616c616e6365206174206160008201527f6464726573732e00000000000000000000000000000000000000000000000000602082015250565b6000611b55602783611262565b9150611b6082611af9565b604082019050919050565b60006020820190508181036000830152611b8481611b48565b905091905056fea2646970667358221220281931982b53791c73ef2ff47142f5e7556c9efaaee244552452e50ff5fad20c64736f6c634300080c00330000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000004658f26eeaa68a4f7d4657d0b1016633bb52b4020000000000000000000000000b8d9de4c6d22f2844534148c23a010a9303ae21
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000204fce5e3e250261100000000000000000000000000000004658f26eeaa68a4f7d4657d0b1016633bb52b4020000000000000000000000000b8d9de4c6d22f2844534148c23a010a9303ae21
-----Decoded View---------------
Arg [0] : totalSupplyValue (uint256): 10000000000000000000000000000
Arg [1] : DAIFITeamAddress (address): 0x4658f26eeaa68a4f7d4657d0b1016633bb52b402
Arg [2] : CharityDAIFIAddress (address): 0x0b8d9de4c6d22f2844534148c23a010a9303ae21
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000204fce5e3e25026110000000
Arg [1] : 0000000000000000000000004658f26eeaa68a4f7d4657d0b1016633bb52b402
Arg [2] : 0000000000000000000000000b8d9de4c6d22f2844534148c23a010a9303ae21
Deployed ByteCode Sourcemap
4639:4781:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5104:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7713:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4860:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8216:518;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4947:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4899:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8814:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5000:62;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6580:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4087:148;;;:::i;:::-;;6290:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6135:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3785:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6441:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5148:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6756:848;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7972:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4390:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5104:37;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7713:229::-;7783:4;7834:5;7800:10;:22;7811:10;7800:22;;;;;;;;;;;;;;;:31;7823:7;7800:31;;;;;;;;;;;;;;;:39;;;;7887:7;7866:36;;7875:10;7866:36;;;7896:5;7866:36;;;;;;:::i;:::-;;;;;;;;7930:4;7923:11;;7713:229;;;;:::o;4860:32::-;;;;:::o;8216:518::-;8300:4;8356:1;8325:10;:16;8336:4;8325:16;;;;;;;;;;;;;;;:28;8342:10;8325:28;;;;;;;;;;;;;;;;:32;8317:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:5;8411:10;:16;8422:4;8411:16;;;;;;;;;;;;;;;:28;8428:10;8411:28;;;;;;;;;;;;;;;;:37;;8403:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;8521:5;8503:8;:14;8512:4;8503:14;;;;;;;;;;;;;;;;:23;;8495:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8604:5;8588:8;:12;8597:2;8588:12;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;8638:5;8620:8;:14;8629:4;8620:14;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8684:2;8669:25;;8678:4;8669:25;;;8688:5;8669:25;;;;;;:::i;:::-;;;;;;;;8722:4;8715:11;;8216:518;;;;;:::o;4947:40::-;;;;;;;;;;;;;;;;;:::o;4899:35::-;;;;;;;;;;;;;:::o;8814:127::-;8859:4;8876:25;8882:10;8894:6;8876:5;:25::i;:::-;8929:4;8922:11;;8814:127;;;:::o;5000:62::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6580:114::-;6645:4;6669:8;:17;6678:7;6669:17;;;;;;;;;;;;;;;;6662:24;;6580:114;;;:::o;4087:148::-;4007:12;:10;:12::i;:::-;3997:22;;:6;;;;;;;;;;:22;;;3989:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4194:1:::1;4157:40;;4178:6;::::0;::::1;;;;;;;;4157:40;;;;;;;;;;;;4225:1;4208:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;4087:148::o:0;6290:88::-;6334:7;6361:9;;;;;;;;;;;6354:16;;6290:88;:::o;6135:90::-;6184:7;6211:6;;;;;;;;;;;6204:13;;6135:90;:::o;3785:79::-;3823:7;3850:6;;;;;;;;;;;3843:13;;3785:79;:::o;6441:89::-;6483:7;6510:12;;;;;;;;;;;6503:19;;6441:89;:::o;5148:39::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6756:848::-;6822:4;6855:1;6847:5;:9;6839:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;6944:5;6919:21;6929:10;6919:9;:21::i;:::-;:30;;6911:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;7085:11;7111:3;7107:1;7099:5;:9;;;;:::i;:::-;:15;;;;:::i;:::-;7085:29;;7125:12;7152:3;7148:1;7140:5;:9;;;;:::i;:::-;:15;;;;:::i;:::-;7125:30;;7166:25;7211:7;7202:6;7194:5;:14;;;;:::i;:::-;:24;;;;:::i;:::-;7166:52;;7298:20;7282:8;:12;7291:2;7282:12;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;7353:5;7329:8;:20;7338:10;7329:20;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;7405:2;7384:31;;7393:10;7384:31;;;7409:5;7384:31;;;;;;:::i;:::-;;;;;;;;7524:7;7515:6;:16;;;;:::i;:::-;7495:8;:16;7504:6;;;;;;;;;;;7495:16;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;7542:22;7548:6;;;;;;;;;;;7556:7;7542:5;:22::i;:::-;7592:4;7585:11;;;;;6756:848;;;;:::o;7972:127::-;8045:4;8068:10;:17;8079:5;8068:17;;;;;;;;;;;;;;;:26;8086:7;8068:26;;;;;;;;;;;;;;;;8061:33;;7972:127;;;;:::o;4390:244::-;4007:12;:10;:12::i;:::-;3997:22;;:6;;;;;;;;;;:22;;;3989:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;4499:1:::1;4479:22;;:8;:22;;;;4471:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4589:8;4560:38;;4581:6;::::0;::::1;;;;;;;;4560:38;;;;;;;;;;;;4618:8;4609:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;4390:244:::0;:::o;9039:372::-;9134:1;9115:21;;:7;:21;;;;9107:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;9214:6;9193:8;:17;9202:7;9193:17;;;;;;;;;;;;;;;;:27;;9185:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9302:6;9281:8;:17;9290:7;9281:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;9334:6;9319:11;;:21;;;;;;;:::i;:::-;;;;;;;;9392:1;9366:37;;9375:7;9366:37;;;9396:6;9366:37;;;;;;:::i;:::-;;;;;;;;9039:372;;:::o;117:99::-;170:7;198:10;191:17;;117:99;:::o;7::1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:329::-;4530:6;4579:2;4567:9;4558:7;4554:23;4550:32;4547:119;;;4585:79;;:::i;:::-;4547:119;4705:1;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4676:117;4471:329;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:329::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:474::-;5639:6;5647;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5949:2;5975:53;6020:7;6011:6;6000:9;5996:22;5975:53;:::i;:::-;5965:63;;5920:118;5571:474;;;;;:::o;6051:118::-;6138:24;6156:5;6138:24;:::i;:::-;6133:3;6126:37;6051:118;;:::o;6175:222::-;6268:4;6306:2;6295:9;6291:18;6283:26;;6319:71;6387:1;6376:9;6372:17;6363:6;6319:71;:::i;:::-;6175:222;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;7055:32;7051:1;7043:6;7039:14;7032:56;6915:180;:::o;7101:366::-;7243:3;7264:67;7328:2;7323:3;7264:67;:::i;:::-;7257:74;;7340:93;7429:3;7340:93;:::i;:::-;7458:2;7453:3;7449:12;7442:19;;7101:366;;;:::o;7473:419::-;7639:4;7677:2;7666:9;7662:18;7654:26;;7726:9;7720:4;7716:20;7712:1;7701:9;7697:17;7690:47;7754:131;7880:4;7754:131;:::i;:::-;7746:139;;7473:419;;;:::o;7898:181::-;8038:33;8034:1;8026:6;8022:14;8015:57;7898:181;:::o;8085:366::-;8227:3;8248:67;8312:2;8307:3;8248:67;:::i;:::-;8241:74;;8324:93;8413:3;8324:93;:::i;:::-;8442:2;8437:3;8433:12;8426:19;;8085:366;;;:::o;8457:419::-;8623:4;8661:2;8650:9;8646:18;8638:26;;8710:9;8704:4;8700:20;8696:1;8685:9;8681:17;8674:47;8738:131;8864:4;8738:131;:::i;:::-;8730:139;;8457:419;;;:::o;8882:223::-;9022:34;9018:1;9010:6;9006:14;8999:58;9091:6;9086:2;9078:6;9074:15;9067:31;8882:223;:::o;9111:366::-;9253:3;9274:67;9338:2;9333:3;9274:67;:::i;:::-;9267:74;;9350:93;9439:3;9350:93;:::i;:::-;9468:2;9463:3;9459:12;9452:19;;9111:366;;;:::o;9483:419::-;9649:4;9687:2;9676:9;9672:18;9664:26;;9736:9;9730:4;9726:20;9722:1;9711:9;9707:17;9700:47;9764:131;9890:4;9764:131;:::i;:::-;9756:139;;9483:419;;;:::o;9908:180::-;9956:77;9953:1;9946:88;10053:4;10050:1;10043:15;10077:4;10074:1;10067:15;10094:305;10134:3;10153:20;10171:1;10153:20;:::i;:::-;10148:25;;10187:20;10205:1;10187:20;:::i;:::-;10182:25;;10341:1;10273:66;10269:74;10266:1;10263:81;10260:107;;;10347:18;;:::i;:::-;10260:107;10391:1;10388;10384:9;10377:16;;10094:305;;;;:::o;10405:191::-;10445:4;10465:20;10483:1;10465:20;:::i;:::-;10460:25;;10499:20;10517:1;10499:20;:::i;:::-;10494:25;;10538:1;10535;10532:8;10529:34;;;10543:18;;:::i;:::-;10529:34;10588:1;10585;10581:9;10573:17;;10405:191;;;;:::o;10602:182::-;10742:34;10738:1;10730:6;10726:14;10719:58;10602:182;:::o;10790:366::-;10932:3;10953:67;11017:2;11012:3;10953:67;:::i;:::-;10946:74;;11029:93;11118:3;11029:93;:::i;:::-;11147:2;11142:3;11138:12;11131:19;;10790:366;;;:::o;11162:419::-;11328:4;11366:2;11355:9;11351:18;11343:26;;11415:9;11409:4;11405:20;11401:1;11390:9;11386:17;11379:47;11443:131;11569:4;11443:131;:::i;:::-;11435:139;;11162:419;;;:::o;11587:226::-;11727:34;11723:1;11715:6;11711:14;11704:58;11796:9;11791:2;11783:6;11779:15;11772:34;11587:226;:::o;11819:366::-;11961:3;11982:67;12046:2;12041:3;11982:67;:::i;:::-;11975:74;;12058:93;12147:3;12058:93;:::i;:::-;12176:2;12171:3;12167:12;12160:19;;11819:366;;;:::o;12191:419::-;12357:4;12395:2;12384:9;12380:18;12372:26;;12444:9;12438:4;12434:20;12430:1;12419:9;12415:17;12408:47;12472:131;12598:4;12472:131;:::i;:::-;12464:139;;12191:419;;;:::o;12616:348::-;12656:7;12679:20;12697:1;12679:20;:::i;:::-;12674:25;;12713:20;12731:1;12713:20;:::i;:::-;12708:25;;12901:1;12833:66;12829:74;12826:1;12823:81;12818:1;12811:9;12804:17;12800:105;12797:131;;;12908:18;;:::i;:::-;12797:131;12956:1;12953;12949:9;12938:20;;12616:348;;;;:::o;12970:180::-;13018:77;13015:1;13008:88;13115:4;13112:1;13105:15;13139:4;13136:1;13129:15;13156:185;13196:1;13213:20;13231:1;13213:20;:::i;:::-;13208:25;;13247:20;13265:1;13247:20;:::i;:::-;13242:25;;13286:1;13276:35;;13291:18;;:::i;:::-;13276:35;13333:1;13330;13326:9;13321:14;;13156:185;;;;:::o;13347:225::-;13487:34;13483:1;13475:6;13471:14;13464:58;13556:8;13551:2;13543:6;13539:15;13532:33;13347:225;:::o;13578:366::-;13720:3;13741:67;13805:2;13800:3;13741:67;:::i;:::-;13734:74;;13817:93;13906:3;13817:93;:::i;:::-;13935:2;13930:3;13926:12;13919:19;;13578:366;;;:::o;13950:419::-;14116:4;14154:2;14143:9;14139:18;14131:26;;14203:9;14197:4;14193:20;14189:1;14178:9;14174:17;14167:47;14231:131;14357:4;14231:131;:::i;:::-;14223:139;;13950:419;;;:::o;14375:220::-;14515:34;14511:1;14503:6;14499:14;14492:58;14584:3;14579:2;14571:6;14567:15;14560:28;14375:220;:::o;14601:366::-;14743:3;14764:67;14828:2;14823:3;14764:67;:::i;:::-;14757:74;;14840:93;14929:3;14840:93;:::i;:::-;14958:2;14953:3;14949:12;14942:19;;14601:366;;;:::o;14973:419::-;15139:4;15177:2;15166:9;15162:18;15154:26;;15226:9;15220:4;15216:20;15212:1;15201:9;15197:17;15190:47;15254:131;15380:4;15254:131;:::i;:::-;15246:139;;14973:419;;;:::o;15398:226::-;15538:34;15534:1;15526:6;15522:14;15515:58;15607:9;15602:2;15594:6;15590:15;15583:34;15398:226;:::o;15630:366::-;15772:3;15793:67;15857:2;15852:3;15793:67;:::i;:::-;15786:74;;15869:93;15958:3;15869:93;:::i;:::-;15987:2;15982:3;15978:12;15971:19;;15630:366;;;:::o;16002:419::-;16168:4;16206:2;16195:9;16191:18;16183:26;;16255:9;16249:4;16245:20;16241:1;16230:9;16226:17;16219:47;16283:131;16409:4;16283:131;:::i;:::-;16275:139;;16002:419;;;:::o
Swarm Source
ipfs://281931982b53791c73ef2ff47142f5e7556c9efaaee244552452e50ff5fad20c